/* ============================================================
   INTERMULTI KREASI 2.0 · EDITORIAL ATELIER
   ============================================================ */

/* ── Custom Properties ─────────────────────────────────────── */
:root {
  /* Palette */
  --cream:      #F0EBE0;
  --cream-dark: #E5DFD3;
  --ink:        #1C1611;
  --ink-mid:    #3D342A;
  --sienna:     #8B5E2C;
  --sienna-dk:  #6E4A20;
  --blue:       #2557A7;
  --blue-dk:    #1A4080;
  --blue-light: #D6E4F7;
  --tan:        #C4B49A;
  --tan-light:  #D8CCBA;
  --grey:       #6B635A;
  --white:      #FAFAF7;

  /* Typography */
  --font-display: 'Fraunces', Georgia, serif;
  --font-body:    'Inter', system-ui, -apple-system, sans-serif;
  --font-mono:    'JetBrains Mono', 'Courier New', monospace;

  /* Layout */
  --nav-h:        72px;
  --pad-section:  clamp(80px, 10vw, 140px);
  --container:    1280px;
  --pad-x:        clamp(24px, 5vw, 80px);

  /* Motion */
  --ease: 0.3s ease;
}

/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; overflow-x: clip; }
body  {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  touch-action: manipulation;
}
img, video { max-width: 100%; height: auto; display: block; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }
address { font-style: normal; }
button  { font-family: inherit; cursor: pointer; background: none; border: none; padding: 0; }
input, select, textarea, button { font-family: inherit; }

/* ── Utilities ──────────────────────────────────────────────── */
.section-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

.section-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--blue);
  display: block;
  margin-bottom: 16px;
}

.section-header { margin-bottom: 56px; }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 400;
  line-height: 1.1;
}

.section-cta-row { text-align: center; margin-top: 48px; }

/* ── Image Placeholders ─────────────────────────────────────── */
/*  Replace the div with an <img> tag when real photos are ready  */
.img-placeholder {
  position: relative;
  width: 100%;
  background: var(--tan-light);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.img-placeholder--dark { background: var(--ink); }

.img-placeholder span {
  position: absolute;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.8;
  padding: 10px 14px;
  border: 1px solid currentColor;
  color: var(--ink);
  opacity: 0.35;
  pointer-events: none;
}
.img-placeholder--dark span { color: var(--cream); opacity: 0.25; }

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 15px 30px;
  transition: background var(--ease), color var(--ease), border-color var(--ease);
  white-space: nowrap;
  cursor: pointer;
}
.btn-primary {
  background: var(--ink);
  color: var(--white);
  border: 1px solid var(--ink);
}
.btn-primary:hover { background: var(--sienna); border-color: var(--sienna); }

.btn-secondary {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}
.btn-secondary:hover { background: var(--ink); color: var(--white); }

.btn-text {
  padding: 0;
  background: none;
  border: none;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
}
.btn-text:hover { color: var(--ink); }

/* ── Nav ────────────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: transparent;
}
.site-header.scrolled {
  background: transparent;
}
/* Light nav: for dark-background sections */
.site-header.nav-light .logo { color: var(--cream); }
.site-header.nav-light .nav-toggle span { background: var(--cream); }
.site-header.nav-light .nav-links a { color: var(--cream); }
.site-header.nav-light .lang-btn { color: var(--cream); }

/* Company Profile download badge */
.nav-profile-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  border: 1px solid var(--blue);
  padding: 7px 13px;
  white-space: nowrap;
  transition: background var(--ease), color var(--ease);
}
.nav-profile-btn:hover {
  background: var(--blue);
  color: var(--white);
}
.nav-profile-btn svg { flex-shrink: 0; }

.nav-profile-btn { display: none; }
.nav-right .lang-switch { display: none; }

.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  line-height: 0;
}
.logo-img {
  height: 44px;
  width: auto;
  display: block;
  transition: opacity var(--ease);
}
.logo:hover .logo-img { opacity: 0.82; }
.site-header.nav-light .logo-img { filter: brightness(0) invert(1); }

.nav-links {
  display: none;
}
.nav-links a {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  opacity: 0.6;
  transition: opacity var(--ease);
}
.nav-links a:hover { opacity: 1; }

.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--grey);
}
.lang-btn {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--grey);
  transition: color var(--ease);
}
.lang-btn.active { color: var(--ink); font-weight: 500; }
.lang-btn:hover  { color: var(--ink); }

/* Hamburger */
.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--ink);
  transition: var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none;
  background: var(--white);
  border-top: 1px solid var(--tan-light);
  padding: 28px var(--pad-x) 32px;
}
.mobile-menu.open { display: block; }
.mobile-menu ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 24px;
}
.mobile-menu a {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.mobile-lang {
  display: flex;
  gap: 10px;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--grey);
}

.mobile-cp-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  border: 1px solid var(--blue);
  padding: 9px 16px;
  margin-bottom: 16px;
  transition: background var(--ease), color var(--ease);
}
.mobile-cp-btn:hover { background: var(--blue); color: var(--white); }

/* ── Hero ───────────────────────────────────────────────────── */
.hero {
  display: grid;
  grid-template-columns: 1fr;
  padding: clamp(80px, 12vw, 140px) 0 clamp(60px, 8vw, 100px);
  position: relative;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 var(--pad-x);
  max-width: 860px;
}

.hero-caption {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 28px;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(52px, 6.5vw, 92px);
  font-weight: 400;
  line-height: 1.0;
  color: var(--ink);
  margin-bottom: 28px;
}
.hero-headline em {
  font-style: italic;
  font-weight: 300;
}

.hero-sub {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-mid);
  border-top: 1px solid var(--tan);
  padding-top: 24px;
  margin-bottom: 40px;
  max-width: 500px;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hero-profile-dl { margin-top: 18px; }

/* ── Evolution / AI strip ───────────────────────────────────── */
.evolution-strip {
  padding: var(--pad-section) 0;
  background: var(--cream);
  border-top: 1px solid var(--cream-dark);
  border-bottom: 1px solid var(--cream-dark);
}
.evolution-inner { max-width: 760px; }
.evolution-heading {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 400;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 24px;
}
.evolution-body {
  font-size: 16px;
  line-height: 1.8;
  color: var(--ink-mid);
}

/* Timeline */
.evolution-timeline { margin: 48px 0 40px; }

.evo-years,
.evo-labels,
.evo-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.evo-years span {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--grey);
  text-align: center;
  display: block;
  padding: 0 4px;
  margin-bottom: 10px;
}
.evo-years .evo-now { color: var(--sienna); }

.evo-track {
  align-items: center;
  position: relative;
  margin-bottom: 10px;
}
.evo-track::before {
  content: '';
  position: absolute;
  left: 12.5%;
  right: 12.5%;
  top: 50%;
  height: 1px;
  background: linear-gradient(to right, var(--tan-light), var(--sienna));
  transform-origin: left center;
  transform: translateY(-50%) scaleX(0);
  transition: transform 1.2s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
}
.evolution-timeline.tl-visible .evo-track::before {
  transform: translateY(-50%) scaleX(1);
}
.evo-dot {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 24px;
  position: relative;
  z-index: 1;
}
.evo-dot::after {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--tan);
  display: block;
  transform: scale(0);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.evolution-timeline.tl-visible .evo-dot:nth-child(1)::after { transform: scale(1); transition-delay: 0.5s; }
.evolution-timeline.tl-visible .evo-dot:nth-child(2)::after { transform: scale(1); transition-delay: 0.8s; }
.evolution-timeline.tl-visible .evo-dot:nth-child(3)::after { transform: scale(1); transition-delay: 1.1s; }
.evolution-timeline.tl-visible .evo-dot:nth-child(4)::after { transform: scale(1); transition-delay: 1.4s; }
.evo-dot--now::after {
  width: 14px;
  height: 14px;
  background: var(--sienna);
  box-shadow: 0 0 0 4px rgba(139, 94, 44, 0.13);
}
@keyframes evo-pulse {
  0%   { box-shadow: 0 0 0 4px rgba(139,94,44,0.13), 0 0 0 0px rgba(139,94,44,0.5); }
  70%  { box-shadow: 0 0 0 4px rgba(139,94,44,0.13), 0 0 0 14px rgba(139,94,44,0); }
  100% { box-shadow: 0 0 0 4px rgba(139,94,44,0.13), 0 0 0 0px rgba(139,94,44,0); }
}
.evolution-timeline.tl-visible .evo-dot--now::after {
  animation: evo-pulse 2.5s ease-out 1.8s infinite;
}

.evo-labels span {
  font-size: 13px;
  line-height: 1.55;
  color: var(--grey);
  text-align: center;
  padding: 0 4px;
  display: block;
}
.evo-labels .evo-now { color: var(--ink); font-weight: 500; }

.evolution-cta { margin-top: 8px; }

@media (max-width: 580px) {
  .evo-years,
  .evo-track,
  .evo-labels { grid-template-columns: 1fr 1fr; }
  /* Show only 1995 and Today on mobile — clean before/after */
  .evo-years span:nth-child(2),
  .evo-years span:nth-child(3),
  .evo-track .evo-dot:nth-child(2),
  .evo-track .evo-dot:nth-child(3),
  .evo-labels span:nth-child(2),
  .evo-labels span:nth-child(3) { display: none; }
  .evo-track::before { left: 12.5%; right: 12.5%; }
  .evolution-timeline { margin: 36px 0 32px; }
}
.hero-profile-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--grey);
  cursor: default;
  user-select: none;
}
.hero-profile-link svg { flex-shrink: 0; opacity: 0.6; }
.badge-soon {
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--cream-dark);
  border: 1px solid var(--tan-light);
  color: var(--grey);
  padding: 2px 7px;
}

/* Hero media */
.hero-media {
  position: relative;
  overflow: hidden;
}
.hero-media .img-placeholder {
  height: 100%;
  min-height: 600px;
}

/* Hero image grid: 1 large left + 2 small right */
.hero-img-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  grid-template-rows: repeat(2, 1fr);
  gap: 3px;
  height: 100%;
  min-height: 600px;
}
.hero-img-main {
  grid-column: 1;
  grid-row: 1 / 3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  animation: kenBurns 14s ease-in-out infinite alternate;
}
.hero-img-sm {
  grid-column: 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero-media .img-placeholder {
  animation: kenBurns 14s ease-in-out infinite alternate;
}
@keyframes kenBurns {
  from { transform: scale(1.0) translate(0, 0); }
  to   { transform: scale(1.06) translate(-2%, -1%); }
}

.hero-media-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 24px;
  background: linear-gradient(transparent, rgba(28,22,17,.65));
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.hero-media-caption span {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(250,250,247,.65);
}

/* ── Trust Strip ────────────────────────────────────────────── */
.trust-strip {
  background: var(--ink);
  padding: 40px 0;
}
.trust-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 16px;
}
.trust-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
}
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 400;
  color: var(--white);
  line-height: 1;
}
.stat-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--tan);
}
.trust-divider {
  width: 1px;
  height: 40px;
  background: rgba(196,180,154,.25);
  flex-shrink: 0;
}

/* ── Clients Strip ──────────────────────────────────────────── */
.clients-strip {
  padding: 40px 0;
  background: var(--cream-dark);
  border-bottom: 1px solid var(--tan-light);
  overflow: hidden;
}

.clients-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--grey);
  text-align: center;
  margin-bottom: 24px;
}

.clients-track-wrap {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.clients-track {
  display: flex;
  align-items: center;
  gap: 52px;
  width: max-content;
  animation: scrollClients 25s linear infinite;
}

.client-logo {
  height: 28px;
  width: auto;
  max-width: 110px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.55;
  mix-blend-mode: multiply;
  flex-shrink: 0;
  display: block;
}

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


@media (prefers-reduced-motion: reduce) {
  .clients-track { animation: none; }
}

/* ── Services ───────────────────────────────────────────────── */
.services-section {
  padding: clamp(48px, 6vw, 80px) 0;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}
.service-card {
  display: block;
  background: var(--cream-dark);
  overflow: hidden;
  transition: background var(--ease);
}
.service-card:hover { background: var(--tan-light); }

.service-img {
  height: 130px;
  width: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.service-info {
  padding: 20px 24px 22px;
}
.service-num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--blue);
  display: block;
  margin-bottom: 12px;
}
.service-info h3 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 10px;
}
.service-info p {
  font-size: 15px;
  color: var(--grey);
  line-height: 1.6;
  margin-bottom: 20px;
}
.read-more {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
}

/* ── Featured Projects ──────────────────────────────────────── */
.projects-section {
  padding: var(--pad-section) 0;
  background: var(--white);
}
.projects-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 2px;
  margin-bottom: 0;
}
.project-card { display: block; overflow: hidden; }
.project-card:hover .project-img { transform: scale(1.02); }

.project-card--large { grid-row: span 2; }

.project-img {
  aspect-ratio: 4/3;
  width: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.project-img--large {
  aspect-ratio: unset;
  height: 100%;
  min-height: 400px;
}

.project-info {
  padding: 20px 24px;
  background: var(--cream-dark);
}
.project-info h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 8px;
}
.project-meta {
  display: flex;
  gap: 0;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey);
}
.project-meta span + span::before {
  content: ' · ';
  margin: 0 6px;
}

/* ── Workspace Reset Spotlight ──────────────────────────────── */
.spotlight {
  background: var(--ink);
}
.spotlight-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: stretch;
  min-height: 560px;
}
.spotlight-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(60px, 8vw, 100px) 0;
}
.spotlight-media {
  overflow: hidden;
}
.spotlight-content h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 3.5vw, 52px);
  font-weight: 400;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 24px;
}
.spotlight-content p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--tan);
  margin-bottom: 40px;
}
.spotlight-content .btn-primary {
  background: var(--sienna);
  border-color: var(--sienna);
}
.spotlight-content .btn-primary:hover {
  background: var(--white);
  border-color: var(--white);
  color: var(--ink);
}
.spotlight-media .img-placeholder { aspect-ratio: 16/9; }

/* Workshop image */
.workshop-img-grid {
  width: 100%;
  height: 100%;
  min-height: 380px;
  overflow: hidden;
}
.workshop-img-main {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

/* ── Team ───────────────────────────────────────────────────── */
.team-section {
  padding: var(--pad-section) 0;
  background: var(--white);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2px;
}

.team-grid--2-3 {
  grid-template-columns: repeat(6, 1fr);
}
.team-grid--2-3 .team-card:nth-child(1),
.team-grid--2-3 .team-card:nth-child(2) { grid-column: span 3; }
.team-grid--2-3 .team-card:nth-child(3),
.team-grid--2-3 .team-card:nth-child(4),
.team-grid--2-3 .team-card:nth-child(5) { grid-column: span 2; }

.team-grid--2up {
  grid-template-columns: repeat(2, 1fr);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  border: 1px solid var(--blue);
  padding: 10px 18px;
  text-decoration: none;
  transition: background var(--ease), color var(--ease);
}
.btn-outline:hover {
  background: var(--blue);
  color: var(--white);
}

@keyframes teamFadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.team-card {
  position: relative;
  overflow: hidden;
  opacity: 0;
}

.team-card.team-visible {
  animation: teamFadeUp 0.65s ease forwards;
}

.team-photo {
  aspect-ratio: 3/4;
  width: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
  background: var(--ink-mid);
  filter: grayscale(100%);
  transform: scale(1);
  transition: filter 0.7s ease, transform 0.7s ease;
  will-change: filter, transform;
}

.team-card:hover .team-photo,
.team-card:focus-within .team-photo {
  filter: grayscale(0%);
  transform: scale(1.06);
}

.team-info {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 20px 22px;
  background: linear-gradient(
    to top,
    rgba(28,22,17,0.93) 0%,
    rgba(28,22,17,0.80) 20%,
    rgba(28,22,17,0.52) 50%,
    rgba(28,22,17,0.18) 70%,
    transparent 85%
  );
}

.team-role {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--tan);
  line-height: 1.4;
  text-shadow: 0 1px 6px rgba(0,0,0,0.7);
}

.team-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--white);
  margin-top: 4px;
  text-shadow: 0 1px 6px rgba(0,0,0,0.7);
}

.team-bio {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(250, 250, 247, 0.78);
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  margin-top: 0;
  transition-property: max-height, opacity, margin-top;
  transition-duration: 0.45s, 0.35s, 0.35s;
  transition-timing-function: ease;
}

.team-card:hover .team-bio,
.team-card:focus-within .team-bio {
  max-height: 260px;
  opacity: 1;
  margin-top: 6px;
}

/* ── Process ────────────────────────────────────────────────── */
.process-section {
  padding: var(--pad-section) 0;
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  position: relative;
  margin-bottom: 56px;
}
/* Horizontal connecting line through centre of nodes */
.process-steps::before {
  content: '';
  position: absolute;
  top: 20px; /* centre of 40px node */
  left: 20px;
  right: 20px;
  height: 2px;
  background: linear-gradient(to right, var(--blue), rgba(37,87,167,.15));
  pointer-events: none;
}
.process-step {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-right: 20px;
  position: relative;
}
/* Numbered circle node */
.step-node {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}
/* Last step node: sienna accent */
.process-step:last-child .step-node {
  background: var(--sienna);
}
.process-step h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 8px;
  line-height: 1.2;
}
.process-step p {
  font-size: 13px;
  line-height: 1.65;
  color: var(--grey);
}

/* Process meta bar */
.process-meta-bar {
  display: flex;
  border-top: 1px solid var(--tan-light);
  border-bottom: 1px solid var(--tan-light);
  margin-bottom: 48px;
}
.process-meta-item {
  flex: 1;
  padding: 24px 32px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.process-meta-item + .process-meta-item {
  border-left: 1px solid var(--tan-light);
}
.meta-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--blue);
}
.meta-value {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 400;
}

/* ── Hiring Strip ───────────────────────────────────────────── */
.hiring-strip {
  display: flex;
  align-items: center;
  gap: 24px;
  background: var(--sienna);
  padding: 20px var(--pad-x);
  max-width: 100%;
  transition: background var(--ease);
}
.hiring-strip:hover { background: var(--sienna-dk); }
.hiring-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.7;
  white-space: nowrap;
}
.hiring-text {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 400;
  color: var(--white);
  flex: 1;
}
.hiring-cta {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream);
  white-space: nowrap;
}

/* ── Inquiry ────────────────────────────────────────────────── */
.inquiry-section {
  padding: var(--pad-section) 0;
  background: var(--cream-dark);
}
.inquiry-header {
  text-align: center;
  margin-bottom: 56px;
}
.inquiry-header h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 400;
  margin-bottom: 12px;
}
.inquiry-header p { color: var(--grey); }

.inquiry-options {
  display: flex;
  gap: 2px;
  margin-bottom: 56px;
}
.cta-option {
  flex: 1;
  padding: 36px 40px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.cta-option--wa {
  background: #25D366;
  color: var(--white);
  transition: background var(--ease);
}
.cta-option--wa:hover { background: #1da851; }
.cta-option--primary { flex: 2; }
.cta-option--schedule {
  background: var(--ink);
  color: var(--white);
}
.cta-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.55;
}
.cta-option h3 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 400;
}
.cta-option p { font-size: 14px; opacity: 0.7; }

/* Form */
.form-status {
  padding: 14px 18px;
  font-size: 14px;
  line-height: 1.5;
  border-left: 3px solid;
}
.form-status--success {
  border-color: #2557A7;
  background: #D6E4F7;
  color: #1A4080;
}
.form-status--error {
  border-color: #8B5E2C;
  background: #F5EDE0;
  color: #6E4A20;
}

.inquiry-form {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-group label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey);
}
.label-optional { opacity: 0.5; }
.form-group input,
.form-group select {
  font-size: 15px;
  padding: 13px 16px;
  background: var(--white);
  border: 1px solid var(--tan);
  color: var(--ink);
  appearance: none;
  -webkit-appearance: none;
  transition: border-color var(--ease);
  border-radius: 0;
}
.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--blue);
}
.form-group input[type="file"] {
  padding: 10px 12px;
  font-size: 13px;
}
.field-hint {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--grey);
  letter-spacing: 0.05em;
}

/* Budget radio options */
.budget-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.budget-opt {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 14px;
  border: 1px solid var(--cream-dark);
  background: var(--white);
  cursor: pointer;
  font-size: 14px;
  color: var(--ink-mid);
  transition: border-color var(--ease), background var(--ease);
}
.budget-opt:hover { border-color: var(--sienna); }
.budget-opt input[type="radio"] {
  accent-color: var(--sienna);
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  cursor: pointer;
  border: none;
  padding: 0;
}
.budget-opt:has(input:checked) {
  border-color: var(--sienna);
  background: #F9F4EE;
}
@media (max-width: 640px) {
  .budget-options { grid-template-columns: 1fr; }
}

/* ── Testimonials ───────────────────────────────────────────── */
.testimonials-section {
  padding: var(--pad-section) 0;
  background: var(--white);
}

/* Testimonials carousel */
.testimonials-carousel { position: relative; }
.tc-track-wrap { overflow: hidden; }
.tc-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
.tc-slide { flex: 0 0 100%; min-width: 0; }

.testimonial {
  background: var(--cream-dark);
  padding: clamp(40px, 5vw, 72px) clamp(36px, 6vw, 88px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 40px;
  min-height: 280px;
  transition: background 0.3s var(--ease);
}
.testimonial:hover { background: var(--cream); }

.tc-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 32px;
}
.tc-arr {
  background: none;
  border: 1px solid var(--tan-light);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--ink);
  flex-shrink: 0;
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease), color 0.2s var(--ease);
}
.tc-arr:hover { background: var(--ink); border-color: var(--ink); color: var(--cream); }
.tc-dots { display: flex; align-items: center; gap: 8px; }
.tc-dot {
  width: 8px;
  height: 8px;
  border-radius: 4px;
  background: var(--tan);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s var(--ease);
}
.tc-dot--active { width: 28px; background: var(--sienna); }

.testimonial p {
  font-family: var(--font-display);
  font-size: clamp(17px, 1.6vw, 22px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.6;
  color: var(--ink);
}

.testimonial footer {
  border-top: 1px solid var(--tan-light);
  padding-top: 20px;
}

.testimonial cite {
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cite-name {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
}

.cite-project {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  color: var(--blue);
}

/* ── Footer ─────────────────────────────────────────────────── */
.site-footer { background: var(--white); color: var(--ink); border-top: 1px solid var(--cream-dark); }

.footer-col { display: none; }

.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 56px var(--pad-x) 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-logo {
  display: block;
  margin-bottom: 20px;
}
.footer-logo-img {
  height: 42px;
  width: auto;
  display: block;
  margin-bottom: 20px;
  opacity: 0.9;
}
.footer-tagline {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 300;
  line-height: 1.55;
  color: var(--sienna);
}
.footer-ig {
  display: flex;
  align-items: center;
  align-self: center;
  color: var(--ink-mid);
  opacity: 0.5;
  text-decoration: none;
  transition: opacity 0.2s;
}
.footer-ig:hover { opacity: 1; }
.footer-heading {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 20px;
  font-weight: 400;
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-col a {
  font-size: 14px;
  color: var(--grey);
  transition: color var(--ease);
}
.footer-col a:hover { color: var(--ink); }

.footer-contact address {
  font-size: 14px;
  line-height: 1.8;
  color: var(--grey);
  margin-bottom: 16px;
}
.footer-contact a {
  display: block;
  font-size: 14px;
  color: var(--grey);
  margin-bottom: 8px;
  transition: color var(--ease);
}
.footer-contact a:hover { color: var(--ink); }
.footer-hours {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--grey);
  letter-spacing: 0.06em;
}

.footer-bottom .lang-switch { display: none; }

.footer-bottom {
  max-width: var(--container);
  margin: 0 auto;
  padding: 24px var(--pad-x);
  border-top: 1px solid rgba(28,22,17,0.12);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey);
}

/* ── Homepage hero: centered text, desktop only (no image panel) */
@media (min-width: 901px) {
  .hero:not(:has(.hero-media)) {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 80px var(--pad-x) 60px;
    position: relative;
  }
  .hero:not(:has(.hero-media)) .hero-content {
    margin: 0 auto;
    align-items: center;
    text-align: center;
    padding: 0;
  }
  .hero:not(:has(.hero-media)) .hero-sub {
    text-align: center;
    font-size: 15px;
    max-width: 700px;
    white-space: nowrap;
  }
  .hero:not(:has(.hero-media)) .hero-ctas { justify-content: center; }
}

/* ── Homepage hero: centred on mobile + full-height so pain callouts are below fold */
@media (max-width: 900px) {
  .hero--home {
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .hero--home .hero-content {
    align-items: center;
    text-align: center;
    padding-top: calc(var(--nav-h) + 32px);
  }
  .hero--home .hero-headline,
  .hero--home .hero-sub { text-align: center; }
  .hero--home .hero-ctas { justify-content: center; }
}

/* ── Scroll hint ─────────────────────────────────────────────── */
.scroll-hint {
  position: absolute;
  bottom: clamp(28px, 4vh, 52px);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  pointer-events: none;
  z-index: 2;
  opacity: 1;
  transition: opacity 0.7s ease;
  animation: scrollBounce 2.2s ease-in-out infinite;
}
.scroll-hint--hidden { opacity: 0 !important; }
.scroll-hint__line {
  width: 1px;
  height: 52px;
  background: rgba(28, 22, 17, 0.45);
}
.scroll-hint__chevron {
  width: 11px;
  height: 11px;
  border-right: 1.5px solid rgba(28, 22, 17, 0.5);
  border-bottom: 1.5px solid rgba(28, 22, 17, 0.5);
  transform: rotate(45deg);
  margin-top: 5px;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.85; }
  50%       { transform: translateX(-50%) translateY(11px); opacity: 1; }
}
@media (max-width: 900px) {
  .scroll-hint {
    bottom: 20px;
  }
}

/* ── Origin photo: slide-in from above on scroll ─────────────── */
.origin-photo.reveal {
  transform: translateY(-32px);
  opacity: 0;
  transition: opacity 1.1s cubic-bezier(0.16,1,0.3,1), transform 1.1s cubic-bezier(0.16,1,0.3,1);
}
.origin-photo.reveal--in {
  transform: translateY(0);
  opacity: 1;
}

/* ── Origin story section (artboard) ────────────────────────── */
.origin-section {
  padding: clamp(60px, 8vw, 100px) 0 0;
  overflow: hidden;
}
.origin-headline {
  font-family: var(--font-display);
  font-size: clamp(26px, 2.8vw, 40px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.1;
  color: rgba(28, 22, 17, 0.62);
  text-align: center;
  margin-bottom: clamp(48px, 6vw, 80px);
}
.origin-headline em {
  font-style: italic;
}
.origin-photo {
  width: 100%;
  height: 68vh;
  overflow: hidden;
  position: relative;
}
.origin-photo img {
  width: 100%;
  height: 120%;
  object-fit: cover;
  display: block;
  will-change: transform;
  transform: translateY(0px);
}
.origin-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: clamp(48px, 6vw, 80px) var(--pad-x);
  border-top: 1px solid var(--tan-light);
}
.origin-stat {
  flex: 1;
  text-align: center;
  padding: 0 clamp(24px, 3vw, 48px);
}
.origin-stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 300;
  line-height: 1;
  color: var(--ink);
  margin-bottom: 10px;
}
.origin-stat-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--grey);
}
.origin-divider {
  width: 1px;
  height: 48px;
  background: var(--tan);
  flex-shrink: 0;
}
@media (max-width: 640px) {
  .origin-stats {
    flex-direction: column;
    gap: 40px;
  }
  .origin-divider {
    width: 40px;
    height: 1px;
  }
}

/* ── Service page art gallery grid ──────────────────────────── */
.svc-gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 3px;
}
.svc-gallery-item {
  position: relative;
  overflow: hidden;
  display: block;
  text-decoration: none;
  background: var(--ink-mid);
}
.svc-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  aspect-ratio: 3/2;
  transition: transform 0.75s cubic-bezier(0.16,1,0.3,1), opacity 0.38s;
}
.svc-gallery-item:hover img { transform: scale(1.05); opacity: 0.88; }
.svc-gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(28,22,17,0.88) 0%, rgba(28,22,17,0) 55%);
  opacity: 0;
  transition: opacity 0.35s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px 32px;
}
.svc-gallery-item:hover .svc-gallery-overlay { opacity: 1; }
.svc-gallery-name {
  font-family: var(--font-display);
  font-size: clamp(17px,1.6vw,22px);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 6px;
}
.svc-gallery-meta {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(250,250,247,0.6);
}
.svc-gallery-item--c7  { grid-column: span 7; }
.svc-gallery-item--c5  { grid-column: span 5; }
.svc-gallery-item--c8  { grid-column: span 8; }
.svc-gallery-item--c4  { grid-column: span 4; }
.svc-gallery-item--c6  { grid-column: span 6; }
.svc-gallery-item--c12 { grid-column: span 12; }
.svc-gallery-item--c12 img { aspect-ratio: 21/6; }
@media (max-width: 900px) {
  .svc-gallery { grid-template-columns: repeat(2, 1fr); gap: 2px; }
  .svc-gallery-item--c7,.svc-gallery-item--c5,.svc-gallery-item--c8,
  .svc-gallery-item--c4,.svc-gallery-item--c6,.svc-gallery-item--c12 { grid-column: span 1; }
  .svc-gallery-item img,.svc-gallery-item--c12 img { aspect-ratio: 3/2; }
  .svc-gallery-overlay { opacity: 1; }
}
@media (max-width: 560px) { .svc-gallery { grid-template-columns: 1fr; } }

/* ── Editorial scope list ────────────────────────────────────── */
.svc-scope { display: flex; flex-direction: column; }
.svc-scope-item {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 24px;
  padding: 36px 0;
  border-top: 1px solid var(--tan-light);
}
.svc-scope-item:last-child { border-bottom: 1px solid var(--tan-light); }
.svc-scope-num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--grey);
  padding-top: 3px;
}
.svc-scope-body h3 {
  font-family: var(--font-display);
  font-size: clamp(18px,1.8vw,24px);
  font-weight: 400;
  margin-bottom: 12px;
  color: var(--ink);
}
.svc-scope-body p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--ink-mid);
  max-width: 560px;
}
@media (max-width: 640px) {
  .svc-scope-item { grid-template-columns: 1fr; gap: 8px; }
}

/* ── Floating WhatsApp ──────────────────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 200;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  width: 48px;
  height: 48px;
  padding: 0;
  box-shadow: 0 3px 14px rgba(0,0,0,.20);
  transition: transform var(--ease), box-shadow var(--ease), border-radius 0.25s, width 0.25s, gap 0.25s, padding 0.25s;
  color: white;
  overflow: hidden;
}
.wa-float:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(37,211,102,.4);
  border-radius: 100px;
  width: auto;
  gap: 9px;
  padding: 0 16px 0 12px;
}
.wa-float svg { flex-shrink: 0; }
.wa-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: white;
  white-space: nowrap;
  opacity: 0;
  max-width: 0;
  overflow: hidden;
  transition: opacity 0.2s, max-width 0.3s;
}
.wa-float:hover .wa-label {
  opacity: 1;
  max-width: 120px;
}

/* Pulse ring — draws attention on first load */
.wa-float::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: #25D366;
  animation: wa-pulse 2.4s ease-out infinite;
  z-index: -1;
}
@keyframes wa-pulse {
  0%   { opacity: 0.55; transform: scale(1); }
  100% { opacity: 0;    transform: scale(1.55); }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1100px) {
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 0;
  }
  .process-steps::before { display: none; }
  .process-step { padding-top: 0; }

  .team-grid { grid-template-columns: repeat(3, 1fr); }
  .team-grid--2-3 { grid-template-columns: repeat(2, 1fr); }
  .team-grid--2-3 .team-card:nth-child(n) { grid-column: span 1; }
  .footer-inner { gap: 24px; }
}

@media (max-width: 900px) {
  .spotlight-inner { grid-template-columns: 1fr; gap: 48px; }
  .spotlight-content { order: 1; }
  .spotlight-media   { order: 2; }
}

@media (max-width: 768px) {
  :root { --nav-h: 60px; }

  /* Nav */
  .nav-inner { padding-left: 8px; padding-right: 16px; }
  .logo-img { height: 40px; }

  /* Hero */
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-content {
    padding: 56px var(--pad-x) 48px;
    max-width: none;
  }
  .hero-media .img-placeholder { min-height: 56vw; }
  .hero-img-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 240px 240px;
    min-height: auto;
  }
  .hero-img-main {
    grid-column: 1;
    grid-row: 1 / 3;
  }
  .hero-img-sm { grid-column: 2; }
  .workshop-img-grid { aspect-ratio: 3/4; height: auto; }

  /* Trust */
  .trust-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-items: center;
    gap: 32px 16px;
  }
  .trust-divider { display: none; }
  .trust-inner .trust-stat:last-child { grid-column: 1 / -1; }

  /* Services */
  .services-grid { grid-template-columns: repeat(2, 1fr); }

  /* Projects */
  .projects-grid { grid-template-columns: 1fr; }
  .project-card--large { grid-row: span 1; }
  .project-img--large { height: auto; aspect-ratio: 4/3; }

  /* Process */
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 32px 0; }
  .process-meta-bar { flex-direction: column; }
  .process-meta-item + .process-meta-item { border-left: none; border-top: 1px solid var(--tan-light); }

  /* Hiring */
  .hiring-strip { flex-wrap: wrap; gap: 8px; }

  /* Team */
  .team-grid { grid-template-columns: repeat(2, 1fr); }

  /* Testimonials */
  .testimonial { padding: 36px 28px; min-height: 0; }
  .tc-arr { width: 40px; height: 40px; }

  /* Inquiry */
  .inquiry-options { flex-direction: column; }
  .form-row { grid-template-columns: 1fr; }

  /* Footer */
  .footer-inner { padding-top: 40px; padding-bottom: 32px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }

  .wa-float { bottom: 24px; right: 20px; }
}

@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; }
  .process-steps { grid-template-columns: 1fr; }

  /* Hero: stack main image full-width on top, small images side-by-side below */
  .hero-img-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 220px 150px;
  }
  .hero-img-main {
    grid-column: 1 / -1;
    grid-row: 1;
  }
  .hero-img-sm {
    grid-column: auto;
    grid-row: 2;
  }
}

/* ── Language Coming Soon Modal ──────────────────────────────── */
.lang-cs-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  pointer-events: none;
}
.lang-cs-modal.is-open {
  visibility: visible;
  pointer-events: auto;
}
.lang-cs-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(28, 22, 17, 0.72);
  opacity: 0;
  transition: opacity 0.28s ease;
  cursor: pointer;
}
.lang-cs-modal.is-open .lang-cs-backdrop { opacity: 1; }
.lang-cs-card {
  position: relative;
  background: var(--cream);
  padding: clamp(40px, 6vw, 72px) clamp(32px, 5vw, 64px);
  max-width: 480px;
  width: 90%;
  text-align: center;
  transform: translateY(24px) scale(0.97);
  opacity: 0;
  transition: transform 0.3s cubic-bezier(0.22,1,0.36,1), opacity 0.28s ease;
}
.lang-cs-modal.is-open .lang-cs-card {
  transform: translateY(0) scale(1);
  opacity: 1;
}
.lang-cs-eyebrow {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sienna);
  margin-bottom: 20px;
}
.lang-cs-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 400;
  color: var(--ink);
  line-height: 1.15;
  margin-bottom: 18px;
}
.lang-cs-title em { font-style: italic; color: var(--sienna); }
.lang-cs-sub {
  font-size: 14px;
  line-height: 1.7;
  color: var(--ink-mid);
  margin-bottom: 32px;
}
.lang-cs-close {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  border: 1px solid var(--ink);
  padding: 10px 28px;
  transition: background var(--ease), color var(--ease);
}
.lang-cs-close:hover {
  background: var(--ink);
  color: var(--white);
}

/* ── Hero: solo small image (when only one small image) ─────── */
.hero-img-sm--solo {
  grid-column: 2;
  grid-row: 1 / 3;
  height: 100%;
  object-fit: cover;
}

/* ── Workshop spotlight: larger image ───────────────────────── */
#workshop .spotlight-inner {
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
}
#workshop .workshop-img-grid {
  aspect-ratio: auto;
  min-height: 520px;
}
@media (max-width: 900px) {
  #workshop .spotlight-inner { grid-template-columns: 1fr; }
  #workshop .workshop-img-grid { min-height: 400px; }
}

@media (max-width: 480px) {
  .hero-img-sm--solo {
    grid-column: 1 / -1;
    grid-row: 2;
  }
}

/* ══════════════════════════════════════════════════════════════
   ANIMATIONS  (animations.js companion styles)
   ══════════════════════════════════════════════════════════════ */

/* ── Hero headline line-reveal ─────────────────────────────── */
.hl-line {
  display: block;
  overflow: hidden;
  line-height: 1.05;
}
.hl-inner {
  display: block;
  transform: translateY(110%);
  transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: calc(var(--li, 0) * 0.14s + 0.05s);
}
.hl-visible .hl-inner {
  transform: translateY(0);
}

/* ── Scroll reveal base ────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity  0.72s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.72s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--reveal-delay, 0s);
}
.reveal--in {
  opacity: 1;
  transform: none;
}

/* ── Custom cursor ─────────────────────────────────────────── */
.custom-cursor-active * { cursor: none !important; }

.cur {
  pointer-events: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
}

.cur-dot {
  position: fixed;
  width: 5px;
  height: 5px;
  background: var(--ink);
  border-radius: 50%;
  top: 0;
  left: 0;
  will-change: transform;
}

.cur-ring {
  position: fixed;
  width: 36px;
  height: 36px;
  border: 1.5px solid var(--ink);
  border-radius: 50%;
  top: 0;
  left: 0;
  will-change: transform;
  transition:
    width   0.38s cubic-bezier(0.16, 1, 0.3, 1),
    height  0.38s cubic-bezier(0.16, 1, 0.3, 1),
    background 0.28s,
    border-color 0.28s,
    opacity 0.2s;
}

.cur-lbl {
  position: fixed;
  top: 0;
  left: 0;
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0;
  transition: opacity 0.2s;
  pointer-events: none;
  will-change: transform;
}

/* view state (on project cards) */
.cur--view .cur-ring {
  width: 72px;
  height: 72px;
  background: var(--ink);
  border-color: var(--ink);
}
.cur--view .cur-lbl {
  opacity: 1;
}

/* link state */
.cur--link .cur-ring {
  width: 52px;
  height: 52px;
  opacity: 0.5;
}

/* ── Portfolio filter hidden state ─────────────────────────── */
.pf-card--hidden {
  opacity: 0 !important;
  transform: translateY(10px) !important;
  pointer-events: none !important;
  position: absolute !important;
  visibility: hidden !important;
}

/* ── Service card hover lift ───────────────────────────────── */
.service-card {
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(28, 22, 17, 0.12);
}

/* ── Project card hover overlay ────────────────────────────── */
.project-card {
  overflow: hidden;
}
.project-card .project-img {
  transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}
.project-card:hover .project-img {
  transform: scale(1.04);
}

/* ── Portfolio card hover ──────────────────────────────────── */
.pf-card .pf-thumb {
  transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}
.pf-card:hover .pf-thumb {
  transform: scale(1.04);
}
.pf-card {
  transition: box-shadow 0.35s;
}
.pf-card:hover {
  box-shadow: 0 8px 28px rgba(28, 22, 17, 0.10);
}

/* ── Spotlight mobile stack ──────────────────────────────── */
@media (max-width: 768px) {
  .spotlight-inner {
    grid-template-columns: 1fr;
    gap: 0;
    min-height: unset;
    align-items: start;
  }
  .spotlight-media {
    order: -1;
  }
  .workshop-img-grid {
    min-height: 56vw;
    aspect-ratio: 16/9;
    height: auto;
  }
  #workshop .workshop-img-grid {
    min-height: 56vw !important;
    aspect-ratio: 16/9 !important;
  }
  .spotlight-content {
    padding: 36px var(--pad-x) 44px;
    justify-content: flex-start;
  }
  /* Workspace reset: add separation from prev section */
  #workspace-reset {
    border-top: 1px solid rgba(196,180,154,0.18);
  }
}

/* ── Service page hero: text left + photo right on desktop ─── */
@media (min-width: 900px) {
  .hero:has(.hero-media) {
    grid-template-columns: 1fr 1fr;
    padding: 0;
    align-items: stretch;
    min-height: 80vh;
  }
  .hero:has(.hero-media) .hero-content {
    padding: clamp(100px, 12vw, 160px) var(--pad-x) clamp(80px, 8vw, 120px);
    max-width: none;
  }
  .hero:has(.hero-media) .hero-media {
    min-height: 70vh;
  }
}

/* ── Portfolio nav dropdown ──────────────────────────────────── */
.nav-dropdown {
  position: relative;
}
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--cream);
  border: 1px solid var(--tan-light);
  padding: 6px 0;
  min-width: 148px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.18s ease, visibility 0.18s ease;
  z-index: 300;
  list-style: none;
  box-shadow: 0 6px 20px rgba(28,22,17,0.10);
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.nav-dropdown-menu li a {
  display: block;
  padding: 9px 18px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  transition: color 0.15s;
  white-space: nowrap;
}
.nav-dropdown-menu li a:hover { color: var(--sienna); }
.nav-dropdown-arrow {
  font-size: 8px;
  opacity: 0.55;
  margin-left: 3px;
  display: inline-block;
}

/* ── Pain-point callouts (homepage) ────────────────────────── */
.pain-callouts {
  background: var(--ink);
}
.pain-callouts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.06);
}
.pain-card {
  background: var(--ink);
  padding: clamp(36px, 4.5vw, 60px) clamp(28px, 3vw, 48px);
  position: relative;
  overflow: hidden;
  border-left: 3px solid transparent;
  transition: transform 0.35s var(--ease), background 0.35s var(--ease), border-left-color 0.35s var(--ease);
}
.pain-card:hover {
  transform: translateY(-6px);
  background: #1c1409;
  border-left-color: var(--sienna);
  z-index: 1;
}
.pain-card-num {
  font-family: var(--font-display);
  font-size: 100px;
  font-weight: 300;
  color: rgba(255,255,255,0.03);
  position: absolute;
  bottom: -10px;
  right: 18px;
  line-height: 1;
  pointer-events: none;
  user-select: none;
  transition: color 0.35s var(--ease);
}
.pain-card:hover .pain-card-num { color: rgba(185,130,80,0.08); }
.pain-card-stat {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sienna);
  display: block;
  margin-bottom: 20px;
}
.pain-card-problem {
  font-family: var(--font-display);
  font-size: clamp(15px, 1.3vw, 19px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.45;
  color: rgba(250,250,247,0.38);
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.pain-card-answer {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(250,250,247,0.72);
}
@media (max-width: 900px) {
  .pain-callouts-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .pain-callouts-grid { grid-template-columns: 1fr; }
}

/* ── Workshop mini stats ─────────────────────────────────────── */
.workshop-stats-row {
  display: flex;
  gap: 36px;
  margin: 28px 0 36px;
}
.workshop-stat-item span:first-child {
  display: block;
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 300;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
}
.workshop-stat-item span:last-child {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(250,250,247,0.42);
}

/* ── Mobile fixes for new homepage sections ─────────────────── */
@media (max-width: 600px) {
  .pain-card { padding: 28px 20px; }
  .workshop-stats-row { gap: 20px; flex-wrap: wrap; }
  .workshop-stat-item span:first-child { font-size: 22px; }
  .cp-filter-wrap { padding: 24px var(--pad-x) 0; }
}
@media (max-width: 480px) {
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonial { padding: 28px 22px; }
}

/* ── Curated portfolio filter ───────────────────────────────── */
.cp-filter-wrap {
  padding: 40px var(--pad-x) 0;
  max-width: var(--container);
  margin: 0 auto;
}
.cp-filter {
  display: flex;
  gap: 2px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.cp-filter-btn {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 10px 20px;
  border: 1px solid var(--tan-light);
  background: transparent;
  color: var(--grey);
  cursor: pointer;
  transition: background var(--ease), color var(--ease), border-color var(--ease);
}
.cp-filter-btn.active,
.cp-filter-btn:hover {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}

/* ============================================================
   SCOPE CAROUSEL
   ============================================================ */
.scope-car {
  display: grid;
  grid-template-columns: 210px 1fr;
  border: 1px solid var(--cream-dark);
  overflow: hidden;
  min-height: 380px;
  margin-top: 40px;
}
.scope-car-tabs {
  background: var(--cream-dark);
  display: flex;
  flex-direction: column;
  border-right: 1px solid rgba(196,180,154,0.45);
}
.scope-car-tab {
  width: 100%;
  text-align: left;
  padding: 16px 18px;
  border-bottom: 1px solid rgba(196,180,154,0.35);
  border-left: 2px solid transparent;
  display: flex;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: background 0.22s, border-left-color 0.22s;
  background: none;
}
.scope-car-tab:last-child { border-bottom: none; }
.scope-car-tab:hover { background: rgba(0,0,0,0.04); }
.scope-car-tab.is-active { background: var(--white); border-left-color: var(--sienna); }
.sct-num {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.14em;
  color: var(--tan);
  transition: color 0.22s;
}
.scope-car-tab.is-active .sct-num { color: var(--sienna); }
.sct-name {
  font-size: 11.5px;
  font-weight: 500;
  color: var(--grey);
  line-height: 1.3;
  transition: color 0.22s;
}
.scope-car-tab.is-active .sct-name { color: var(--ink); }
.sct-bar {
  position: absolute;
  bottom: 0; left: 0;
  height: 2px;
  background: var(--sienna);
  width: 0%;
}
.sct-bar--run {
  transition: width var(--scope-dur, 4s) linear;
  width: 100%;
}
.scope-car-panels {
  position: relative;
  background: var(--white);
  min-height: 380px;
}
.scope-car-panel {
  position: absolute;
  inset: 0;
  padding: 44px 52px;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.35s ease, transform 0.35s ease;
  pointer-events: none;
}
.scope-car-panel.is-active {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}
.scp-ghost-num {
  display: block;
  font-family: var(--font-display);
  font-size: 84px;
  font-weight: 300;
  line-height: 1;
  color: rgba(28,22,17,0.045);
  margin-bottom: -12px;
  user-select: none;
  pointer-events: none;
}
.scp-title {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.2vw, 32px);
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 18px;
  line-height: 1.2;
}
.scp-body {
  font-size: 15px;
  line-height: 1.78;
  color: var(--ink-mid);
  max-width: 540px;
}
@media (max-width: 860px) {
  .scope-car { grid-template-columns: 1fr; min-height: auto; }
  .scope-car-tabs {
    flex-direction: row;
    overflow-x: auto;
    scrollbar-width: none;
    border-right: none;
    border-bottom: 1px solid rgba(196,180,154,0.4);
    -webkit-overflow-scrolling: touch;
  }
  .scope-car-tabs::-webkit-scrollbar { display: none; }
  .scope-car-tab {
    flex-shrink: 0;
    width: auto;
    min-width: 90px;
    border-bottom: none;
    border-right: 1px solid rgba(196,180,154,0.35);
    border-left: none;
    border-top: 2px solid transparent;
    padding: 12px 14px;
  }
  .scope-car-tab:last-child { border-right: none; }
  .scope-car-tab.is-active { border-top-color: var(--sienna); border-left: none; }
  .scope-car-panels { min-height: 240px; }
  .scope-car-panel { padding: 30px 28px; }
  .scp-ghost-num { font-size: 52px; }
}

/* ============================================================
   PROCESS STEPS — ENTRANCE ANIMATION
   ============================================================ */
.process-steps.ps-anim::before {
  transform-origin: left center;
  transform: scaleX(0);
  transition: transform 1.0s cubic-bezier(0.4, 0, 0.2, 1) 0.15s;
}
.process-steps.ps-anim.ps-visible::before { transform: scaleX(1); }

.process-steps.ps-anim .step-node {
  transform: scale(0);
  transition: transform 0.55s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.process-steps.ps-anim.ps-visible .process-step:nth-child(1) .step-node { transform: scale(1); transition-delay: 0.45s; }
.process-steps.ps-anim.ps-visible .process-step:nth-child(2) .step-node { transform: scale(1); transition-delay: 0.72s; }
.process-steps.ps-anim.ps-visible .process-step:nth-child(3) .step-node { transform: scale(1); transition-delay: 0.99s; }

.process-steps.ps-anim .process-step h3,
.process-steps.ps-anim .process-step p {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}
.process-steps.ps-anim.ps-visible .process-step:nth-child(1) h3,
.process-steps.ps-anim.ps-visible .process-step:nth-child(1) p { opacity: 1; transform: none; transition-delay: 0.55s; }
.process-steps.ps-anim.ps-visible .process-step:nth-child(2) h3,
.process-steps.ps-anim.ps-visible .process-step:nth-child(2) p { opacity: 1; transform: none; transition-delay: 0.82s; }
.process-steps.ps-anim.ps-visible .process-step:nth-child(3) h3,
.process-steps.ps-anim.ps-visible .process-step:nth-child(3) p { opacity: 1; transform: none; transition-delay: 1.09s; }

.process-meta-bar.pm-anim .meta-value {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.process-meta-bar.pm-anim.pm-visible .process-meta-item:nth-child(1) .meta-value { opacity: 1; transform: none; transition-delay: 0.0s; }
.process-meta-bar.pm-anim.pm-visible .process-meta-item:nth-child(2) .meta-value { opacity: 1; transform: none; transition-delay: 0.13s; }
.process-meta-bar.pm-anim.pm-visible .process-meta-item:nth-child(3) .meta-value { opacity: 1; transform: none; transition-delay: 0.26s; }

/* ============================================================
   HERO IMAGE — KEN BURNS ZOOM
   ============================================================ */
@keyframes kbZoom {
  from { transform: scale(1.07); }
  to   { transform: scale(1.0); }
}
.hero-media img {
  animation: kbZoom 15s ease-out forwards;
}

/* ============================================================
   WHY-CARD HOVER + REVEAL
   ============================================================ */
.why-card {
  border-left: 3px solid transparent;
  transition: transform 0.3s cubic-bezier(0.16,1,0.3,1),
              box-shadow 0.3s ease,
              border-left-color 0.25s ease;
}
.why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(28,22,17,0.09);
  border-left-color: var(--sienna);
}
.why-num {
  display: inline-block;
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1);
}
.why-card:hover .why-num { transform: translateX(4px) scale(1.12); }

/* ============================================================
   VALUE-INTRO-CARD HOVER
   ============================================================ */
.value-intro-card {
  border-top: 2px solid transparent;
  transition: transform 0.3s cubic-bezier(0.16,1,0.3,1),
              box-shadow 0.3s ease,
              border-top-color 0.25s ease;
}
.value-intro-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(28,22,17,0.08);
  border-top-color: var(--blue);
}
