/* ============================
   TWO PENCILS — DESIGN STUDIO
   Inspired by Basecamp Agency + Awwwards study
   ============================ */

:root {
  --dark: #2a2a2a;
  --darker: #1a1a1a;
  --darkest: #111111;
  --cream: #f5f0eb;
  --warm-white: #faf7f2;
  --coral: #e07a5f;
  --coral-light: #f2a88c;
  --mint: #a8d5ba;
  --text: #2a2a2a;
  --text-light: #6b6b6b;
  --text-on-dark: #f5f0eb;
  --text-muted-dark: #999;

  --font-display: 'Syne', sans-serif;
  --font-body: 'Space Grotesk', sans-serif;
  --font-accent: 'Caveat', cursive;

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

/* ---- Reset ---- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
  cursor: default;
}
/* Subtle noise texture overlay */
body::after {
  content: '';
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 9998;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}
a { text-decoration: none; color: inherit; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }
img { max-width: 100%; display: block; }

.container { max-width: 1400px; margin: 0 auto; padding: 0 clamp(20px, 5vw, 80px); }

/* ============================
   CUSTOM CURSOR
   ============================ */
.cursor {
  display: none;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 10000;
  mix-blend-mode: difference;
}
@media (hover: hover) and (pointer: fine) {
  .cursor { display: block; }
  body { cursor: none; }
  a, button, [data-cursor] { cursor: none; }
}
.cursor-dot {
  width: 8px; height: 8px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  top: -4px; left: -4px;
  transition: transform 0.15s var(--ease-out);
}
.cursor-ring {
  width: 40px; height: 40px;
  border: 1.5px solid rgba(255,255,255,0.5);
  border-radius: 50%;
  position: absolute;
  top: -20px; left: -20px;
  transition: transform 0.3s var(--ease-out), opacity 0.3s;
}
.cursor.hovering .cursor-dot { transform: scale(2.5); }
.cursor.hovering .cursor-ring { transform: scale(1.8); opacity: 0.3; }

/* ============================
   PRELOADER
   ============================ */
.preloader {
  position: fixed; inset: 0;
  background: var(--darkest);
  z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.6s var(--ease-out), visibility 0.6s;
}
.preloader.done {
  opacity: 0; visibility: hidden;
  pointer-events: none;
}
.preloader-inner { text-align: center; }
.preloader-icon {
  color: var(--coral);
  margin-bottom: 20px;
  animation: pencilDraw 1.5s ease-in-out infinite;
}
@keyframes pencilDraw {
  0%, 100% { transform: translateY(0) rotate(0); }
  50% { transform: translateY(-8px) rotate(3deg); }
}
.preloader-text { color: var(--text-on-dark); }
.preloader-counter {
  font-family: var(--font-display);
  font-size: clamp(24px, 4vw, 40px);
  font-weight: 700;
}

/* ============================
   NAVIGATION
   ============================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 24px clamp(20px, 5vw, 60px);
  transition: background 0.4s, backdrop-filter 0.4s;
}
.nav.scrolled {
  background: rgba(245, 240, 235, 0.85);
  backdrop-filter: blur(20px);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  display: flex; align-items: center;
}
.nav-logo-img {
  height: 24px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: filter 0.4s;
}
.nav.scrolled .nav-logo-img {
  filter: none;
}

.nav-right { display: flex; align-items: center; gap: 24px; }
.nav-cta {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--text-on-dark);
  padding: 10px 24px;
  border: 1.5px solid rgba(255,255,255,0.3);
  border-radius: 100px;
  transition: all 0.4s var(--ease-out);
}
.nav.scrolled .nav-cta {
  color: var(--text);
  border-color: rgba(0,0,0,0.2);
}
.nav-cta:hover {
  background: var(--coral);
  border-color: var(--coral);
  color: #fff;
}

.nav-menu-btn {
  width: 40px; height: 40px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 6px;
}
.menu-line {
  width: 28px; height: 2px;
  background: var(--text-on-dark);
  transition: all 0.4s var(--ease-out);
  display: block;
}
.nav.scrolled .menu-line { background: var(--text); }
.nav-menu-btn.active .menu-line:first-child { transform: rotate(45deg) translate(3px, 3px); }
.nav-menu-btn.active .menu-line:last-child { transform: rotate(-45deg) translate(3px, -3px); }

/* ---- Menu Overlay ---- */
.menu-overlay {
  position: fixed; inset: 0;
  background: var(--darkest);
  z-index: 99;
  display: flex; align-items: center;
  opacity: 0; visibility: hidden;
  transition: opacity 0.5s var(--ease-out), visibility 0.5s;
}
.menu-overlay.active { opacity: 1; visibility: visible; }
.menu-overlay-inner {
  width: 100%; padding: 120px clamp(20px, 5vw, 80px) 60px;
  display: flex; flex-direction: column; justify-content: space-between;
  min-height: 100vh;
}
.menu-link {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(48px, 10vw, 100px);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--text-on-dark);
  line-height: 1.1;
  transition: color 0.3s;
  overflow: hidden;
  padding: 0.12em 0;
  margin: -0.12em 0;
}
.menu-link span {
  display: inline-block;
  transform: translateY(110%);
  transition: transform 0.5s var(--ease-out);
}
.menu-overlay.active .menu-link span { transform: translateY(0); }
.menu-overlay.active .menu-link:nth-child(2) span { transition-delay: 0.05s; }
.menu-overlay.active .menu-link:nth-child(3) span { transition-delay: 0.1s; }
.menu-overlay.active .menu-link:nth-child(4) span { transition-delay: 0.15s; }
.menu-link:hover { color: var(--coral); }

.menu-footer {
  display: flex; justify-content: space-between; align-items: flex-end;
  color: var(--text-muted-dark);
  font-size: 14px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.menu-footer a { transition: color 0.3s; }
.menu-footer a:hover { color: var(--coral); }
.menu-socials { display: flex; gap: 24px; }

/* ============================
   HERO
   ============================ */
.hero {
  min-height: 100vh;
  background: var(--darkest);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
}
.hero-bg-grain {
  position: absolute; inset: 0;
  opacity: 1;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.25'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}
.hero-bg-dots {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.12) 1px, transparent 1px);
  background-size: 28px 28px;
}
.hero-bg-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 80vw; height: 60vh;
  background: radial-gradient(ellipse, rgba(224,122,95,0.12) 0%, transparent 70%);
  animation: glowBreathe 6s ease-in-out infinite;
  pointer-events: none;
}
@keyframes glowBreathe {
  0%, 100% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 0.6; transform: translate(-50%, -50%) scale(1.08); }
}


.hero-coordinates {
  position: absolute; inset: 0;
  pointer-events: none;
  z-index: 2;
}
.coord-lines {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  opacity: 0;
}
.coord {
  position: absolute;
  display: flex; align-items: center; gap: 8px;
  opacity: 0;
}
.coord-dot {
  width: 8px; height: 8px;
  background: rgba(224,122,95,0.5);
  border-radius: 50%;
  position: relative;
}
.coord-dot::after {
  content: '';
  position: absolute; inset: -4px;
  border: 1px solid rgba(224,122,95,0.2);
  border-radius: 50%;
  animation: coordPulse 3s ease-in-out infinite;
}
@keyframes coordPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.6); opacity: 0; }
}
.coord-text {
  font-size: 11px;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.08em;
  line-height: 1.4;
  text-transform: uppercase;
  font-weight: 500;
}
.coord-1 { top: 18%; left: 12%; }
.coord-2 { top: 14%; right: 15%; }
.coord-3 { bottom: 22%; right: 10%; }

.hero-content {
  text-align: center;
  position: relative;
  z-index: 3;
}
.hero-icon {
  color: var(--coral);
  margin-bottom: 24px;
  opacity: 0;
  text-align: center;
}
.hero-icon img {
  display: inline-block;
}
.hero-title {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--text-on-dark);
}
.hero-title-line {
  display: block;
  font-size: clamp(64px, 14vw, 200px);
  overflow: hidden;
  padding: 0.15em 0;
  margin: -0.15em 0;
}
.hero-title-line .line-inner {
  display: block;
  transform: translateY(110%);
}
.hero-title-line.accent {
  font-size: clamp(40px, 8vw, 120px);
  color: var(--coral);
  font-family: var(--font-accent);
  text-transform: none;
  font-weight: 700;
  letter-spacing: 0;
  margin-top: 8px;
}

.hero-descriptor {
  font-family: var(--font-body);
  font-size: clamp(12px, 1.2vw, 16px);
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-top: 20px;
  opacity: 0;
}

.hero-scroll-indicator {
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
}
.scroll-text {
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  font-weight: 500;
}
.scroll-line {
  display: block;
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.3), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0% { transform: scaleY(0); transform-origin: top; opacity: 1; }
  50% { transform: scaleY(1); transform-origin: top; opacity: 1; }
  50.1% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 1; }
}

/* ============================
   TAGLINE
   ============================ */
.tagline {
  padding: clamp(80px, 15vw, 200px) 0;
  background: var(--cream);
  overflow: hidden;
}
.tagline-words {
  display: flex;
  flex-wrap: wrap;
  gap: 0 clamp(16px, 3vw, 40px);
  justify-content: flex-start;
  padding: 0 clamp(20px, 5vw, 80px);
}
.tagline-word {
  font-family: var(--font-display);
  font-size: clamp(42px, 9vw, 130px);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--text);
  opacity: 0;
  transform: translateY(40px);
}
.tagline-word.indent {
  margin-left: clamp(40px, 10vw, 200px);
}
.tagline-word.accent {
  font-family: var(--font-accent);
  text-transform: none;
  letter-spacing: 0;
  color: var(--coral);
}

/* ============================
   WORK / PORTFOLIO
   ============================ */
.work {
  position: relative;
  padding: clamp(60px, 10vw, 140px) 0 clamp(80px, 12vw, 160px);
  background: var(--coral);
  overflow: hidden;
}
.section-diagonal {
  position: absolute;
  top: -1px;
  left: 0; right: 0;
  height: clamp(60px, 8vw, 120px);
  background: var(--cream);
  clip-path: polygon(0 0, 100% 0, 100% 30%, 0 100%);
}

.work-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 0 clamp(20px, 5vw, 80px);
  margin-bottom: clamp(40px, 6vw, 80px);
}
.work-label {
  display: block;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.6);
  margin-bottom: 12px;
}
.work-title-repeat {
  display: flex; gap: clamp(12px, 2vw, 24px);
}
.work-title-repeat span {
  font-family: var(--font-display);
  font-size: clamp(36px, 7vw, 100px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: #fff;
  opacity: 0.15;
}
.work-title-repeat span:first-child { opacity: 1; }
.work-title-repeat span:nth-child(2) { opacity: 0.5; }

.work-view-all {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #fff;
  padding-bottom: 4px;
  border-bottom: 1.5px solid rgba(255,255,255,0.4);
  transition: border-color 0.3s;
  white-space: nowrap;
}
.work-view-all:hover { border-color: #fff; }
.work-view-all svg { transition: transform 0.3s var(--ease-out); }
.work-view-all:hover svg { transform: translateX(4px); }

.work-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(16px, 2vw, 24px);
  padding: 0 clamp(20px, 5vw, 80px);
}

.work-item {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  background: var(--darkest);
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out);
}
.work-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px -12px rgba(0,0,0,0.35);
}
.work-item::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  border: 1px solid transparent;
  background: linear-gradient(135deg, rgba(224,122,95,0.3), transparent 50%) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.5s;
  z-index: 2;
  pointer-events: none;
}
.work-item:hover::before { opacity: 1; }

.work-item-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--darker);
}
.work-item-large .work-item-img { aspect-ratio: 16/10; }
.work-item-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}
.work-item:hover .work-item-img img { transform: scale(1.05); }

.work-item-info { padding: clamp(16px, 2vw, 28px); }
.work-item-tag {
  display: inline-block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--coral);
  font-weight: 600;
  margin-bottom: 8px;
}
.work-item-title {
  font-family: var(--font-display);
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}
.work-item-desc {
  font-size: clamp(13px, 1.2vw, 15px);
  color: var(--text-muted-dark);
  line-height: 1.5;
}

/* ============================
   EXPLORE / SERVICES
   ============================ */
.explore {
  background: var(--cream);
  padding: clamp(80px, 12vw, 180px) 0;
}
.explore-header {
  padding: 0 clamp(20px, 5vw, 80px);
  margin-bottom: clamp(60px, 8vw, 100px);
}
.explore-title {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: -0.03em;
}
.explore-title-line {
  display: block;
  font-size: clamp(48px, 10vw, 140px);
  overflow: hidden;
  padding: 0.15em 0;
  margin: -0.15em 0;
}
.explore-title-line.indent { padding-left: clamp(60px, 12vw, 240px); }

.services-list {
  padding: 0 clamp(20px, 5vw, 80px);
  overflow: visible;
}
.service-item {
  display: grid;
  grid-template-columns: 60px 1fr 160px;
  gap: clamp(16px, 3vw, 40px);
  align-items: center;
  padding: clamp(24px, 3vw, 40px) 0;
  border-top: 1px solid rgba(0,0,0,0.1);
  transition: all 0.4s var(--ease-out);
  overflow: visible;
}
.service-item:last-child { border-bottom: 1px solid rgba(0,0,0,0.1); }
.service-item:hover {
  padding-left: 20px;
  border-top-color: var(--coral);
}

.service-number {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--coral);
}
.service-name {
  font-family: var(--font-display);
  font-size: clamp(24px, 3.5vw, 48px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  transition: color 0.3s;
}
.service-item:hover .service-name { color: var(--coral); }
.service-desc {
  font-size: clamp(14px, 1.2vw, 16px);
  color: var(--text-light);
  line-height: 1.6;
  max-width: 600px;
}

.service-visual {
  width: 140px; height: 140px;
  opacity: 0;
  transform: scale(0.6) rotate(-8deg);
  transition: all 0.5s var(--ease-out);
  justify-self: end;
}
.service-visual svg {
  width: 100%; height: 100%;
  filter: drop-shadow(0 4px 16px rgba(224, 122, 95, 0.15));
}
.service-item:hover .service-visual { opacity: 1; transform: scale(1) rotate(0deg); }

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 12px;
}
.service-tag {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  color: var(--text-light);
  background: rgba(0,0,0,0.04);
  padding: 4px 10px;
  border-radius: 20px;
  letter-spacing: 0.01em;
  transition: all 0.3s ease;
}
.service-item:hover .service-tag {
  background: rgba(224,122,95,0.1);
  color: var(--coral);
}

/* ============================
   ABOUT
   ============================ */
.about {
  background: var(--darkest);
  color: var(--text-on-dark);
  padding: clamp(80px, 12vw, 160px) clamp(20px, 5vw, 80px);
  position: relative;
  overflow: hidden;
}
.about-bg {
  position: absolute; inset: 0;
  opacity: 0.04;
}
.about-bg-pattern {
  position: absolute; inset: 0;
  background-image:
    url("data:image/svg+xml,%3Csvg width='200' height='200' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M 0 50 Q 50 0, 100 50 T 200 50' fill='none' stroke='rgba(255,255,255,0.06)' stroke-width='1'/%3E%3Cpath d='M 0 100 Q 50 50, 100 100 T 200 100' fill='none' stroke='rgba(255,255,255,0.06)' stroke-width='1'/%3E%3Cpath d='M 0 150 Q 50 100, 100 150 T 200 150' fill='none' stroke='rgba(255,255,255,0.06)' stroke-width='1'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
}
.about-emblem {
  display: flex;
  justify-content: center;
  margin-bottom: clamp(30px, 4vw, 50px);
}
.about-emblem-wrap {
  position: relative;
  width: clamp(220px, 30vw, 320px);
  aspect-ratio: 1;
}
.about-emblem-ring,
.about-emblem-pencils {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.about-emblem-ring {
  animation: emblem-spin 40s linear infinite;
}
.about-emblem-pencils {
  filter: drop-shadow(0 0 12px rgba(224,122,95,0.25));
}
@keyframes emblem-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.about-emblem-wrap:hover .about-emblem-ring {
  animation-play-state: paused;
}
.about-founders {
  text-align: center;
  margin-bottom: clamp(30px, 4vw, 50px);
}
.about-founders-label {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-muted-dark);
  margin-bottom: 8px;
}
.about-founders-names {
  font-family: var(--font-accent);
  font-size: clamp(28px, 4vw, 44px);
  color: var(--coral);
}
.handwritten {
  font-family: var(--font-accent);
  font-size: clamp(36px, 5vw, 56px);
  color: rgba(255,255,255,0.9);
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.stat { text-align: center; }
.stat-number {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 800;
  color: var(--coral);
  display: inline;
}
.stat-plus {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 800;
  color: var(--coral);
}
.stat-label {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted-dark);
  margin-top: 4px;
  line-height: 1.4;
}

.about-label {
  display: inline-block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--coral);
  font-weight: 600;
  margin-bottom: 20px;
}
.about-title {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}
.about-title span {
  display: block;
  font-size: clamp(36px, 5vw, 72px);
}
.about-subtitle {
  font-size: clamp(20px, 2.5vw, 28px);
  color: var(--text-muted-dark);
  margin-bottom: 32px;
}
.about-text {
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.7;
  color: rgba(255,255,255,0.7);
  margin-bottom: 20px;
  max-width: 520px;
}

.about-tools {
  display: flex; flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}
.tool-tag {
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 8px 16px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 100px;
  color: var(--text-muted-dark);
  transition: all 0.3s;
}
.tool-tag:hover {
  border-color: var(--coral);
  color: var(--coral);
}

/* ============================
   CLIENTS
   ============================ */
.clients {
  padding: clamp(60px, 8vw, 100px) 0;
  background: #ffffff;
  overflow: hidden;
}
.clients-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
}
.clients-label {
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #333;
  text-align: center;
  margin-bottom: clamp(24px, 3vw, 40px);
  font-family: var(--font-body);
}
.clients-marquee {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}
.clients-track {
  display: flex;
  align-items: center;
  gap: clamp(48px, 6vw, 80px);
  animation: clientScroll 40s linear infinite;
  width: max-content;
}
.client-logo {
  height: clamp(60px, 9vw, 100px);
  width: auto;
  max-width: 240px;
  object-fit: contain;
  opacity: 0.6;
  transition: opacity 0.4s ease;
  flex-shrink: 0;
}
.client-logo:hover {
  opacity: 1;
}
@keyframes clientScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================
   SKILLS TICKER
   ============================ */
.skills-ticker {
  background: var(--coral);
  padding: clamp(20px, 3vw, 32px) 0;
  overflow: hidden;
  position: relative;
}
.ticker-track {
  display: flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
  animation: tickerScroll 25s linear infinite;
  width: max-content;
  will-change: transform;
  backface-visibility: hidden;
}
@keyframes tickerScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.ticker-item {
  font-family: var(--font-display);
  font-size: clamp(24px, 4vw, 48px);
  font-weight: 800;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: -0.02em;
  padding: 0 clamp(12px, 2vw, 24px);
}
.ticker-divider {
  font-family: var(--font-display);
  font-size: clamp(18px, 3vw, 36px);
  font-weight: 300;
  color: rgba(255,255,255,0.4);
  padding: 0 clamp(4px, 0.5vw, 8px);
}

/* ============================
   FAQ
   ============================ */
.faq {
  background: var(--darkest);
  color: var(--text-on-dark);
  padding: clamp(80px, 12vw, 160px) clamp(20px, 5vw, 80px);
  position: relative;
}
.faq-inner {
  max-width: 900px;
  margin: 0 auto;
}
.faq-header {
  margin-bottom: clamp(40px, 6vw, 80px);
}
.faq-label {
  display: inline-block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--coral);
  font-weight: 600;
  margin-bottom: 20px;
}
.faq-title {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: -0.03em;
}
.faq-title span {
  display: block;
  font-size: clamp(36px, 6vw, 72px);
}
.faq-list {
  display: flex;
  flex-direction: column;
}
.faq-item {
  border-top: 1px solid rgba(255,255,255,0.08);
}
.faq-item:last-child {
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.faq-question {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 24px);
  padding: clamp(20px, 3vw, 28px) 0;
  cursor: pointer;
  list-style: none;
  user-select: none;
  transition: color 0.3s;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question::marker { display: none; content: ''; }
.faq-question:hover { color: var(--coral); }
.faq-num {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--coral);
  opacity: 0.5;
  min-width: 28px;
}
.faq-q-text {
  flex: 1;
  font-family: var(--font-body);
  font-size: clamp(16px, 1.5vw, 20px);
  font-weight: 500;
  line-height: 1.4;
}
.faq-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--text-muted-dark);
  transition: transform 0.3s, color 0.3s;
}
.faq-icon .faq-icon-v {
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}
.faq-item[open] .faq-icon .faq-icon-v {
  opacity: 0;
  transform: rotate(90deg);
}
.faq-item[open] .faq-icon {
  color: var(--coral);
}
.faq-answer {
  padding: 0 0 clamp(20px, 3vw, 32px) calc(28px + clamp(16px, 2vw, 24px));
  animation: faqFadeIn 0.3s ease;
}
@keyframes faqFadeIn {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}
.faq-answer p {
  font-size: clamp(14px, 1.1vw, 16px);
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
  margin-bottom: 12px;
}
.faq-answer p:last-child { margin-bottom: 0; }
.faq-answer ul {
  list-style: none;
  padding: 0;
  margin: 8px 0;
}
.faq-answer ul li {
  font-size: clamp(14px, 1.1vw, 16px);
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
  padding-left: 20px;
  position: relative;
  margin-bottom: 6px;
}
.faq-answer ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--coral);
  opacity: 0.5;
}

/* ============================
   TESTIMONIALS MARQUEE
   ============================ */
.testimonials {
  background: var(--cream);
  padding: clamp(60px, 8vw, 100px) 0;
  overflow: hidden;
}
.testimonials-marquee { overflow: hidden; }
.marquee-track {
  display: flex;
  gap: clamp(24px, 4vw, 60px);
  animation: marqueeScroll 40s linear infinite;
  width: max-content;
}
@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.marquee-item {
  flex-shrink: 0;
  min-width: clamp(300px, 30vw, 450px);
  padding: clamp(24px, 3vw, 40px);
  background: #fff;
  border-radius: 16px;
  position: relative;
  border: 1px solid rgba(0,0,0,0.04);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s;
}
.marquee-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}
.quote-mark {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 800;
  color: var(--coral);
  line-height: 1;
  display: block;
  margin-bottom: 12px;
}
.marquee-item p {
  font-size: clamp(15px, 1.3vw, 18px);
  line-height: 1.6;
  color: var(--text);
  margin-bottom: 16px;
}
.quote-author {
  font-size: 13px;
  color: var(--text-light);
  font-weight: 500;
}

/* ============================
   CTA
   ============================ */
.cta {
  background: var(--darkest);
  padding: clamp(100px, 15vw, 220px) clamp(20px, 5vw, 80px);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-bg-img {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(224,122,95,0.15) 0%, rgba(168,213,186,0.08) 50%, rgba(224,122,95,0.1) 100%);
  background-size: 200% 200%;
  animation: gradientShift 8s ease infinite;
}
@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.cta-content { position: relative; z-index: 2; }
.cta-label {
  display: block;
  font-size: clamp(20px, 2.5vw, 32px);
  color: var(--coral-light);
  margin-bottom: 24px;
}
.cta-title {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--text-on-dark);
  margin-bottom: clamp(40px, 5vw, 60px);
}
.cta-title-line {
  display: block;
  font-size: clamp(48px, 10vw, 160px);
}
.cta-title-line.indent { padding-left: clamp(40px, 10vw, 200px); }

.cta-button {
  display: inline-flex;
  align-items: center; gap: 16px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(16px, 1.5vw, 20px);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--darkest);
  background: var(--coral);
  padding: clamp(16px, 2vw, 24px) clamp(32px, 4vw, 56px);
  border-radius: 100px;
  transition: all 0.4s var(--ease-out);
}
.cta-button:hover {
  background: var(--coral-light);
  transform: scale(1.05);
  box-shadow: 0 0 40px rgba(224, 122, 95, 0.4), 0 0 80px rgba(224, 122, 95, 0.15);
}
.cta-button-icon {
  display: flex;
  transition: transform 0.3s var(--ease-out);
}
.cta-button:hover .cta-button-icon { transform: translateX(4px); }

/* ============================
   FOOTER
   ============================ */
.footer {
  background: var(--darker);
  color: var(--text-on-dark);
  padding: clamp(60px, 8vw, 100px) clamp(20px, 5vw, 80px) clamp(30px, 4vw, 40px);
}
.footer-inner { max-width: 1400px; margin: 0 auto; }
.footer-top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(40px, 6vw, 100px);
  padding-bottom: clamp(40px, 6vw, 80px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo {
  color: var(--coral);
  margin-bottom: 16px;
}
.footer-studio-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(18px, 2vw, 22px);
  display: block;
  margin-bottom: 8px;
  line-height: 1.3;
}
.footer-tagline {
  font-family: var(--font-accent);
  font-size: 18px;
  color: var(--text-muted-dark);
}
.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.footer-col h4 {
  font-family: var(--font-display);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted-dark);
  margin-bottom: 20px;
  font-weight: 600;
}
.footer-col a {
  display: block;
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 12px;
  transition: color 0.3s;
}
.footer-col a:hover { color: var(--coral); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: clamp(24px, 3vw, 40px);
  font-size: 13px;
  color: var(--text-muted-dark);
}
.footer-email { transition: color 0.3s; }
.footer-email:hover { color: var(--coral); }

/* ============================
   RESPONSIVE
   ============================ */
@media (max-width: 1024px) {
  .work-grid { grid-template-columns: 1fr; }
  .about-inner { grid-template-columns: 1fr; gap: 60px; }
  .about-emblem-wrap { width: 200px; }
  .service-item { grid-template-columns: 40px 1fr; }
  .service-visual { display: none; }
  .footer-top { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-cta { display: none; }
  .hero-bg-glow { width: 100vw; height: 50vh; }
  .coord-lines { display: none; }
  .work-header { flex-direction: column; align-items: flex-start; gap: 20px; }
  .work-title-repeat span { font-size: clamp(30px, 8vw, 60px); }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .menu-footer { flex-direction: column; gap: 20px; align-items: flex-start; }
}

@media (max-width: 480px) {
  .hero-title-line { font-size: clamp(48px, 12vw, 80px); }
  .explore-title-line { font-size: clamp(36px, 9vw, 60px); }
  .explore-title-line.indent { padding-left: clamp(30px, 8vw, 60px); }
  .cta-title-line { font-size: clamp(36px, 9vw, 60px); }
  .cta-title-line.indent { padding-left: clamp(20px, 6vw, 60px); }
  .about-stats { grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .footer-links { grid-template-columns: 1fr 1fr; }
}
