/* ============================================================
   Ruperta Studio — Design System v5 · Synthesis
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@700;800;900&family=Inter:wght@400;500;600;700;800;900&family=Instrument+Serif:ital@0;1&family=JetBrains+Mono:wght@400;500;600&display=swap');

/* ================================================================
   TOKENS
   ================================================================ */
:root {
  --bone:      #FBFAF7;
  --bone-2:    #F2F0EA;
  --ink:       #1A1A1A;
  --ink-2:     #5A5A5A;
  --ink-3:     #8A8A8A;
  --ink-deep:  #0D0D0D;
  --lime:      #C8FF1A;
  --lime-dk:   #B3E600;
  --line:      rgba(26,26,26,0.10);
  --line-2:    rgba(26,26,26,0.18);
  --line-dark: rgba(251,250,247,0.12);

  --font-cond: 'Barlow Condensed', sans-serif;  /* logo + marquee only */
  --display:   'Helvetica Neue', Helvetica, Arial, sans-serif;
  --body:      'Inter', sans-serif;
  --serif:     'Instrument Serif', Georgia, serif;
  --mono:      'JetBrains Mono', ui-monospace, monospace;

  --max-w:     1280px;
  --pad-x:     clamp(24px, 4vw, 64px);
  --ease:      cubic-bezier(0.22, 1, 0.36, 1);
  --ease-expo: cubic-bezier(0.19, 1, 0.22, 1);
  --radius:    4px;
}

/* ================================================================
   RESET
   ================================================================ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body {
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bone);
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
ul, ol { list-style: none; }
::selection { background: var(--lime); color: var(--ink); }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--pad-x); }

/* ================================================================
   ANIMATIONS
   ================================================================ */
.js-ready [data-anim] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}
.js-ready [data-anim].is-visible { opacity: 1; transform: none; }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .js-ready [data-anim] { opacity: 1; transform: none; transition: none; }
  .marquee-track { animation: none; }
  .badge-svg { animation: none; }
}

/* ================================================================
   UTILITIES
   ================================================================ */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 24px;
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 7px; height: 7px;
  background: var(--lime);
  flex-shrink: 0;
}
.eyebrow-inv {
  color: rgba(251,250,247,0.7);
}
.eyebrow-inv::before { background: var(--lime); }

.lime-text { color: var(--lime); }

/* ================================================================
   BUTTONS
   ================================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  font-family: var(--body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1.5px solid transparent;
  border-radius: var(--radius);
  transition: all 0.3s var(--ease);
  cursor: pointer;
  white-space: nowrap;
}
.btn-lime { background: var(--lime); color: var(--ink); border-color: var(--ink); }
.btn-lime:hover { background: var(--ink); color: var(--lime); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--bone); }
.btn-arrow::after { content: "↗"; }

/* ================================================================
   NAVBAR
   ================================================================ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 200;
  padding: 22px var(--pad-x);
  transition: background 0.35s, padding 0.35s, border-color 0.35s;
  border-bottom: 1px solid transparent;
}
.navbar.scrolled {
  background: rgba(251,250,247,0.94);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  padding: 14px var(--pad-x);
  border-bottom-color: var(--line-2);
}
.navbar-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* Logo — keep RUPERTA★ as brand anchor */
.navbar-logo {
  font-family: var(--font-cond);
  font-weight: 900;
  font-size: 21px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
  flex-shrink: 0;
  line-height: 1;
}
.logo-star { color: var(--lime); }

.navbar-nav { display: flex; gap: 0; }
.navbar-nav a {
  display: inline-block;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  position: relative;
}
.navbar-nav a::after {
  content: "";
  position: absolute;
  left: 14px; right: 14px; bottom: 4px;
  height: 1.5px;
  background: var(--lime);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.navbar-nav a:hover::after { transform: scaleX(1); }

.navbar-cta {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 20px;
  background: var(--lime); color: var(--ink);
  font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  border-radius: var(--radius);
  border: 1.5px solid var(--ink);
  flex-shrink: 0;
  transition: all 0.3s var(--ease);
}
.navbar-cta:hover { background: var(--ink); color: var(--lime); }

.hamburger { display: none; width: 32px; height: 32px; flex-direction: column; justify-content: center; gap: 5px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--ink); margin: 0 auto; transition: transform 0.3s, opacity 0.2s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ================================================================
   MOBILE MENU — slides from top
   ================================================================ */
.mobile-menu {
  position: fixed; inset: 0; z-index: 199;
  background: var(--ink-deep);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 24px;
  transform: translateY(-100%);
  transition: transform 0.55s var(--ease-expo);
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu a {
  font-family: var(--font-cond);
  font-size: 48px; font-weight: 900;
  text-transform: uppercase; color: #fff;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--lime); }
.mobile-close {
  position: absolute; top: 24px; right: var(--pad-x);
  font-size: 22px; color: rgba(255,255,255,0.45);
  transition: color 0.2s;
}
.mobile-close:hover { color: #fff; }

/* ================================================================
   HERO
   ================================================================ */
.hero {
  min-height: 100vh;
  padding: 120px var(--pad-x) 80px;
  background: var(--bone);
  display: flex; align-items: center;
}
.hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 500px;
  gap: 72px;
  align-items: center;
  width: 100%;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-2);
  margin-bottom: 28px;
}
.hero-eyebrow::before {
  content: "";
  width: 7px; height: 7px;
  background: var(--lime);
  flex-shrink: 0;
}
.hero-h1 {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(44px, 5.8vw, 80px);
  line-height: 1;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 28px;
}
/* lime highlight effect — word gets a lime background box */
.lime-word {
  position: relative;
  display: inline-block;
  z-index: 1;
  color: var(--ink);
}
.lime-word::before {
  content: "";
  position: absolute;
  left: -3%; right: -3%;
  top: 10%; bottom: 10%;
  background: var(--lime);
  z-index: -1;
  transform: skewX(-2deg);
}
.hero-sub {
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 480px;
  margin-bottom: 36px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* Hero visual — real image + spinning badge */
.hero-visual { position: relative; }
.hero-collage-img {
  width: 100%; height: auto;
  display: block; border-radius: var(--radius);
}
.hero-badge {
  position: absolute; bottom: 24px; right: 24px;
  width: 116px; height: 116px;
  display: flex; align-items: center; justify-content: center;
}
.badge-svg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  animation: spin 18s linear infinite;
}
.badge-svg text {
  font-family: var(--font-cond);
  font-size: 10px; font-weight: 900;
  letter-spacing: 2.5px; fill: rgba(251,250,247,0.85);
  text-transform: uppercase;
}
.badge-center {
  font-size: 24px; color: var(--lime);
  position: relative; z-index: 1;
  font-family: var(--font-cond); font-weight: 900;
}

/* ================================================================
   MARQUEE STRIP
   ================================================================ */
.marquee-strip {
  background: var(--ink-deep);
  padding: 14px 0;
  overflow: hidden;
}
.marquee-track {
  display: flex; width: max-content;
  animation: marquee-scroll 40s linear infinite;
}
.marquee-track span {
  font-family: var(--font-cond);
  font-size: 13px; font-weight: 800;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(251,250,247,0.4);
  white-space: nowrap; display: block;
}
.marquee-track em { color: var(--lime); font-style: normal; }

/* ================================================================
   STATS STRIP
   ================================================================ */
.stats-strip {
  background: var(--bone);
  border-bottom: 1px solid var(--line-2);
  padding: 0 var(--pad-x);
}
.stats-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  padding: 40px 32px;
  border-right: 1px solid var(--line-2);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(36px, 4vw, 56px);
  letter-spacing: -0.04em;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-number em { color: var(--lime); font-style: normal; }
.stat-label {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-3);
}

/* ================================================================
   CLIENTS
   ================================================================ */
.clients-sec {
  padding: 36px var(--pad-x);
  background: var(--bone);
  border-bottom: 1px solid var(--line-2);
}
.clients-inner { max-width: var(--max-w); margin: 0 auto; }
.clients-label {
  display: block;
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 20px;
}
.clients-list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap; gap: 24px;
}
.client {
  font-family: var(--display);
  font-weight: 900;
  font-size: 20px;
  letter-spacing: -0.02em;
  color: var(--ink);
  opacity: 0.28;
  transition: opacity 0.25s;
}
.client:hover { opacity: 0.8; }

/* ================================================================
   PROCESS
   ================================================================ */
.process-sec {
  padding: 110px var(--pad-x);
  background: var(--bone);
  border-top: 1px solid var(--line-2);
}
.process-inner { max-width: var(--max-w); margin: 0 auto; }
.process-head {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  margin-bottom: 64px;
  align-items: end;
}
.process-head h2 {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--ink);
}
.process-head h2 em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.01em;
}
.process-intro {
  font-family: var(--serif);
  font-size: 17px; line-height: 1.55;
  color: var(--ink-2);
  max-width: 420px;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line-2);
}
.process-card {
  background: var(--bone);
  padding: 40px 32px;
  display: flex; flex-direction: column;
}
.process-card:hover { background: #f0ede6; }
.process-card-num {
  font-family: var(--mono);
  font-size: 11px; font-weight: 600;
  color: var(--lime-dk);
  margin-bottom: 28px;
  letter-spacing: 0.05em;
}
.process-card-title {
  font-family: var(--display);
  font-weight: 900;
  font-size: 30px;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 6px;
}
.process-card-sub {
  font-family: var(--mono);
  font-size: 11px; letter-spacing: 0.06em;
  color: var(--ink-3);
  margin-bottom: 24px;
}
.process-card-body {
  font-family: var(--serif);
  font-size: 15px; line-height: 1.6;
  color: var(--ink);
  margin-bottom: 28px; flex: 1;
}
.process-roles {
  border-top: 1px solid var(--line-2);
  padding-top: 20px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.role-label {
  display: block;
  font-family: var(--mono);
  font-size: 9px; letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3); margin-bottom: 5px;
}
.role-text {
  font-size: 12px; line-height: 1.4; color: var(--ink);
}
.role-item.lime .role-text {
  background: var(--lime);
  padding: 2px 6px;
  display: inline;
}

/* ================================================================
   PHILOSOPHY
   ================================================================ */
.phil-sec {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 640px;
  border-top: 1px solid var(--line-2);
}
/* Left: real photo + rotated card overlay */
.phil-left {
  position: relative;
  overflow: hidden;
  background: var(--ink-deep);
}
.phil-left-photo {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.6;
}
.phil-left-inner {
  position: relative; z-index: 1;
  height: 100%;
  display: flex; align-items: center; justify-content: center;
  padding: 60px;
}
.phil-card {
  background: var(--bone);
  padding: 36px 28px;
  width: 280px;
  text-align: center;
  font-family: var(--display);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1.1;
  font-size: 21px;
  color: var(--ink);
  transform: rotate(-2.5deg);
  position: relative;
  box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}
.phil-card .phil-card-highlight {
  background: var(--lime);
  padding: 5px 10px;
  display: inline-block;
  margin-top: 14px;
  font-size: 19px;
}
.phil-card-tape {
  position: absolute;
  top: -13px; right: 28px;
  width: 56px; height: 20px;
  background: var(--lime);
  transform: rotate(7deg);
  opacity: 0.9;
}
/* Right: content */
.phil-right {
  background: var(--bone-2);
  padding: 80px 64px;
  display: flex; flex-direction: column; justify-content: center;
}
.phil-right h2 {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1; letter-spacing: -0.035em;
  color: var(--ink);
  margin-bottom: 48px;
}
.phil-right h2 em {
  font-family: var(--serif);
  font-style: italic; font-weight: 400;
  letter-spacing: -0.01em;
}
.phil-benefits {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px 36px;
}
.phil-card-item { display: flex; flex-direction: column; }
.phil-icon { width: 28px; height: 28px; margin-bottom: 14px; color: var(--ink); }
.phil-card-item h3 {
  font-family: var(--display);
  font-weight: 700; font-size: 13px;
  letter-spacing: 0.04em; text-transform: uppercase;
  margin-bottom: 8px; color: var(--ink);
}
.phil-card-item p {
  font-family: var(--serif);
  font-size: 15px; line-height: 1.55;
  color: var(--ink-2);
}

/* ================================================================
   WHY US — dark
   ================================================================ */
.whyus-sec {
  padding: 110px var(--pad-x);
  background: var(--ink-deep);
  color: var(--bone);
}
.whyus-inner { max-width: var(--max-w); margin: 0 auto; }
.whyus-sec h2 {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(42px, 5.5vw, 72px);
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--bone);
  margin-bottom: 18px;
  max-width: 860px;
}
.whyus-sec h2 em {
  font-family: var(--serif);
  font-style: italic; font-weight: 400;
  color: var(--lime); letter-spacing: -0.01em;
}
.whyus-sub {
  font-family: var(--serif);
  font-size: 19px;
  color: rgba(251,250,247,0.65);
  max-width: 660px;
  margin-bottom: 64px;
  line-height: 1.5;
}
.whyus-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 64px;
}
.whyus-col-label {
  font-family: var(--mono);
  font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(251,250,247,0.3);
  margin-bottom: 8px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line-dark);
}
.whyus-row {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 14px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line-dark);
}
.whyus-row .icon-no {
  font-family: var(--mono);
  font-size: 14px;
  color: rgba(251,250,247,0.25);
  font-weight: 500; margin-top: 2px;
}
.whyus-row .icon-yes {
  width: 14px; height: 14px;
  background: var(--lime);
  flex-shrink: 0; margin-top: 4px;
}
.whyus-row .row-title {
  font-family: var(--display);
  font-weight: 700; font-size: 13px;
  letter-spacing: 0.04em; text-transform: uppercase;
  margin-bottom: 6px;
}
.whyus-row.no-row .row-title {
  color: rgba(251,250,247,0.4);
  text-decoration: line-through;
  text-decoration-color: rgba(251,250,247,0.2);
}
.whyus-row p {
  font-family: var(--serif);
  font-size: 15px; line-height: 1.5;
}
.whyus-row.no-row p { color: rgba(251,250,247,0.4); }
.whyus-row.yes-row p { color: rgba(251,250,247,0.85); }

/* ================================================================
   WORKS
   ================================================================ */
.works-sec {
  padding: 110px var(--pad-x);
  background: var(--bone);
  border-top: 1px solid var(--line-2);
}
.works-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 64px;
  align-items: start;
}
.works-head h2 {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(38px, 4.8vw, 62px);
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: var(--ink);
  margin-bottom: 28px;
}
.works-head h2 em {
  font-family: var(--serif);
  font-style: italic; font-weight: 400;
  letter-spacing: -0.01em; display: block;
}
.works-meta {
  font-family: var(--serif);
  font-size: 15px; color: var(--ink-2);
  font-style: italic; line-height: 1.5;
  margin-bottom: 28px;
}
.works-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink);
  border-bottom: 1.5px solid var(--ink);
  padding-bottom: 4px;
  transition: gap 0.25s var(--ease), border-color 0.25s;
}
.works-link:hover { gap: 14px; border-bottom-color: var(--lime); }

.works-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.work-card {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  aspect-ratio: 3 / 4;
  display: flex; flex-direction: column; justify-content: flex-end;
  transition: transform 0.4s var(--ease);
}
.work-card:hover { transform: translateY(-5px); }
.work-card-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.work-card:hover .work-card-bg { transform: scale(1.04); }
.work-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.92) 0%, rgba(10,10,10,0.3) 50%, transparent 100%);
}
.work-card-num {
  position: absolute; top: 16px; left: 16px;
  background: var(--lime); color: var(--ink);
  font-family: var(--display); font-weight: 900;
  font-size: 13px; padding: 3px 9px;
  letter-spacing: -0.01em;
  z-index: 2;
}
.work-card-arrow {
  position: absolute; top: 14px; right: 14px;
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--lime); color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  font-size: 15px;
  transition: transform 0.3s var(--ease);
  z-index: 2;
}
.work-card:hover .work-card-arrow { transform: rotate(-45deg); }
.work-card-info {
  position: relative; z-index: 2;
  padding: 20px 18px;
}
.work-card-timing {
  font-family: var(--mono);
  font-size: 10px; font-weight: 600;
  color: var(--lime);
  letter-spacing: 0.06em; margin-bottom: 5px;
}
.work-card-cat {
  font-size: 10px; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: rgba(255,255,255,0.45);
  margin-bottom: 5px;
}
.work-card-name {
  font-family: var(--display); font-weight: 900;
  text-transform: uppercase;
  font-size: 24px; color: #fff; line-height: 1;
}

/* ================================================================
   CTA / CONTACTO
   ================================================================ */
.cta-sec {
  padding: 110px var(--pad-x);
  background: var(--bone);
  border-top: 1px solid var(--line-2);
}
.cta-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.cta-h h2 {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(38px, 4.8vw, 60px);
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--ink);
}
.cta-h h2 .underlined {
  position: relative; display: inline-block;
}
.cta-h h2 .underlined::after {
  content: "";
  position: absolute;
  left: -2%; right: -2%; bottom: -4px;
  height: 12px; background: var(--lime);
  z-index: -1; transform: skewX(-2deg);
}
.cta-secondary p {
  font-family: var(--serif);
  font-size: 17px; line-height: 1.55;
  color: var(--ink-2); margin-bottom: 28px;
}
.cta-info-label {
  font-family: var(--mono);
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--ink-3); margin-bottom: 5px;
}
.cta-info-value {
  font-family: var(--display);
  font-weight: 700; font-size: 16px;
  color: var(--ink); margin-bottom: 20px;
}
.cta-info-value a { transition: color 0.2s; }
.cta-info-value a:hover { color: var(--lime-dk); }
.cta-star-svg {
  display: block;
  width: 72px; height: 72px;
  margin-top: auto;
  align-self: end; justify-self: end;
}

/* ================================================================
   FOOTER — dark editorial signature
   ================================================================ */
.footer {
  background: var(--ink-deep);
  padding: 64px var(--pad-x) 28px;
}
.footer-inner { max-width: var(--max-w); margin: 0 auto; }
.footer-top {
  display: flex;
  align-items: flex-end; justify-content: space-between;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 28px;
}
.footer-logo {
  font-family: var(--font-cond);
  font-weight: 900; text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: clamp(60px, 8vw, 112px);
  line-height: 0.88;
  color: #fff; transition: color 0.25s;
}
.footer-logo:hover { color: rgba(255,255,255,0.5); }
.footer-logo .logo-star { color: var(--lime); }
.footer-tagline {
  font-family: var(--serif); font-style: italic;
  font-size: 16px; color: rgba(255,255,255,0.3);
  line-height: 1.6; text-align: right; max-width: 260px;
}
.footer-mid { margin-bottom: 28px; }
.footer-nav { display: flex; gap: 28px; flex-wrap: wrap; }
.footer-nav a {
  font-size: 13px; font-weight: 500;
  color: rgba(255,255,255,0.38);
  transition: color 0.2s;
}
.footer-nav a:hover { color: #fff; }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.05);
  gap: 20px; flex-wrap: wrap;
}
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.2); }
.footer-legal { display: flex; gap: 18px; }
.footer-legal a { font-size: 12px; color: rgba(255,255,255,0.2); transition: color 0.2s; }
.footer-legal a:hover { color: rgba(255,255,255,0.55); }
.footer-social { display: flex; gap: 16px; }
.footer-social a {
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.3); transition: color 0.2s;
}
.footer-social a:hover { color: var(--lime); }

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1100px) {
  .navbar-nav, .navbar-cta { display: none; }
  .hamburger { display: flex; }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; padding-top: 100px; }
  .hero-visual { max-width: 480px; }
  .process-head { grid-template-columns: 1fr; gap: 20px; }
  .process-grid { grid-template-columns: 1fr; gap: 1px; }
  .phil-sec { grid-template-columns: 1fr; }
  .phil-left { min-height: 400px; }
  .phil-right { padding: 60px var(--pad-x); }
  .whyus-grid { grid-template-columns: 1fr; gap: 0 0; }
  .works-inner { grid-template-columns: 1fr; gap: 36px; }
  .works-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-inner { grid-template-columns: 1fr; gap: 36px; }
  .cta-star-svg { display: none; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-top: 1px solid var(--line-2); }
  .stat-item:nth-child(4) { border-top: 1px solid var(--line-2); border-right: none; }
}
@media (max-width: 768px) {
  .hero { padding: 100px 24px 60px; min-height: auto; }
  .hero-h1 { font-size: clamp(40px, 12vw, 64px); }
  .hero-visual { display: none; }
  .works-grid { grid-template-columns: 1fr; }
  .phil-benefits { grid-template-columns: 1fr; gap: 24px; }
  .footer-top { flex-direction: column; align-items: flex-start; gap: 16px; }
  .footer-tagline { text-align: left; max-width: none; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 12px; }
  .clients-list { gap: 16px; }
  .client { font-size: 16px; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .process-roles { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
  .stats-inner { grid-template-columns: 1fr 1fr; }
}

/* ================================================================
   LEGACY — inner pages (services, work, about, contact)
   ================================================================ */
.section-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink-3); margin-bottom: 20px;
}
.section-tag .star { color: var(--lime); }
.link-arrow {
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink); display: inline-flex; align-items: center; gap: 8px;
  transition: gap 0.25s var(--ease);
}
.link-arrow:hover { gap: 14px; }
.tag {
  display: inline-block; padding: 5px 14px; border-radius: 100px;
  background: rgba(200,255,26,0.1); border: 1px solid rgba(200,255,26,0.25);
  font-size: 12px; font-weight: 600; color: var(--ink);
}
.tag-neutral { background: rgba(0,0,0,0.05); border: 1px solid var(--line-2); color: var(--ink-3); }
.lime-sq {
  display: inline-block; background: var(--lime);
  width: 0.18em; height: 0.18em; margin-left: 0.04em;
  position: relative; top: -0.14em;
}
