:root {
  --orange: #f97316;
  --orange-dark: #ea580c;
  --orange-glow: rgba(249, 115, 22, 0.1);
  --orange-subtle: rgba(249, 115, 22, 0.06);
  --gold: #fbbf24;
  --ink: #0a0908;
  --ink-surface: #11100e;
  --ink-card: #171613;
  --ink-hover: #1f1e1b;
  --ink-line: rgba(255, 255, 255, 0.04);
  --paper: #efebe2;
  --paper-card: #ffffff;
  --paper-line: rgba(0, 0, 0, 0.07);
  --white: #e5e0d6;
  --gray: #a39e94;
  --gray-mid: #7d786e;
  --gray-dim: #59554c;
  --gray-dark: #3a3730;
  --font-display: 'Syne', sans-serif;
  --font-body: 'Sora', sans-serif;
  --radius: 10px;
  --ease: cubic-bezier(0.65, 0, 0.35, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 17px; overflow-x: hidden; }
::selection { background: var(--orange); color: var(--ink); }

body {
  font-family: var(--font-body);
  background: var(--ink);
  color: var(--gray);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

.container { width: 100%; max-width: 1240px; margin: 0 auto; padding: 0 1.5rem; }
@media (min-width: 768px) { .container { padding: 0 2rem; } }
.container-wide { max-width: 1400px; }

/* Scroll progress */

/* Type */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.05; color: var(--white); }
h1 { font-size: clamp(2.8rem, 7.5vw, 5.5rem); font-weight: 800; letter-spacing: -0.04em; line-height: 0.95; }
h2 { font-size: clamp(2.2rem, 4.5vw, 3.3rem); font-weight: 700; letter-spacing: -0.03em; }
h3 { font-size: clamp(1.3rem, 2.2vw, 1.6rem); font-weight: 600; letter-spacing: -0.02em; }
h4 { font-size: 1.05rem; font-weight: 600; }

p { font-size: 1rem; line-height: 1.7; color: var(--gray); margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }
.orange { color: var(--orange); }
.gold { color: var(--gold); }
.text-dim { color: var(--gray-dim); }
.label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gray-dim);
  display: block;
  margin-bottom: 0.75rem;
}

/* Scroll progress bar */
.scroll-progress { position: fixed; top: 0; left: 0; right: 0; height: 3px; z-index: 999; background: transparent; }
.scroll-progress-bar { height: 100%; width: 0%; background: var(--orange); transition: width .05s linear; }

/* === NAV === */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 1.8rem 0;
  transition: transform .5s var(--ease), background .5s var(--ease), padding .5s var(--ease), border .5s var(--ease);
}
.navbar.scrolled {
  background: rgba(10, 9, 8, 0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--ink-line);
  padding: 1.2rem 0;
}
.navbar.hidden {
  transform: translateY(-100%);
}
.navbar .container { display: flex; align-items: center; justify-content: space-between; }
.nav-left { display: flex; align-items: center; z-index: 102; }
.logo { display: block; }
.logo img { height: 38px; width: auto; display: block; }
.nav-menu { display: flex; align-items: center; gap: 2.5rem; }
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1rem;
  color: rgba(229,224,214,0.65); /* readable on dark heroes at rest */
  position: relative;
  transition: color .3s var(--ease);
}
.navbar.scrolled .nav-links a { color: var(--gray-dim); }
.navbar.scrolled .nav-links a.active { color: var(--white); }
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 2px; background: var(--orange);
  transform: scaleX(0); transition: transform .3s var(--ease);
  transform-origin: left;
}
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-links a.active { color: var(--white); }
.btn-nav {
  background: transparent;
  border: 1.5px solid var(--orange);
  color: var(--orange);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  padding: 0.7rem 2rem;
  border-radius: 999px;
  cursor: pointer;
  transition: all .3s var(--ease);
}
.btn-nav:hover { background: var(--orange); color: var(--ink); }
.mobile-toggle { display: none; background: none; border: none; cursor: pointer; z-index: 102; padding: 4px; }
.hamburger { width: 24px; height: 18px; position: relative; }
.hamburger span { display: block; position: absolute; height: 2px; width: 100%; background: var(--orange); border-radius: 2px; left: 0; transition: all .3s var(--ease); }
.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 8px; }
.hamburger span:nth-child(3) { top: 16px; }
.mobile-toggle.active .hamburger span:nth-child(1) { top: 8px; transform: rotate(135deg); }
.mobile-toggle.active .hamburger span:nth-child(2) { opacity: 0; transform: translateX(-16px); }
.mobile-toggle.active .hamburger span:nth-child(3) { top: 8px; transform: rotate(-135deg); }
.mobile-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.6); z-index: 99; opacity: 0; visibility: hidden; transition: all .3s var(--ease); }
.mobile-overlay.active { opacity: 1; visibility: visible; }
@media (max-width: 768px) {
  .mobile-toggle { display: block; }
  .nav-menu { position: fixed; top: 0; right: -100%; width: 280px; height: 100vh; background: var(--ink-card); flex-direction: column; justify-content: center; padding: 2rem; transition: right .4s var(--ease); z-index: 101; border-left: 1px solid var(--ink-line); }
  .nav-menu.open { right: 0; }
  .nav-links { flex-direction: column; gap: 0; width: 100%; margin-bottom: 2rem; }
  .nav-links a { display: block; padding: 1rem 0; text-align: center; font-size: 1rem; border-bottom: 1px solid var(--ink-line); width: 100%; }
  .nav-links a::after { display: none; }
  .btn-nav { width: 100%; text-align: center; }
  body.menu-open { overflow: hidden; position: fixed; width: 100%; }
}

/* === HERO === */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #000;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.22;
  filter: saturate(0.6);
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,9,8,0.8) 0%, rgba(10,9,8,0.3) 60%, rgba(10,9,8,0.15) 100%);
}
.hero-glow {
  position: absolute;
  top: -30%; left: -10%;
  width: 60%; height: 80%;
  background: radial-gradient(ellipse at center, rgba(249,115,22,0.07) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}
.hero-content {
  position: relative; z-index: 2;
  padding: 6rem 0 4rem;
  max-width: 880px;
}
.hero-content h1 { margin-bottom: 1.25rem; font-size: clamp(2.6rem, 5vw, 4rem); }
.hero-content .subtitle {
  font-size: 1.1rem;
  color: var(--gray);
  max-width: 540px;
  margin-bottom: 2.25rem;
  line-height: 1.6;
}
.hero-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.hero-stat {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 0.92rem;
  color: var(--gray-dim);
  margin-top: 3rem;
}
.hero-stat strong { color: var(--orange); font-weight: 700; font-size: 0.9rem; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.92rem;
  padding: 0.7rem 1.5rem;
  border-radius: 999px;
  cursor: pointer;
  transition: all .3s var(--ease-out);
  border: none;
  text-decoration: none;
  white-space: nowrap;
}
.btn svg {
  flex-shrink: 0;
  display: block;
  /* Negative margin cancels any whitespace text node gap */
  margin-left: -0.1rem;
}
.btn-orange { background: var(--orange); color: var(--ink); }
.btn-orange:hover { background: var(--orange-dark); color:#fff; transform: translateY(-2px); box-shadow: 0 8px 30px rgba(249, 115, 22, 0.15); }
.btn-ghost { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.12); }
.btn-ghost:hover { border-color: var(--orange); color: var(--orange); }
.btn-ghost-white {
  background: rgba(255,255,255,0.12);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(4px);
}
.btn-ghost-white:hover {
  background: rgba(255,255,255,0.22);
  border-color: rgba(255,255,255,0.45);
  color: #fff;
  transform: translateY(-2px);
}
/* === MANIFESTO === */
.manifesto {
  padding: 8rem 0;
  background: var(--ink-surface);
  position: relative;
  overflow: hidden;
}
.manifesto::before { content: ''; position: absolute; top: 0; left: 5%; right: 5%; height: 1px; background: linear-gradient(90deg, transparent, rgba(249, 115, 22, 0.06), transparent); }

/* Ribbon SVG */
.manifesto-ribbon {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}
.ribbon-path {
  opacity: 0.055;
  animation: ribbonDrift 18s ease-in-out infinite alternate;
  transform-origin: center;
}
.ribbon-path--thin {
  opacity: 0.03;
  animation-duration: 24s;
  animation-delay: -6s;
}
/* On light backgrounds, the ribbon reads a bit more */
.bg-white .ribbon-path { opacity: 0.08; }
.bg-white .ribbon-path--thin { opacity: 0.04; }
@keyframes ribbonDrift {
  0%   { transform: translateY(0px) scaleX(1); }
  33%  { transform: translateY(-14px) scaleX(1.01); }
  66%  { transform: translateY(8px) scaleX(0.99); }
  100% { transform: translateY(-20px) scaleX(1.015); }
}

/* Content sits above ribbon */
.manifesto .container { position: relative; z-index: 1; }
.manifesto-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 2rem; align-items: start; }
@media (max-width: 800px) { .manifesto-grid { grid-template-columns: 1fr; gap: 3rem; } }
.manifesto-card { position: relative; }
.manifesto-card .card-num { font-family: var(--font-display); font-size: 0.67rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--orange); margin-bottom: 1rem; display: block; }
.manifesto-card blockquote { font-family: var(--font-display); font-size: clamp(1.2rem, 2vw, 1.5rem); font-weight: 600; line-height: 1.4; color: var(--white); letter-spacing: -0.02em; border: none; padding: 0; margin: 0; }
.manifesto-card blockquote em { color: var(--orange); font-style: normal; }
.manifesto-card p { font-size: 0.9rem; color: var(--gray-dim); margin-top: 0.75rem; line-height: 1.6; }

/* === SECTION === */
.section { padding: 6rem 0; }
.section-dark { background: var(--ink); }
.section-light { background: var(--paper); }
.section-light h1, .section-light h2, .section-light h3, .section-light h4 { color: var(--ink); }
.section-light p { color: var(--gray-dark); }
.section-head { max-width: 560px; margin-bottom: 3.5rem; }
.section-head h2 { margin-bottom: 0.5rem; }
.section-head p { font-size: 1rem; margin-bottom: 0; }

/* === SERVICES: Magazine spreads === */
.services-spreads { display: flex; flex-direction: column; gap: 6rem; }
@media (max-width: 768px) { .services-spreads { gap: 3rem; } }

.spread {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 70vh;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--ink-card);
}
.section-light .spread { background: var(--paper-card); }
@media (max-width: 900px) { .spread { grid-template-columns: 1fr; min-height: auto; } }

.spread-image {
  position: relative;
  overflow: hidden;
  min-height: 400px;
}
.spread-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease-out);
}
.spread:hover .spread-image img { transform: scale(1.03); }
.spread-image .img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(249,115,22,0.08), transparent);
}

.spread-content {
  padding: 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 900px) { .spread-content { padding: 2.5rem; } }

.spread-content .spread-num {
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
  opacity: 0.08;
  margin-bottom: -1.5rem;
}
.spread-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.section-light .spread-content h3 { color: var(--ink); }
.spread-content p {
  font-size: 0.95rem;
  color: var(--gray-dim);
  margin-bottom: 1rem;
  max-width: 400px;
}
.section-light .spread-content p { color: var(--gray-dim); }
.spread-content .spread-link {
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: auto;
}
.spread-content .spread-link:hover { gap: 0.6rem; }

@media (min-width: 901px) {
  .spread-alt .spread-image { order: 2; }
  .spread-alt .spread-content { order: 1; }
}

/* === STAGES: Horizontal list with images === */
.stages-list { display: flex; flex-direction: column; gap: 1px; }
.section-dark .stages-list { background: rgba(255,255,255,0.03); }
.section-light .stages-list { background: rgba(0,0,0,0.05); }
.stages-list { border-radius: var(--radius); overflow: hidden; }

.stage-row {
  display: grid;
  grid-template-columns: 200px 1fr auto;
  gap: 2rem;
  align-items: center;
  background: var(--ink-card);
  padding: 2rem 2.5rem;
}
.section-light .stage-row { background: var(--paper-card); }
.stage-row:hover { background: var(--ink-hover); }
.section-light .stage-row:hover { background: #f4f0e6; }
.stage-row .stage-tag { font-family: var(--font-display); font-size: 0.67rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--orange); }
.stage-row .stage-body h3 { font-size: 1.15rem; margin-bottom: 0.2rem; }
.section-light .stage-row .stage-body h3 { color: var(--ink); }
.stage-row .stage-body p { font-size: 0.92rem; color: var(--gray-dim); margin-bottom: 0; }
.stage-row .stage-btn {
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.45rem 1rem;
  border: 1.5px solid var(--orange);
  border-radius: 999px;
  transition: all .3s var(--ease);
  white-space: nowrap;
}
.stage-row .stage-btn:hover { background: var(--orange); color: var(--ink); gap: 0.6rem; }
.stage-row.featured { position: relative; }
.stage-row.featured .stage-tag::after { content: ' — Popular'; color: var(--gold); font-weight: 800; }
@media (max-width: 800px) {
  .stage-row { grid-template-columns: 1fr; gap: 0.5rem; padding: 1.5rem 2rem; }
  .stage-row .stage-btn { white-space: normal; align-self: flex-start; }
}

/* === WORK: Visual tiles === */
.work-featured {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 1px;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 1px;
}
.section-dark .work-featured { background: rgba(255,255,255,0.03); }
.section-light .work-featured { background: rgba(0,0,0,0.05); }
@media (max-width: 900px) { .work-featured { grid-template-columns: 1fr; } }

.work-item {
  position: relative;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2.5rem;
  overflow: hidden;
  text-decoration: none;
}
.work-item .work-bg {
  position: absolute; inset: 0;
}
.work-item .work-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease-out);
}
.work-item:hover .work-bg img { transform: scale(1.05); }
.work-item .work-bg-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,9,8,0.1) 0%, rgba(10,9,8,0.7) 50%, rgba(10,9,8,0.85) 100%);
}
.work-item > * { position: relative; z-index: 2; }
.work-tags { display: flex; gap: 0.4rem; margin-bottom: 0.5rem; flex-wrap: wrap; }
/* Tags — orange pill */
.work-tag {
  font-family: var(--font-display);
  font-size: 0.58rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: var(--orange);
  color: #fff;
  padding: 0.22rem 0.65rem;
  border-radius: 999px;
}
.work-item h3 { font-size: 1.1rem; color: var(--white); margin-bottom: 0.4rem; line-height: 1.35; }
.work-item p { font-size: 0.875rem; color: rgba(255,255,255,0.6); margin-bottom: 0.75rem; line-height: 1.65; }
.work-metric { margin-top: auto; display: flex; align-items: baseline; gap: 0.4rem; }
.work-metric strong { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: var(--orange); }
.work-metric span { font-size: 0.82rem; color: rgba(255,255,255,0.4); }

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  border-radius: var(--radius);
  overflow: hidden;
}
.section-dark .work-grid { background: rgba(255,255,255,0.04); }
.section-light .work-grid { background: rgba(0,0,0,0.05); }

/* Cards flex column so metric sticks to bottom — all white */
.work-grid .work-item {
  min-height: 280px;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: #fff;
}

/* All cards white: override dark section background */
.section-dark .work-grid .work-item,
.section-dark .work-grid .work-item:nth-child(odd),
.section-dark .work-grid .work-item:nth-child(even) {
  background: #fff;
}
.section-dark .work-grid .work-item h3 { color: var(--ink); }
.section-dark .work-grid .work-item p { color: var(--gray-dark); }

/* Remove the old alternating rules */
.work-grid .work-item:nth-child(even) { background: #fff; }
.work-grid .work-item:nth-child(even) h3 { color: var(--ink); }
.work-grid .work-item:nth-child(even) p { color: var(--gray-dark); }
.work-grid .work-item:nth-child(even) .work-metric strong { color: var(--orange); }
.work-grid .work-item:nth-child(even) .work-metric span { color: var(--gray-dim); }
.work-grid .work-item:nth-child(even):hover { background: #f7f3ee; }
.work-grid .work-item:hover { background: #f7f3ee; }
.section-light .work-grid .work-item { background: #fff; }
.section-light .work-grid .work-item:hover { background: #f4f0e6; }
.work-grid .work-item h3 { font-size: 1rem; color: var(--ink); }
.work-grid .work-item p { color: var(--gray-dark); }
.work-grid .work-metric strong { color: var(--orange); }
.work-grid .work-metric span { color: var(--gray-dim); }
@media (max-width: 900px) { .work-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .work-grid { grid-template-columns: 1fr; } }

/* === WHY: Alternating === */
.why-list { display: flex; flex-direction: column; gap: 1px; }
.section-dark .why-list { background: rgba(255,255,255,0.03); }
.section-light .why-list { background: rgba(0,0,0,0.05); }
.why-list { border-radius: var(--radius); overflow: hidden; }
.why-item {
  display: grid;
  grid-template-columns: 0.5fr 2fr;
  gap: 2rem;
  align-items: center;
  background: var(--ink-card);
  padding: 2rem 2.5rem;
}
.section-light .why-item { background: var(--paper-card); }
.why-item:hover { background: var(--ink-hover); }
.section-light .why-item:hover { background: #f4f0e6; }
.why-item .why-num { font-family: var(--font-display); font-size: 2.5rem; font-weight: 800; color: var(--orange); opacity: 0.12; line-height: 1; }
.why-item h3 { font-size: 1rem; margin-bottom: 0.2rem; }
.section-light .why-item h3 { color: var(--ink); }
.why-item p { font-size: 0.92rem; color: var(--gray-dim); margin-bottom: 0; }
.why-highlight {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 0.5fr 2fr;
  gap: 2rem;
  align-items: center;
  background: linear-gradient(135deg, rgba(249,115,22,0.04), transparent);
  padding: 2rem 2.5rem;
}
.section-light .why-highlight { background: linear-gradient(135deg, rgba(249,115,22,0.06), transparent); }
.why-highlight .big-num { font-family: var(--font-display); font-size: 2.5rem; font-weight: 800; color: var(--orange); line-height: 1; }
.why-highlight h3 { font-size: 1rem; margin-bottom: 0.2rem; }
.why-highlight p { font-size: 0.92rem; color: var(--gray-dim); margin-bottom: 0; }
@media (max-width: 768px) {
  .why-item, .why-highlight { grid-template-columns: 1fr; gap: 0.5rem; padding: 1.5rem 2rem; }
  .why-item .why-num, .why-highlight .big-num { font-size: 1.5rem; opacity: 0.25; }
}

/* === CTA === */
.cta-section {
  padding: 7rem 0;
  position: relative;
  overflow: hidden;
}
.cta-section::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 50%, rgba(249,115,22,0.03), transparent 60%); }

/* Ribbon */
.cta-ribbon {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}
.cta-ribbon path {
  opacity: 0.07;
  animation: ribbonSlide 22s ease-in-out infinite alternate;
  transform-origin: center;
}
.cta-ribbon path:nth-child(2) {
  opacity: 0.04;
  animation-duration: 28s;
  animation-delay: -10s;
}
.cta-ribbon path:nth-child(3) {
  opacity: 0.06;
  animation-duration: 16s;
  animation-delay: -5s;
  transform-origin: 1300px 510px;
}
@keyframes ribbonSlide {
  0%   { transform: translate(0, 0); }
  50%  { transform: translate(-12px, 8px); }
  100% { transform: translate(8px, -16px); }
}

.cta-inner { position: relative; z-index: 2; text-align: center; max-width: 560px; margin: 0 auto; }
.cta-inner h2 { margin-bottom: 0.75rem; }
.cta-inner p { margin-bottom: 1.5rem; }
.cta-inner .btn + .btn,
.cta-inner .btn + .btn-ghost-dark { margin-left: 0.75rem; }
@media (max-width: 480px) {
  .cta-inner .btn,
  .cta-inner .btn-ghost-dark { width: 100%; }
  .cta-inner .btn + .btn,
  .cta-inner .btn + .btn-ghost-dark { margin-left: 0; margin-top: 0.5rem; }
}
@media (max-width: 360px) {
  .btn { white-space: normal; font-size: 0.82rem; padding: 0.6rem 1rem; }
}

/* Ghost button for light backgrounds */
.btn-ghost-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.92rem;
  padding: 0.7rem 1.7rem;
  border-radius: 999px;
  cursor: pointer;
  transition: all .3s var(--ease-out);
  border: 1.5px solid rgba(10,9,8,0.2);
  background: transparent;
  color: var(--ink);
  text-decoration: none;
}
.btn-ghost-dark:hover {
  border-color: var(--orange);
  color: var(--orange);
  transform: translateY(-2px);
}

/* === FOOTER === */
.footer { padding: 4rem 0 2rem; border-top: 1px solid var(--ink-line); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-logo { display: block; height: 40px; width: auto; max-width: 160px; margin-bottom: 0.75rem; object-fit: contain; }
.footer-brand p { font-size: 0.875rem; color: var(--gray-dim); }
.footer-col h4 { font-family: var(--font-display); font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--gray); margin-bottom: 1rem; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col ul li { margin-bottom: 0.5rem; }
.footer-col ul li a { font-size: 0.875rem; color: var(--gray-dim); }
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 1.5rem; border-top: 1px solid var(--ink-line); font-size: 0.8125rem; color: var(--gray-dark); }
.footer-socials { display: flex; gap: 0.75rem; }
.footer-socials a { display:flex; align-items:center; justify-content:center; width:36px; height:36px; border-radius:50%; background:rgba(255,255,255,0.04); border:1px solid rgba(255,255,255,0.06); color:var(--gray-dim); transition:all .25s var(--ease); text-decoration:none; }
.footer-socials a:hover { background:rgba(249,115,22,0.1); border-color:rgba(249,115,22,0.25); color:var(--orange); transform:translateY(-2px); }
.footer-socials a svg { width:16px; height:16px; display:block; }
@media (max-width: 480px) { .footer-bottom { flex-direction: column; gap: 0.75rem; text-align: center; } }

/* === PROCESS === */
.process-strip { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1px; }
.section-dark .process-strip { background: rgba(255,255,255,0.03); }
.section-light .process-strip { background: rgba(0,0,0,0.05); }
.process-strip { border-radius: var(--radius); overflow: hidden; }
@media (max-width: 900px) { .process-strip { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px) { .process-strip { grid-template-columns: 1fr; } }
.process-step { background: var(--ink-card); padding: 2rem; }
.section-light .process-step { background: var(--paper-card); }
.process-step:hover { background: var(--ink-hover); }
.section-light .process-step:hover { background: #f4f0e6; }
.process-step .step-num { font-family: var(--font-display); font-size: 1.5rem; font-weight: 800; color: var(--orange); opacity: 0.25; margin-bottom: 1rem; display: block; }
.process-step h4 { font-size: 0.95rem; margin-bottom: 0.5rem; }
.section-light .process-step h4 { color: var(--ink); }
.process-step p { font-size: 0.88rem; color: var(--gray-dim); }

/* === FAQ === */
.faq-list { max-width: 640px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--ink-line); padding: 1.3rem 0; }
.section-light .faq-item { border-bottom: 1px solid var(--paper-line); }
.faq-q { width: 100%; display: flex; justify-content: space-between; align-items: center; background: none; border: none; cursor: pointer; font-family: var(--font-display); font-size: 0.95rem; font-weight: 600; color: var(--white); text-align: left; padding: 0; }
.section-light .faq-q { color: var(--ink); }
.faq-q:hover { color: var(--orange); }
.faq-q svg { width: 16px; height: 16px; transition: transform .3s var(--ease); color: var(--orange); flex-shrink: 0; }
.faq-item.active .faq-q svg { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.faq-a p { padding-top: 0.75rem; font-size: 0.875rem; color: var(--gray); margin-bottom: 0; }
.section-light .faq-a p { color: var(--gray-dark); }

/* === CONTACT === */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 3rem; align-items: start; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-info h2 { font-size: 1.35rem; margin-bottom: 0.25rem; }
.contact-steps { list-style: none; padding: 0; margin: 1rem 0 2rem; }
.contact-steps li { font-size: 0.92rem; color: var(--gray); padding: 0.5rem 0 0.5rem 1.5rem; position: relative; border-bottom: 1px solid var(--ink-line); }
.section-light .contact-steps li { border-bottom: 1px solid var(--paper-line); color: var(--gray-dark); }
.contact-steps li::before { content: '→'; position: absolute; left: 0; color: var(--orange); font-weight: 700; }
.contact-steps li strong { color: var(--white); }
.section-light .contact-steps li strong { color: var(--ink); }
.contact-methods { display: flex; flex-direction: column; gap: 0.75rem; padding: 1.25rem; background: var(--ink-card); border: 1px solid var(--ink-line); border-radius: var(--radius); }
.section-light .contact-methods { background: var(--paper-card); border: 1px solid var(--paper-line); }
.contact-method { display: flex; align-items: center; gap: 1rem; }
.contact-method .method-label { font-family: var(--font-display); font-size: 0.62rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--gray-dim); min-width: 60px; }
.contact-method a, .contact-method span { font-size: 0.92rem; color: var(--gray); }
.section-light .contact-method a, .section-light .contact-method span { color: var(--gray-dark); }
.contact-method a:hover { color: var(--orange); }
.social-links { display: flex; gap: 0.75rem; }
.contact-form { background: var(--ink-card); border: 1px solid var(--ink-line); border-radius: var(--radius); padding: 2rem; display: flex; flex-direction: column; gap: 1rem; }
.section-light .contact-form { background: var(--paper-card); border: 1px solid var(--paper-line); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.form-group { display: flex; flex-direction: column; gap: 0.3rem; }
.form-group label { font-family: var(--font-display); font-size: 0.62rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--gray-dim); }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 0.65rem 0.85rem;
  background: rgba(0,0,0,0.2); border: 1px solid var(--ink-line); border-radius: 5px;
  font-family: var(--font-body); font-size: 0.92rem; color: var(--white); transition: all .3s var(--ease);
}
.section-light .form-group input, .section-light .form-group select, .section-light .form-group textarea { background: rgba(0,0,0,0.03); border: 1px solid var(--paper-line); color: var(--ink); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--orange); }
.form-group select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%23f97316' stroke-width='1.5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 0.9rem center; padding-right: 2rem; }
.section-light .form-group select { background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%233a3730' stroke-width='1.5'/%3E%3C/svg%3E"); }
.form-group select option { background: var(--ink-card); color: var(--white); }

/* === CLIENT LOGOS === */
/* === TRUSTED BY === */
.tb-head { text-align: center; margin-bottom: 2.5rem; }
.tb-head .label { display: block; margin-bottom: 0.25rem; }
.tb-head h2 { margin-bottom: 0; }
.tb-logos { display: flex; align-items: center; justify-content: center; }
.tb-logo { flex: 1; display: flex; align-items: center; justify-content: center; padding: 2rem 1.5rem; opacity: 1; position: relative; min-width: 0; overflow: hidden; }
.tb-logo + .tb-logo::before { content: ''; position: absolute; left: 0; top: 25%; bottom: 25%; width: 1px; background: rgba(255,255,255,0.06); }
.tb-logo img {
  max-height: 52px;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}
@media (max-width: 640px) { .tb-logos { flex-wrap: wrap; gap: 0.5rem; } .tb-logo { flex: 0 0 50%; padding: 1.25rem; } .tb-logo:nth-child(2)::before, .tb-logo:nth-child(4)::before { display: none; } .tb-logo img { height: 40px; } }

/* === STUDIO DESK (services — handcrafted offset grid) === */
.desk-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  position: relative;
}
@media (max-width: 768px) { .desk-grid { grid-template-columns: 1fr; gap: 0.75rem; } }

.desk-card {
  position: relative;
  padding: 2rem 1.75rem;
  background: var(--ink-card);
  overflow: hidden;
  transition: transform .4s var(--ease-out), box-shadow .4s var(--ease-out);
}
.section-light .desk-card { background: var(--paper-card); }

/* Each card has a unique offset — like prints placed by hand */
.desk-card:nth-child(1) { border-radius: 10px 10px 10px 2px; transform: translate(-4px, -4px); }
.desk-card:nth-child(1):hover { transform: translate(-6px, -6px); }
.desk-card:nth-child(2) { border-radius: 10px 2px 10px 10px; transform: translate(4px, -3px); }
.desk-card:nth-child(2):hover { transform: translate(6px, -5px); }
.desk-card:nth-child(3) { border-radius: 2px 10px 10px 10px; transform: translate(-3px, 4px); }
.desk-card:nth-child(3):hover { transform: translate(-5px, 6px); }
.desk-card:nth-child(4) { border-radius: 10px 10px 2px 10px; transform: translate(3px, 3px); }
.desk-card:nth-child(4):hover { transform: translate(5px, 5px); }

/* Each card gets a different accent placement */
.desk-card:nth-child(1)::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 2px; background: linear-gradient(90deg, var(--orange), transparent);
}
.desk-card:nth-child(2)::before {
  content: ''; position: absolute; top: 0; right: 0; bottom: 0;
  width: 2px; background: linear-gradient(180deg, var(--orange), transparent);
}
.desk-card:nth-child(3)::before {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px; background: linear-gradient(90deg, transparent, var(--orange));
}
.desk-card:nth-child(4)::before {
  content: ''; position: absolute; top: 0; left: 0; bottom: 0;
  width: 2px; background: linear-gradient(180deg, transparent, var(--orange));
}

/* Each number treated differently */
.desk-card .d-num {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
  display: block;
}
.desk-card:nth-child(1) .d-num { font-size: 4.5rem; opacity: 0.04; position: absolute; bottom: 0.5rem; right: 0.75rem; }
.desk-card:nth-child(2) .d-num { font-size: 0.65rem; letter-spacing: 0.08em; text-transform: uppercase; opacity: 0.5; margin-bottom: 0.5rem; }
.desk-card:nth-child(3) .d-num { font-size: 3rem; opacity: 0.07; display: inline; margin-right: 0.4rem; vertical-align: middle; }
.desk-card:nth-child(4) .d-num { font-size: 0.6rem; letter-spacing: 0.1em; text-transform: uppercase; display: inline-flex; align-items: center; gap: 0.3rem; margin-bottom: 0.6rem; }
.desk-card:nth-child(4) .d-num::before { content: '→'; font-size: 0.7rem; }

.desk-card h3 {
  font-weight: 700;
  margin-bottom: 0.3rem;
  color: var(--white);
}
.section-light .desk-card h3 { color: var(--ink); }
.desk-card:nth-child(1) h3 { font-size: 1.3rem; }
.desk-card:nth-child(2) h3 { font-size: 1.1rem; }
.desk-card:nth-child(3) h3 { font-size: 1.2rem; }
.desk-card:nth-child(4) h3 { font-size: 1rem; }

.desk-card .d-desc {
  font-size: 0.82rem;
  color: var(--gray-dim);
  line-height: 1.55;
  margin-bottom: 0.6rem;
}
.section-light .desk-card .d-desc { color: var(--gray-dim); }

.desk-card .d-cta {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  transition: gap .3s var(--ease);
}
.desk-card .d-cta:hover { gap: 0.5rem; }

/* Subtle shadow on each card like physical paper */
.desk-card { box-shadow: 4px 4px 0 rgba(0,0,0,0.04); }
.section-light .desk-card { box-shadow: 4px 4px 0 rgba(0,0,0,0.02); }
.desk-card:hover { box-shadow: 6px 6px 0 rgba(249,115,22,0.04); }

/* === RAW DECONSTRUCTED (services section redesign v4) === */
.raw-list { display: flex; flex-direction: column; gap: 3rem; }

.raw-item {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 2rem;
  align-items: start;
  position: relative;
}

.raw-item .raw-num {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 800;
  line-height: 0.85;
  color: var(--orange);
  opacity: 0.06;
  justify-self: start;
}

.raw-item .raw-body { padding-top: 0.3rem; }

.raw-item .raw-body h3 {
  font-size: clamp(1.3rem, 2.2vw, 1.7rem);
  font-weight: 700;
  margin-bottom: 0.3rem;
  color: var(--white);
  letter-spacing: -0.02em;
}
.section-light .raw-item .raw-body h3 { color: var(--ink); }

.raw-item .raw-body h3 .raw-orange { color: var(--orange); }

.raw-item .raw-body .raw-desc {
  font-size: 0.85rem;
  color: var(--gray-dim);
  line-height: 1.6;
  margin-bottom: 0.5rem;
  max-width: 380px;
}
.section-light .raw-item .raw-body .raw-desc { color: var(--gray-dim); }

.raw-item .raw-body .raw-cta {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: gap .3s var(--ease);
}
.raw-item .raw-body .raw-cta:hover { gap: 0.6rem; }

.raw-item .raw-meta {
  font-family: var(--font-display);
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray-dark);
  justify-self: end;
  align-self: start;
  padding-top: 0.5rem;
  white-space: nowrap;
}

/* Alternating alignment */
.raw-item:nth-child(even) {
  grid-template-columns: 1fr 2fr 1fr;
}
.raw-item:nth-child(even) .raw-num { order: 3; justify-self: end; }
.raw-item:nth-child(even) .raw-body { order: 2; }
.raw-item:nth-child(even) .raw-body .raw-desc { margin-left: auto; }
.raw-item:nth-child(even) .raw-meta { order: 1; }

/* Accent line between items */
.raw-item::after {
  content: '';
  position: absolute;
  bottom: -1.5rem;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(249,115,22,0.04), transparent 60%);
}
.raw-item:last-child::after { display: none; }

@media (max-width: 768px) {
  .raw-list { gap: 2rem; }
  .raw-item { grid-template-columns: 1fr; gap: 0.3rem; }
  .raw-item:nth-child(even) .raw-num { order: 0; justify-self: start; }
  .raw-item:nth-child(even) .raw-body { order: 0; }
  .raw-item:nth-child(even) .raw-body .raw-desc { margin-left: 0; }
  .raw-item:nth-child(even) .raw-meta { order: 0; justify-self: start; }
  .raw-item .raw-num { display: none; }
  .raw-item .raw-meta { display: none; }
  .raw-item::after { bottom: -1rem; }
}

/* === ORBIT LAYOUT (services section redesign v3) === */
.orbit-wrap {
  position: relative;
}
.orbit-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr 1fr;
  grid-template-rows: auto 1fr auto;
  gap: 1rem;
  align-items: center;
  position: relative;
}

.orbit-center {
  grid-column: 2;
  grid-row: 2;
  justify-self: center;
  align-self: center;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  border: 2px solid rgba(249,115,22,0.15);
  background: radial-gradient(circle at 40% 40%, rgba(249,115,22,0.04), transparent 70%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1rem;
  z-index: 2;
  position: relative;
}
.section-light .orbit-center { background: radial-gradient(circle at 40% 40%, rgba(249,115,22,0.06), transparent 70%); }
.orbit-center::after {
  content: '';
  position: absolute; inset: -8px;
  border-radius: 50%;
  border: 1px dashed rgba(249,115,22,0.08);
}
.orbit-center .oc-label {
  font-family: var(--font-display);
  font-size: 0.55rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--orange);
  display: block;
  margin-bottom: 0.15rem;
}
.orbit-center .oc-mark {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}
.section-light .orbit-center .oc-mark { color: var(--ink); }

.orbit-card {
  position: relative;
  padding: 2rem 2rem 2rem 1.5rem;
  background: var(--ink-card);
  border-radius: var(--radius);
  overflow: hidden;
  transition: background .3s var(--ease), box-shadow .3s var(--ease);
}
.section-light .orbit-card { background: var(--paper-card); }
.orbit-card:hover { background: var(--ink-hover); }
.section-light .orbit-card:hover { background: #f4f0e6; }

.orbit-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(180deg, var(--orange), transparent);
  opacity: 0.2;
  border-radius: 0 3px 3px 0;
}

.orbit-card .oc-dot {
  position: absolute;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--orange);
  opacity: 0.2;
  transition: opacity .3s var(--ease);
}
.orbit-card:hover .oc-dot { opacity: 0.6; }

.orbit-card:nth-child(1) { grid-column: 2; grid-row: 1; }
.orbit-card:nth-child(1) .oc-dot { bottom: -4px; left: 50%; transform: translateX(-50%); }
.orbit-card:nth-child(2) { grid-column: 3; grid-row: 2; }
.orbit-card:nth-child(2) .oc-dot { left: -4px; top: 50%; transform: translateY(-50%); }
.orbit-card:nth-child(3) { grid-column: 2; grid-row: 3; }
.orbit-card:nth-child(3) .oc-dot { top: -4px; left: 50%; transform: translateX(-50%); }
.orbit-card:nth-child(4) { grid-column: 1; grid-row: 2; }
.orbit-card:nth-child(4) .oc-dot { right: -4px; top: 50%; transform: translateY(-50%); }

.orbit-card .oc-num {
  font-family: var(--font-display);
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--orange);
  display: block;
  margin-bottom: 0.3rem;
}
.orbit-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
  color: var(--white);
}
.section-light .orbit-card h3 { color: var(--ink); }
.orbit-card .oc-desc {
  font-size: 0.82rem;
  color: var(--gray-dim);
  line-height: 1.5;
  margin-bottom: 0.75rem;
}
.section-light .orbit-card .oc-desc { color: var(--gray-dim); }
.orbit-card .oc-link {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  transition: gap .3s var(--ease);
}
.orbit-card .oc-link:hover { gap: 0.5rem; }

/* Connecting lines from center to cards */
.orbit-line {
  position: absolute;
  z-index: 1;
  pointer-events: none;
}
.orbit-line svg { width: 100%; height: 100%; overflow: visible; }
.orbit-line svg line { stroke: rgba(249,115,22,0.06); stroke-width: 1; stroke-dasharray: 4 3; }

@media (max-width: 860px) {
  .orbit-grid { display: flex; flex-direction: column; gap: 1px; }
  .section-dark .orbit-grid { background: rgba(255,255,255,0.03); }
  .section-light .orbit-grid { background: rgba(0,0,0,0.05); }
  .orbit-grid { border-radius: var(--radius); overflow: hidden; }
  .orbit-center { display: none; }
  .orbit-card { border-radius: 0; padding: 1.5rem; }
  .orbit-card::before { display: none; }
  .orbit-card .oc-dot { display: none; }
  .orbit-line { display: none; }
}

/* === TOC LIST (services section redesign v2) === */
.toc-list { display: flex; flex-direction: column; gap: 1px; }
.section-dark .toc-list { background: rgba(255,255,255,0.03); }
.section-light .toc-list { background: rgba(0,0,0,0.05); }
.toc-list { border-radius: var(--radius); overflow: hidden; }

.toc-item {
  display: grid;
  grid-template-columns: 5rem 1fr;
  gap: 2rem;
  align-items: start;
  background: var(--ink-card);
  padding: 2.5rem;
  transition: background .3s var(--ease);
}
.section-light .toc-item { background: var(--paper-card); }
.toc-item:hover { background: var(--ink-hover); }
.section-light .toc-item:hover { background: #f4f0e6; }

.toc-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 0.85;
  color: var(--orange);
  opacity: 0.08;
}

.toc-body { display: flex; flex-direction: column; gap: 0.3rem; }

.toc-body .toc-statement {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--white);
  letter-spacing: -0.01em;
}
.section-light .toc-body .toc-statement { color: var(--ink); }
.toc-body .toc-statement em {
  color: var(--orange);
  font-style: normal;
}

.toc-body .toc-desc {
  font-size: 0.85rem;
  color: var(--gray-dim);
  margin: 0.2rem 0 0.5rem;
}
.section-light .toc-body .toc-desc { color: var(--gray-dim); }

.toc-ref {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: gap .3s var(--ease);
}
.toc-ref:hover { gap: 0.6rem; }

@media (max-width: 768px) {
  .toc-item { grid-template-columns: 3rem 1fr; gap: 1rem; padding: 1.5rem; }
  .toc-num { font-size: 2.5rem; }
}

/* === BENTO GRID (services section redesign) === */
.bento-grid { display: flex; flex-direction: column; gap: 1px; }
.section-dark .bento-grid { background: rgba(255,255,255,0.03); }
.section-light .bento-grid { background: rgba(0,0,0,0.05); }
.bento-grid { border-radius: var(--radius); overflow: hidden; }

.bento-row { display: grid; gap: 1px; }
.bento-row:first-child { grid-template-columns: 1.5fr 1fr; }
.bento-row:last-child { grid-template-columns: 1fr 1.5fr; }
@media (max-width: 768px) {
  .bento-row:first-child,
  .bento-row:last-child { grid-template-columns: 1fr; }
}

.bento-card {
  background: var(--ink-card);
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: background .3s var(--ease);
}
.section-light .bento-card { background: var(--paper-card); }
.bento-card:hover { background: var(--ink-hover); }
.section-light .bento-card:hover { background: #f4f0e6; }

.bento-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--orange), transparent);
  opacity: 0.3;
}

.bento-number {
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 800;
  line-height: 0.8;
  color: var(--orange);
  opacity: 0.05;
  margin-bottom: -0.5rem;
}

.bento-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  color: var(--white);
}
.section-light .bento-card h3 { color: var(--ink); }

.bento-desc {
  font-size: 0.85rem;
  color: var(--gray-dim);
  line-height: 1.6;
  margin-bottom: 1.25rem;
  flex: 1;
}
.section-light .bento-desc { color: var(--gray-dim); }

.bento-tags {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.bento-tag {
  font-family: var(--font-display);
  font-size: 0.6rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gray);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
}
.section-light .bento-tag { border-color: rgba(0,0,0,0.06); color: var(--gray-dark); }

.bento-cta {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: auto;
  transition: gap .3s var(--ease);
}
.bento-cta:hover { gap: 0.6rem; }

.bento-accent {
  position: absolute;
  bottom: 0; right: 0;
  width: 80px; height: 80px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(249,115,22,0.04), transparent);
  pointer-events: none;
}

/* === SERVICE CARDS (products page) === */
.services-grid-2x2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; }
.section-dark .services-grid-2x2 { background: rgba(255,255,255,0.03); }
.section-light .services-grid-2x2 { background: rgba(0,0,0,0.05); }
.services-grid-2x2 { border-radius: var(--radius); overflow: hidden; }
@media (max-width: 768px) { .services-grid-2x2 { grid-template-columns: 1fr; } }
.service-card { background: var(--ink-card); padding: 2.5rem; }
.section-light .service-card { background: var(--paper-card); }
.service-card:hover { background: var(--ink-hover); }
.section-light .service-card:hover { background: #f4f0e6; }
.service-card .card-num { font-family: var(--font-display); font-size: 2.5rem; font-weight: 800; color: var(--orange); opacity: 0.12; line-height: 1; margin-bottom: 0.75rem; }
.service-card h3 { font-size: 1.15rem; margin-bottom: 0.5rem; }
.section-light .service-card h3 { color: var(--ink); }
.service-card p { font-size: 0.92rem; color: var(--gray-dim); margin-bottom: 0.75rem; }
.section-light .service-card p { color: var(--gray-dim); }
.service-card ul { list-style: none; padding: 0; margin: 0; }
.service-card ul li { font-size: 0.88rem; color: var(--gray-dim); padding: 0.3rem 0; padding-left: 1rem; position: relative; border-bottom: 1px solid rgba(255,255,255,0.03); }
.section-light .service-card ul li { border-bottom: 1px solid var(--paper-line); color: var(--gray-dim); }
.service-card ul li::before { content: '→'; position: absolute; left: 0; color: var(--orange); font-weight: 700; }
.service-card ul li:last-child { border-bottom: none; }

/* === VALUES GRID (about page) === */
.values-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; }
.section-dark .values-grid { background: rgba(255,255,255,0.03); }
.section-light .values-grid { background: rgba(0,0,0,0.05); }
.values-grid { border-radius: var(--radius); overflow: hidden; }
@media (max-width: 768px) { .values-grid { grid-template-columns: 1fr; } }
.value-card { background: var(--ink-card); padding: 2.5rem; }
.section-light .value-card { background: var(--paper-card); }
.value-card:hover { background: var(--ink-hover); }
.section-light .value-card:hover { background: #f4f0e6; }
.value-card .val-num { font-family: var(--font-display); font-size: 0.67rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--orange); margin-bottom: 0.75rem; display: block; }
.value-card h3 { font-size: 1.05rem; margin-bottom: 0.3rem; }
.section-light .value-card h3 { color: var(--ink); }
.value-card p { font-size: 0.92rem; color: var(--gray-dim); margin-bottom: 0; }
.section-light .value-card p { color: var(--gray-dim); }
/* === PHILOSOPHY SPREAD (about page) === */
.philosophy-spread { display: grid; grid-template-columns: 1.2fr 1fr; gap: 3rem; align-items: center; }
@media (max-width: 768px) { .philosophy-spread { grid-template-columns: 1fr; gap: 2rem; } }
.philosophy-image { position: relative; overflow: hidden; border-radius: var(--radius); min-height: 400px; }
.philosophy-image img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius); }
.philosophy-text { display: flex; flex-direction: column; gap: 1.5rem; }
.philosophy-text .quote-block { font-family: var(--font-display); font-size: clamp(1.05rem, 1.8vw, 1.25rem); font-weight: 500; line-height: 1.5; color: var(--white); letter-spacing: -0.01em; padding-left: 1.5rem; border-left: 3px solid var(--orange); }
.section-light .philosophy-text .quote-block { color: var(--ink); }
.philosophy-text .quote-block em { color: var(--orange); font-style: normal; }

/* === STAGE FEATURES (pricing) === */
.stage-features { list-style: none; padding: 0; margin: 1rem 0; }
.stage-features li { font-size: 0.88rem; color: var(--gray-dim); padding: 0.4rem 0; padding-left: 1.2rem; position: relative; }
.stage-features li::before { content: '→'; position: absolute; left: 0; color: var(--orange); font-weight: 700; }
.stage-price { font-family: var(--font-display); margin: 0.75rem 0; }
.price-amount { font-size: 1.3rem; font-weight: 700; color: var(--white); }
.price-note { font-size: 0.88rem; color: var(--gray-dim); margin-left: 0.5rem; }

/* === PRICING CARDS === */
.pricing-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 1px; }
.section-dark .pricing-grid { background: rgba(255,255,255,0.03); }
.section-light .pricing-grid { background: rgba(0,0,0,0.05); }
.pricing-grid { border-radius: var(--radius); overflow: hidden; }
@media (max-width: 900px) { .pricing-grid { grid-template-columns: 1fr; } }
@media (min-width: 901px) and (max-width: 1100px) { .pricing-grid { grid-template-columns: 1fr 1fr; } }
.pricing-card { background: var(--ink-card); padding: 2.5rem; display: flex; flex-direction: column; }
.section-light .pricing-card { background: var(--paper-card); }
.pricing-card.featured { position: relative; background: linear-gradient(135deg, rgba(249,115,22,0.04), transparent); }
.section-light .pricing-card.featured { background: linear-gradient(135deg, rgba(249,115,22,0.06), transparent); }
.pricing-card.featured::before { content: ''; position: absolute; top: 0; left: 2.5rem; right: 2.5rem; height: 2px; background: var(--orange); }
.pricing-card .card-tag { font-family: var(--font-display); font-size: 0.67rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--orange); margin-bottom: 0.5rem; }
.pricing-card h3 { font-size: 1.2rem; margin-bottom: 0.25rem; }
.section-light .pricing-card h3 { color: var(--ink); }
.pricing-card .card-desc { font-size: 0.92rem; color: var(--gray-dim); margin-bottom: 0; }
.section-light .pricing-card .card-desc { color: var(--gray-dim); }
.pricing-card .pricing-cta { margin-top: auto; padding-top: 1.5rem; }
.pricing-card .pricing-cta .btn { width: 100%; justify-content: center; }

/* === SERVICES CONVICTION LIST (legacy — kept for products page) === */
.svc-list {
  display: flex;
  flex-direction: column;
  margin-top: 2.5rem;
}
.svc-item {
  display: flex;
  gap: 1.5rem;
  padding: 1.75rem 0;
  border-bottom: 1px solid rgba(10,9,8,0.06);
}
.svc-item:last-child { border-bottom: none; }
.svc-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--orange);
  line-height: 1.1;
  min-width: 3rem;
}
.svc-body h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin: 0 0 0.25rem;
  color: var(--ink);
}
.svc-conviction {
  font-size: 0.88rem;
  color: var(--gray-dim);
  line-height: 1.5;
  margin: 0 0 0.5rem;
  font-style: italic;
}
.svc-tags {
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: var(--gray-dark);
  letter-spacing: 0.02em;
  margin-bottom: 0.5rem;
}
.svc-link {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--orange);
  display: inline-block;
  transition: opacity .2s var(--ease);
}
.svc-link:hover { opacity: 0.7; }
@media (max-width: 600px) {
  .svc-item { flex-direction: column; gap: 0.3rem; }
  .svc-num { min-width: auto; }
}

/* ===================================================================
   SERVICES ACCORDION — hover-to-expand rows with image reveal
   =================================================================== */

.svc-accordion-section {
  background: var(--ink);
  padding-bottom: 4rem;
}

.svc-accordion-head {
  padding-top: 5rem;
  padding-bottom: 3rem;
}
.svc-accordion-head h2 { color: var(--white); }
.svc-accordion-head p { color: var(--gray-dim); max-width: 480px; }

/* The accordion strip — full container width */
.svc-accordion {
  border-top: 1px solid var(--ink-line);
}

/* Each row */
.sva-row {
  position: relative;
  border-bottom: 1px solid var(--ink-line);
  overflow: hidden;
  cursor: pointer;
  height: 5.5rem;
  transition: height .55s cubic-bezier(0.16, 1, 0.3, 1);
}
.sva-row.open {
  height: 32rem;
}

/* Inner layout — same max-width and padding as .container */
.sva-row-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 5.5rem;
  transition: height .55s cubic-bezier(0.16, 1, 0.3, 1);
}
.sva-row.open .sva-row-inner {
  height: auto;
  min-height: 5.5rem;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  align-items: flex-start;
}

@media (min-width: 769px) {
  .sva-row-inner { padding-left: 2rem; padding-right: 2rem; }
}

/* Number — in flow, fixed width column before the title */
.sva-num {
  font-family: var(--font-display);
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gray-dark);
  transition: color .35s var(--ease);
  flex-shrink: 0;
  width: 3.5rem;
}
.sva-row:hover .sva-num,
.sva-row.open .sva-num { color: var(--orange); }

/* Title — takes all remaining space */
.sva-title-wrap {
  flex: 1;
  min-width: 0;
  padding-right: 2rem;
}
.sva-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  color: var(--white);
  line-height: 1;
  margin: 0;
  white-space: nowrap;
  transition: color .35s var(--ease);
}

.sva-conviction {
  font-size: 0.875rem;
  color: var(--gray-dim);
  margin: 0;
  line-height: 1.5;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  white-space: normal;
  transition: max-height .4s var(--ease-out), opacity .35s var(--ease), margin .35s var(--ease);
}
.sva-row.open .sva-conviction {
  max-height: 6rem;
  opacity: 1;
  margin-top: 0.4rem;
}

/* Tags — inside title-wrap, shown on open */
.sva-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity .35s var(--ease-out) .05s, max-height .4s var(--ease-out);
}
.sva-row.open .sva-tags {
  opacity: 1;
  max-height: 4rem;
  margin: 0.75rem 0 0.1rem;
}
.sva-tags span {
  font-family: var(--font-display);
  font-size: 0.57rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #fff;
  background: var(--orange);
  border: 1px solid var(--orange);
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  white-space: nowrap;
}

/* CTA */
.sva-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--orange);
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity .4s var(--ease-out) .12s, transform .4s var(--ease-out) .12s, gap .25s var(--ease);
  white-space: nowrap;
  flex-shrink: 0;
  padding-right: 3.5rem;
}
.sva-row.open .sva-cta { opacity: 1; transform: translateX(0); }
.sva-cta:hover { gap: 0.6rem; }

/* Image panel — wipes in from bottom */
.sva-img {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 36%;
  overflow: hidden;
  clip-path: inset(0 0 100% 0);
  transition: clip-path .65s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}
.sva-row.open .sva-img {
  clip-path: inset(0 0 0% 0);
}
/* Left-side feather so image doesn't hard-cut into the text */
.sva-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--ink) 0%, rgba(10,9,8,0.55) 35%, transparent 70%);
  z-index: 1;
}
.sva-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  transition: transform .85s cubic-bezier(0.16, 1, 0.3, 1);
}
.sva-row.open .sva-img img {
  transform: scale(1);
}

/* Toggle button — sits at the container right edge */
.sva-toggle {
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1.6rem;
  height: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 50%;
  z-index: 3;
  pointer-events: none;
  transition: border-color .3s var(--ease), background .3s var(--ease);
}
@media (min-width: 768px) {
  .sva-toggle { right: 2rem; }
}
.sva-toggle svg {
  width: 9px; height: 9px;
  stroke: var(--gray-dark);
  transition: stroke .3s var(--ease), transform .45s var(--ease-out);
  overflow: visible;
}
.sva-row:hover .sva-toggle { border-color: rgba(255,255,255,0.16); }
.sva-row.open .sva-toggle { border-color: var(--orange); background: rgba(249,115,22,0.1); }
.sva-row.open .sva-toggle svg { stroke: var(--orange); transform: rotate(180deg); }

/* Mobile */
@media (max-width: 768px) {
  /* Row: use min-height instead of fixed height so wrapping titles don't clip */
  .sva-row { height: auto; min-height: 4rem; }
  .sva-row.open { height: auto; }

  .sva-row-inner {
    padding: 0.85rem 1.25rem 0.85rem 1.25rem;
    height: auto;
    min-height: 4rem;
    gap: 0.75rem;
    /* Keep flex but allow content to dictate height */
    align-items: center;
    flex-wrap: wrap;
  }

  .sva-num { font-size: 0.58rem; flex-shrink: 0; }
  .sva-title { font-size: 1.1rem; white-space: normal; line-height: 1.15; }
  .sva-title-wrap { padding-right: 3rem; flex: 1; min-width: 0; }
  .sva-tags { display: none; }

  /* CTA: in document flow, hidden on closed rows */
  .sva-cta {
    position: relative;
    bottom: auto;
    left: auto;
    padding: 0.5rem 0 0.75rem;
    width: 100%;
    opacity: 0;
    pointer-events: none;
    transition: opacity .35s var(--ease-out);
  }
  .sva-row.open .sva-cta {
    opacity: 1;
    pointer-events: auto;
  }

  /* Image: hidden on closed rows, revealed on open */
  .sva-img {
    position: relative;
    width: 100%;
    height: 0;
    overflow: hidden;
    transition: height .5s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .sva-row.open .sva-img {
    height: 180px;
  }
  .sva-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .sva-img::before {
    background: linear-gradient(180deg, var(--ink) 0%, rgba(10,9,8,0.15) 60%, transparent 100%);
  }

  .sva-toggle { right: 1.25rem; }
  .svc-accordion-head { padding-top: 3rem; padding-bottom: 1.75rem; }
}

/* === TIERS SECTION — ribbon decoration === */
.tiers-section {
  position: relative;
  overflow: hidden;
}
.tiers-geo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}
.tiers-geo path:nth-child(1) {
  opacity: 0.09;
  animation: waveRise 10s ease-in-out infinite alternate;
  transform-origin: center;
}
.tiers-geo path:nth-child(2) {
  opacity: 0.055;
  animation: waveRise 14s ease-in-out infinite alternate;
  animation-delay: -5s;
  transform-origin: center;
}

/* Cards on light background */
.section-light .tiers-col { background: #fff; box-shadow: 0 2px 20px rgba(0,0,0,0.06); border-radius: var(--radius); }
.section-light .tiers-col:hover { background: #faf7f2; }
.section-light .tiers-col--focus { background: linear-gradient(160deg, rgba(249,115,22,0.06), #fff); }
.section-light .tiers-name { color: var(--ink); }
.section-light .tiers-price { color: var(--ink); }
.section-light .tiers-col--focus .tiers-price { color: var(--orange); }
.section-light .tiers-desc { color: var(--gray-dim); }
.section-light .tiers-cta { color: var(--gray-mid); }
.section-light .tiers-cta:hover { color: var(--orange); }
@keyframes waveRise {
  0%   { transform: translateY(0px); }
  100% { transform: translateY(-22px); }
}
.tiers-section .container { position: relative; z-index: 1; }
.tiers-row { display: grid; grid-template-columns: 1fr 1.3fr 1fr; gap: 1px; margin-top: 2rem; align-items: stretch; border-radius: var(--radius); overflow: hidden; background: rgba(0,0,0,0.07); }
@media (max-width: 860px) { .tiers-row { grid-template-columns: 1fr; background: transparent; gap: 1rem; } }
.tiers-col { padding: 2.5rem 2rem; background: var(--ink-card); display: flex; flex-direction: column; gap: 0; transition: background .3s var(--ease); }
.tiers-col:hover { background: var(--ink-hover); }
.tiers-col--focus { background: linear-gradient(160deg, rgba(249,115,22,0.06), var(--ink-card)); position: relative; }
.tiers-col--focus::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--orange); }
.tiers-label { font-family: var(--font-display); font-size: 0.6rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--orange); margin-bottom: 0.5rem; display: block; }
.tiers-name { font-family: var(--font-display); font-size: 1.3rem; font-weight: 800; color: var(--white); margin-bottom: 0.6rem; letter-spacing: -0.02em; line-height: 1; display: block; }
.tiers-col--focus .tiers-name { font-size: 1.5rem; }
.tiers-desc { font-size: 0.85rem; color: var(--gray-dim); line-height: 1.55; margin: 0 0 1.75rem; flex: 1; }
.tiers-price { font-family: var(--font-display); font-size: 1.15rem; font-weight: 700; color: var(--white); margin-bottom: 0.75rem; display: block; }
.tiers-col--focus .tiers-price { color: var(--orange); }
.tiers-cta {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--ink);
  background: transparent;
  border: 1.5px solid rgba(0,0,0,0.18);
  border-radius: 999px;
  padding: 0.5rem 0.75rem 0.5rem 1.1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  width: fit-content;
  align-self: flex-start;
  transition: border-color .25s var(--ease), color .25s var(--ease), gap .25s var(--ease), background .25s var(--ease);
  text-decoration: none;
  margin-top: auto;
}
.tiers-cta:hover { border-color: var(--orange); color: var(--orange); gap: 0.6rem; }
.tiers-cta svg { flex-shrink: 0; }
.tiers-col--focus .tiers-cta { border-color: var(--orange); color: var(--orange); }
.tiers-col--focus .tiers-cta:hover { background: var(--orange); color: var(--ink); }

/* ===================================================================
   WORK — stacked image pile
   =================================================================== */

.work-section {
  background: var(--ink);
  padding: 5rem 0 6rem;
}

.work-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 4rem;
}
.work-section-head h2 { margin: 0.3rem 0 0; color: var(--white); }
.work-section-head .label { color: var(--gray-dim); }

/* All Work pill — white with orange font */
.work-view-all {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--orange);
  background: #fff;
  border: 1px solid var(--orange);
  padding: 0.35rem 0.85rem 0.35rem 1rem;
  border-radius: 999px;
  text-decoration: none;
  white-space: nowrap;
  width: fit-content;
  align-self: center;
  transition: background .25s var(--ease), color .25s var(--ease), gap .25s var(--ease);
}
.work-view-all:hover { background: var(--orange); color: #fff; gap: 0.7rem; }

/* Two-column layout */
.work-pile-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 860px) {
  .work-pile-wrap { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* ---- Pile left column ---- */
.work-pile-left {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

/* ---- Pile ---- */
.work-pile {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
}

.work-pile-card {
  position: absolute;
  inset: 0;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  transition:
    transform .65s cubic-bezier(0.16, 1, 0.3, 1),
    opacity .5s var(--ease-out);
  will-change: transform, opacity;
}
.work-pile-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

/* Resting stack positions */
.work-pile-card[data-idx="0"] { transform: rotate(0deg)    translate(0,    0);    z-index: 6; }
.work-pile-card[data-idx="1"] { transform: rotate(-2.5deg) translate(-8px,  6px); z-index: 5; opacity: 0.85; }
.work-pile-card[data-idx="2"] { transform: rotate( 1.8deg) translate( 6px, 10px); z-index: 4; opacity: 0.70; }
.work-pile-card[data-idx="3"] { transform: rotate(-1.2deg) translate(-4px, 16px); z-index: 3; opacity: 0.50; }
.work-pile-card[data-idx="4"] { transform: rotate( 2.4deg) translate(10px, 22px); z-index: 2; opacity: 0.35; }
.work-pile-card[data-idx="5"] { transform: rotate(-1.8deg) translate(-6px, 28px); z-index: 1; opacity: 0.20; }

/* Top card lifts on hover */
.work-pile:hover .work-pile-card[data-idx="0"] {
  transform: rotate(0deg) translate(0, -10px) scale(1.015);
  box-shadow: 0 36px 80px rgba(0,0,0,0.6);
}

/* ---- Prev / Next controls ---- */
.work-pile-controls {
  display: flex;
  align-items: center;
  gap: 0;
  background: var(--orange);
  border: none;
  border-radius: 999px;
  overflow: hidden;
  width: fit-content;
}

.wpc-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white);
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.8rem 1.5rem;
  transition: background .2s var(--ease), color .2s var(--ease);
}
.wpc-btn:hover { background: var(--orange-dark); color: #fff; }
.wpc-btn svg { flex-shrink: 0; stroke: currentColor; }
.wpc-btn--next { border-left: 1px solid rgba(255,255,255,0.2); }

.wpc-count {
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.75);
  padding: 0 1.1rem;
  border-left: 1px solid rgba(255,255,255,0.2);
  border-right: 1px solid rgba(255,255,255,0.2);
  white-space: nowrap;
  line-height: 1;
  align-self: stretch;
  display: flex;
  align-items: center;
}

/* ---- Info panel ---- */
.work-pile-info {
  position: relative;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.work-pile-detail {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .45s var(--ease-out), transform .45s var(--ease-out);
  pointer-events: none;
}
.work-pile-detail.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  position: relative;
}

.wpd-num {
  font-family: var(--font-display);
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--orange);
  display: block;
  margin-bottom: 0.75rem;
}
.wpd-name {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--white);
  line-height: 0.95;
  margin: 0 0 0.6rem;
}
.wpd-type {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-dim);
  margin: 0 0 1rem;
}
.wpd-desc {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.6;
  max-width: 380px;
  margin: 0 0 1.25rem;
}
.wpd-stat {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--orange);
  background: rgba(249,115,22,0.08);
  border: 1px solid rgba(249,115,22,0.15);
  padding: 0.3rem 0.75rem;
  border-radius: 4px;
  margin-bottom: 1.5rem;
}
.wpd-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink);
  background: var(--white);
  border: none;
  border-radius: 999px;
  padding: 0.5rem 1.1rem;
  transition: background .25s var(--ease), gap .25s var(--ease), box-shadow .25s var(--ease);
  width: fit-content;
  text-decoration: none;
}
.wpd-cta:hover {
  background: var(--orange);
  color: var(--ink);
  gap: 0.7rem;
  box-shadow: 0 4px 16px rgba(249,115,22,0.25);
}

/* Dot navigation */
.wpd-nav {
  display: flex;
  gap: 0.5rem;
  margin-top: 2rem;
}
.wpd-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gray-dark);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background .3s var(--ease), transform .3s var(--ease);
}
.wpd-dot.active { background: var(--orange); transform: scale(1.4); }
.wpd-dot:hover:not(.active) { background: var(--gray-mid); }

@media (max-width: 860px) {
  .work-pile { max-width: 480px; margin: 0 auto; }
  .work-pile-info { min-height: auto; }
  .work-pile-detail { position: relative; inset: auto; }
  .work-pile-detail:not(.active) { display: none; }
  .work-pile-controls { margin: 0 auto; }
}

/* === TENETS (why us — asymmetric 3+2, varied width) === */
.tenets { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2rem; }
.tenet { flex: 1 1 0%; display: flex; flex-direction: column; align-items: flex-start; text-align: left; padding: 1.5rem 1.25rem; background: var(--ink-card); min-width: 0; border-radius: var(--radius); }
.tenet--wide { flex: 1.4 1 0%; }
.tenet--pull { margin-top: 1rem; }
.tenet--focus { flex: 0 0 100%; display: flex; flex-direction: row; align-items: center; gap: 1rem; padding: 1rem 1.5rem; border-left: 2px solid var(--orange); margin-top: 0.5rem; border-radius: 0; }
.tenet-num { font-family: var(--font-display); font-size: 0.62rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--orange); margin-bottom: 0.4rem; }
.tenet-num--lg { font-size: 1.5rem; font-weight: 700; color: var(--orange); letter-spacing: -0.02em; text-transform: none; margin-bottom: 0; }
.tenet--focus .tenet-label { font-size: 1rem; }
.tenet-label { font-family: var(--font-display); font-size: 0.85rem; font-weight: 600; color: var(--white); letter-spacing: -0.01em; }
@media (max-width: 640px) { .tenet { flex: 1 1 45% !important; } .tenet--focus { flex: 0 0 100% !important; } }

/* === ANIMATIONS === */
.reveal { opacity: 0; transform: translateY(24px); transition: all .6s var(--ease-out); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }
.reveal-d5 { transition-delay: 0.5s; }
.reveal-d6 { transition-delay: 0.6s; }
.count-up { display: inline-block; }

/* ===================================================================
   CASE STUDY PAGES
   =================================================================== */

/* Hero */
.cs-hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--ink);
}
.cs-hero-bg { position: absolute; inset: 0; }
.cs-hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.35; filter: saturate(0.7); }
.cs-hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,9,8,0.95) 0%, rgba(10,9,8,0.4) 60%, rgba(10,9,8,0.15) 100%);
}
.cs-hero-body {
  position: relative; z-index: 2;
  width: 100%; padding: 0 0 4rem;
}
.cs-hero-body .container { display: flex; flex-direction: column; gap: 0; }
/* Back button + visit link row */
.cs-hero-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* Back button — orange pill with white font */
.cs-back {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-family: var(--font-display); font-size: 0.62rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: #fff;
  background: var(--orange);
  border: 1px solid var(--orange);
  padding: 0.32rem 0.8rem 0.32rem 0.6rem;
  border-radius: 999px;
  width: fit-content;
  margin-bottom: 0;
  text-decoration: none;
  transition: background .25s var(--ease), color .25s var(--ease), gap .25s var(--ease);
}
.cs-back:hover { background: var(--orange-dark); border-color: var(--orange-dark); gap: 0.6rem; }
.cs-back svg { flex-shrink: 0; }
.cs-hero-tags { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 1.75rem; }
.cs-hero-tag {
  font-family: var(--font-display); font-size: 0.6rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: #fff; background: var(--orange);
  padding: 0.28rem 0.8rem; border-radius: 999px;
}
.cs-hero-title {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(3rem, 8vw, 7rem); letter-spacing: -0.05em;
  line-height: 0.9; color: var(--white); margin: 0 0 2rem;
}
.cs-hero-subtitle {
  font-size: clamp(1rem, 1.5vw, 1.15rem); color: var(--gray);
  line-height: 1.6; max-width: 540px; margin: 0 0 2rem;
}

/* Visit website link — orange pill with white font, fit-content */
.cs-visit-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-display);
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #fff;
  background: var(--orange);
  border: 1px solid var(--orange);
  padding: 0.32rem 0.8rem;
  border-radius: 999px;
  width: fit-content;
  text-decoration: none;
  transition: background .25s var(--ease), gap .25s var(--ease);
}
.cs-visit-link:hover { background: var(--orange-dark); border-color: var(--orange-dark); gap: 0.65rem; }

/* Metrics bar */
.cs-metrics {
  background: var(--ink-surface);
  border-top: 1px solid var(--ink-line);
  border-bottom: 1px solid var(--ink-line);
}
.cs-metrics-inner {
  display: flex;
  divide: 1px solid var(--ink-line);
}
.cs-metric {
  flex: 1;
  padding: 2rem 2.5rem;
  border-right: 1px solid var(--ink-line);
}
.cs-metric:last-child { border-right: none; }
.cs-metric-val {
  font-family: var(--font-display); font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800; letter-spacing: -0.04em; color: var(--orange); line-height: 1;
  display: block; margin-bottom: 0.3rem;
}
.cs-metric-label {
  font-family: var(--font-display); font-size: 0.62rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em; color: var(--gray-dim);
}
@media (max-width: 640px) {
  .cs-metrics-inner { flex-wrap: wrap; }
  .cs-metric { flex: 1 1 50%; border-bottom: 1px solid var(--ink-line); }
  .cs-metric:nth-last-child(-n+2) { border-bottom: none; }
}

/* Brief + Challenge */
.cs-brief {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 4rem;
  align-items: start;
}
@media (max-width: 860px) { .cs-brief { grid-template-columns: 1fr; gap: 2rem; } }
.cs-brief-label {
  font-family: var(--font-display); font-size: 0.62rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.12em; color: var(--orange);
  display: block; margin-bottom: 0.75rem;
}
.cs-brief-heading {
  font-family: var(--font-display); font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 700; letter-spacing: -0.03em; color: var(--white);
  margin: 0; line-height: 1.2;
}
.cs-brief-text { font-size: 1rem; line-height: 1.75; color: var(--gray); }
.cs-brief-text p { margin-bottom: 1rem; }
.cs-brief-text p:last-child { margin-bottom: 0; }

/* Full-bleed image */
.cs-img-full {
  width: 100%; aspect-ratio: 16 / 9;
  overflow: hidden; position: relative;
}
.cs-img-full img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
}

/* 2-col images — centered with more breathing room above quote */
.cs-img-2col {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
  max-width: 900px;
  margin: 0 auto;
}
@media (max-width: 640px) { .cs-img-2col { grid-template-columns: 1fr; } }
.cs-img-2col .cs-img-frame {
  aspect-ratio: 4/3; overflow: hidden; border-radius: var(--radius);
}
.cs-img-2col .cs-img-frame img { width: 100%; height: 100%; object-fit: cover; }

/* Deliverables — highlighted key items */
.cs-deliverables {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255,255,255,0.04);
}
@media (max-width: 768px) { .cs-deliverables { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .cs-deliverables { grid-template-columns: 1fr; } }
.cs-deliverable {
  background: var(--ink-card);
  padding: 2rem 1.75rem;
  transition: background .3s var(--ease);
  border-left: 3px solid transparent;
  transition: background .25s var(--ease), border-color .25s var(--ease);
}
.cs-deliverable:hover {
  background: var(--ink-hover);
  border-left-color: var(--orange);
}
.cs-deliverable-icon {
  font-size: 1.1rem;
  margin-bottom: 0.6rem;
  display: block;
  color: var(--orange);
}
.cs-deliverable h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.35rem;
  letter-spacing: -0.01em;
}
.cs-deliverable p { font-size: 0.82rem; color: var(--gray-dim); margin: 0; line-height: 1.55; }

/* Quote pull — more top spacing to separate from images above */
.cs-quote {
  border-left: 3px solid var(--orange);
  padding: 1.5rem 2rem;
  margin-top: 3rem;
  background: rgba(249,115,22,0.04);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.cs-quote blockquote {
  font-family: var(--font-display); font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 600; letter-spacing: -0.02em; color: var(--white);
  line-height: 1.4; margin: 0 0 0.75rem; border: none; padding: 0;
}
.cs-quote cite {
  font-style: normal; font-size: 0.8rem; color: var(--gray-dim);
  font-family: var(--font-display); font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.08em;
}

/* Prev / Next case study nav */
.cs-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  border-top: 1px solid var(--ink-line);
  background: var(--ink-line);
}
.cs-nav-item {
  display: flex; flex-direction: column;
  padding: 2.5rem 2rem;
  background: var(--ink-card);
  transition: background .25s var(--ease);
  text-decoration: none;
}
.cs-nav-item:hover { background: #fff; }
.cs-nav-item:hover .cs-nav-dir { color: var(--orange); }
.cs-nav-item:hover .cs-nav-name { color: var(--orange); }
.cs-nav-item:hover .cs-nav-type { color: var(--orange); }
.cs-nav-item:last-child { border-left: none; align-items: flex-end; text-align: right; }
.cs-nav-dir {
  font-family: var(--font-display); font-size: 0.6rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.12em; color: var(--gray-dark);
  margin-bottom: 0.4rem; display: block;
  transition: color .25s var(--ease);
}
.cs-nav-name {
  font-family: var(--font-display); font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 800; letter-spacing: -0.03em; color: var(--white);
  line-height: 1;
  transition: color .25s var(--ease);
}
.cs-nav-type {
  font-size: 0.78rem; color: var(--gray-dim); margin-top: 0.3rem;
  transition: color .25s var(--ease);
}
@media (max-width: 480px) {
  .cs-nav { grid-template-columns: 1fr; background: none; }
  .cs-nav-item:last-child { border-left: none; border-top: 1px solid var(--ink-line); align-items: flex-start; text-align: left; }
}

/* === ALTERNATING SECTION BG === */
.bg-black{background:var(--ink);color:var(--gray)}
.bg-white{background:var(--paper);color:var(--gray-dark)}
.bg-white h1,.bg-white h2,.bg-white h3,.bg-white h4,.bg-white .section-head h2{color:var(--ink)}
.bg-white .label{color:var(--gray-dim)}
.bg-white .manifesto-card blockquote{color:var(--ink)}
.bg-white .manifesto-card p{color:var(--gray-dark)}
.bg-grey{background:#2a2725;color:var(--gray)}
.bg-grey h1,.bg-grey h2,.bg-grey h3,.bg-grey h4{color:var(--white)}
.bg-grey .label{color:var(--gray)}
.bg-grey .btn-ghost{border-color:rgba(255,255,255,0.12);color:var(--gray)}


/* ===================================================================
   SERVICES SPLIT — ribbon decoration
   =================================================================== */
.svc-split-section {
  position: relative;
  overflow: hidden;
}
.svc-split-ribbon {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}
.svc-split-ribbon path:nth-child(1) {
  opacity: 0.07;
  animation: ribbonDrift 22s ease-in-out infinite alternate;
  transform-origin: 1100px 500px;
}
.svc-split-ribbon path:nth-child(2) {
  opacity: 0.04;
  animation: ribbonDrift 30s ease-in-out infinite alternate;
  animation-delay: -10s;
  transform-origin: 1100px 500px;
}
.svc-split-section .container { position: relative; z-index: 1; }

.svc-split-section { padding: 6rem 0; }
.svc-split-section .container {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 6rem;
  align-items: start;
}
@media (max-width: 900px) {
  .svc-split-section .container { grid-template-columns: 1fr; gap: 3rem; }
}

/* Left column — sticky */
.svc-split-left {
  position: sticky;
  top: 6rem;
}
.svc-split-left h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin: 0.5rem 0 0.75rem;
  color: var(--white);
}
.svc-split-left p { color: var(--gray-dim); max-width: 320px; margin-bottom: 0; }
@media (max-width: 900px) { .svc-split-left { position: relative; top: 0; } }

/* Right column — service list */
.svc-split-right {
  display: flex;
  flex-direction: column;
}

/* Each service item */
.svc-split-item {
  border-bottom: 1px solid var(--ink-line);
}
.svc-split-item:first-child { border-top: 1px solid var(--ink-line); }

/* Header row — always visible */
.svc-split-header {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.75rem 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background .25s var(--ease);
}
.svc-split-header:hover .svc-split-title { color: var(--orange); }

.svc-split-num {
  font-family: var(--font-display);
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gray-dark);
  flex-shrink: 0;
  width: 2.5rem;
  transition: color .25s var(--ease);
}
.svc-split-header[aria-expanded="true"] .svc-split-num { color: var(--orange); }

.svc-split-title {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--white);
  flex: 1;
  line-height: 1;
  transition: color .25s var(--ease);
}

.svc-split-icon {
  flex-shrink: 0;
  width: 1.5rem; height: 1.5rem;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 50%;
  transition: border-color .25s var(--ease), background .25s var(--ease);
}
.svc-split-icon svg {
  width: 9px; height: 9px;
  stroke: var(--gray-dark);
  transition: stroke .25s var(--ease), transform .4s var(--ease-out);
}
.svc-split-header[aria-expanded="true"] .svc-split-icon {
  border-color: var(--orange);
  background: rgba(249,115,22,0.1);
}
.svc-split-header[aria-expanded="true"] .svc-split-icon svg {
  stroke: var(--orange);
  transform: rotate(180deg);
}

/* Expandable body */
.svc-split-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .5s cubic-bezier(0.16, 1, 0.3, 1), opacity .4s var(--ease-out);
  opacity: 0;
  padding-left: 3.75rem; /* aligns with title */
}
.svc-split-item.open .svc-split-body {
  max-height: 400px;
  opacity: 1;
  padding-bottom: 2rem;
}

.svc-split-conviction {
  font-size: 0.925rem;
  color: var(--gray);
  line-height: 1.65;
  margin: 0 0 1.25rem;
  max-width: 420px;
}

.svc-split-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.75rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}
.svc-split-list li {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--gray);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 6px;
  padding: 0.6rem 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  line-height: 1.3;
  transition: background .25s var(--ease), border-color .25s var(--ease), color .25s var(--ease);
}
.svc-split-list li:hover {
  background: rgba(249,115,22,0.08);
  border-color: rgba(249,115,22,0.2);
  color: var(--white);
}
.svc-split-list li::before {
  content: '✦';
  color: var(--orange);
  font-size: 0.45rem;
  flex-shrink: 0;
  opacity: 0.7;
}
@media (max-width: 640px) {
  .svc-split-list { grid-template-columns: 1fr; }
}

.svc-split-cta {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--orange);
  border: 1.5px solid var(--orange);
  border-radius: 999px;
  padding: 0.45rem 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: background .25s var(--ease), color .25s var(--ease), gap .25s var(--ease);
  text-decoration: none;
}
.svc-split-cta:hover { background: var(--orange); color: var(--ink); gap: 0.7rem; }

/* ===================================================================
   PAGE HERO — full-viewport editorial hero for inner pages
   Dark left text panel, image panel on the right half.
   =================================================================== */

.page-hero {
  position: relative;
  min-height: 100vh;
  background: var(--ink);
  display: flex;
  align-items: stretch;
  overflow: hidden;
}

/* Image: covers right 45% of the hero */
.page-hero-img {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 45%;
  overflow: hidden;
}
.page-hero-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.35;
  filter: saturate(0.5);
}
/* Fade the image into the dark left panel */
.page-hero-img::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, var(--ink) 0%, rgba(10,9,8,0.6) 40%, rgba(10,9,8,0.1) 100%);
  z-index: 1;
}

/* Body grid: full height — pushes all content to the bottom */
.page-hero-body {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: 100%;
  padding-top: 6rem;
  padding-bottom: 3rem;
  min-height: 100vh;
  gap: 0;
}

/* Top row: page label + studio name */
.page-hero-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--ink-line);
}
.page-hero-label {
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gray-dark);
}

/* Title: sits just above the bottom bar */
.page-hero-title-wrap {
  display: flex;
  align-items: flex-end;
  padding: 0 0 1.5rem;
  max-width: 55%;
}
.page-hero-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(4rem, 9vw, 8rem);
  letter-spacing: -0.05em;
  line-height: 0.9;
  color: var(--white);
  margin: 0;
}

/* Bottom row: descriptor left, CTA right */
.page-hero-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--ink-line);
  flex-wrap: wrap;
}
.page-hero-sub {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
  margin: 0;
  max-width: 320px;
}

@media (max-width: 768px) {
  .page-hero-img { width: 100%; opacity: 1; }
  .page-hero-img img { opacity: 0.2; }
  .page-hero-img::before { background: linear-gradient(180deg, var(--ink) 0%, rgba(10,9,8,0.85) 60%, rgba(10,9,8,0.6) 100%); }
  .page-hero-title-wrap { max-width: 100%; padding: 1.5rem 0; }
  .page-hero-title { font-size: clamp(3rem, 12vw, 5rem); }
  .page-hero-bottom { flex-direction: column; align-items: flex-start; gap: 1.25rem; }
  .page-hero-body { padding-top: 5rem; }
}

/* ===================================================================
   SERVICES SPLIT — white background overrides
   =================================================================== */
.svc-split-section.bg-white .svc-split-left h2 { color: var(--ink); }
.svc-split-section.bg-white .svc-split-left p { color: var(--gray-dark); }
.svc-split-section.bg-white .svc-split-left .label { color: var(--orange); }
.svc-split-section.bg-white .svc-split-item { border-bottom-color: var(--paper-line); }
.svc-split-section.bg-white .svc-split-item:first-child { border-top-color: var(--paper-line); }
.svc-split-section.bg-white .svc-split-title { color: var(--ink); }
.svc-split-section.bg-white .svc-split-num { color: var(--gray-mid); }
.svc-split-section.bg-white .svc-split-header[aria-expanded="true"] .svc-split-num { color: var(--orange); }
.svc-split-section.bg-white .svc-split-header:hover .svc-split-title { color: var(--orange); }
.svc-split-section.bg-white .svc-split-icon { border-color: rgba(0,0,0,0.12); }
.svc-split-section.bg-white .svc-split-icon svg { stroke: var(--gray-mid); }
.svc-split-section.bg-white .svc-split-conviction {
  color: var(--gray-dark);
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 1.25rem;
}
.svc-split-section.bg-white .svc-split-list {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  margin-bottom: 1.5rem;
}
.svc-split-section.bg-white .svc-split-list li {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: var(--ink);
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0.45rem 0;
  border-bottom: 1px solid var(--paper-line);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.svc-split-section.bg-white .svc-split-list li:last-child { border-bottom: none; }
.svc-split-section.bg-white .svc-split-list li::before {
  content: '';
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='10' cy='10' r='9' stroke='%23f97316' stroke-width='1.5'/%3E%3Cpath d='M6.5 10l2.5 2.5 4.5-4.5' stroke='%23f97316' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  position: relative;
  top: 2px;
}
.svc-split-section.bg-white .svc-split-list li:hover { color: var(--orange); }
.svc-split-section.bg-white .svc-split-body { padding-bottom: 2rem; }

/* ===================================================================
   NAV — orange pill active state (replaces underline)
   =================================================================== */
.nav-links a::after { display: none; } /* remove underline */

.nav-links a.active {
  color: var(--ink);
  background: var(--orange);
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  font-weight: 600;
}
.navbar.scrolled .nav-links a.active { color: var(--ink); }

/* Non-active hover still shows orange text */
.nav-links a:hover:not(.active) { color: var(--orange); }

/* ===================================================================
   ABOUT PAGE — Vision/Mission, Story, Values section
   =================================================================== */

/* Vision & Mission two-column */
.about-vm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255,255,255,0.03);
}
@media (max-width: 768px) { .about-vm-grid { grid-template-columns: 1fr; } }

.about-vm-card {
  background: var(--ink-card);
  padding: 3rem 2.5rem;
  transition: background .3s var(--ease);
}
.about-vm-card:hover { background: var(--ink-hover); }
.about-vm-card .label { margin-bottom: 1rem; }
.about-vm-card h2 {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin-bottom: 1rem;
}
.about-vm-card p { font-size: 0.925rem; color: var(--gray-dim); margin: 0; }

/* Story two-column */
.about-story {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 860px) { .about-story { grid-template-columns: 1fr; gap: 2.5rem; } }

.about-story-text p {
  font-size: 1rem;
  color: var(--gray);
  line-height: 1.75;
  margin-bottom: 1.25rem;
}
.about-story-text p:last-child { margin-bottom: 0; }

.about-story-img {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.about-story-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s var(--ease-out);
}
.about-story-img:hover img { transform: scale(1.03); }

/* Values section — white background with ribbon */
.about-values-section {
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
}
.about-values-ribbon {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
}
.about-values-ribbon path:nth-child(1) {
  opacity: 0.08;
  animation: waveRise 12s ease-in-out infinite alternate;
}
.about-values-ribbon path:nth-child(2) {
  opacity: 0.045;
  animation: waveRise 18s ease-in-out infinite alternate;
  animation-delay: -6s;
}
.about-values-section .container { position: relative; z-index: 1; }

/* Override value-card colors for light bg */
.about-values-section .section-head h2 { color: var(--ink); }
.about-values-section .section-head p { color: var(--gray-dark); }
.about-values-section .label { color: var(--orange); }
.about-values-section .values-grid { background: rgba(0,0,0,0.05); }
.about-values-section .value-card { background: #fff; }
.about-values-section .value-card:hover { background: #f5f0e6; }
.about-values-section .value-card .val-num { color: var(--orange); }
.about-values-section .value-card h3 {
  color: var(--ink);
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.025em;
}
.about-values-section .value-card p { color: var(--gray-dark); }

/* Orange accent cards — now ink black */
.about-values-section .value-card--orange {
  background: var(--ink) !important;
}
.about-values-section .value-card--orange:hover {
  background: var(--ink-hover) !important;
}
.about-values-section .value-card--orange .val-num { color: var(--orange); }
.about-values-section .value-card--orange h3 { color: var(--white); }
.about-values-section .value-card--orange p { color: var(--gray-dim); }

/* ===================================================================
   PROCESS STRIP — ribbon decoration
   =================================================================== */
.process-section {
  position: relative;
  overflow: hidden;
}
.process-ribbon {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
}
.process-ribbon path:nth-child(1) {
  opacity: 0.08;
  animation: waveRise 14s ease-in-out infinite alternate;
}
.process-ribbon path:nth-child(2) {
  opacity: 0.045;
  animation: waveRise 20s ease-in-out infinite alternate;
  animation-delay: -7s;
}

/* ===================================================================
   ABOUT — Vision/Mission section white background + ribbon
   =================================================================== */
.about-vm-section {
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
}
.about-vm-ribbon {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
}
.about-vm-ribbon path:nth-child(1) {
  opacity: 0.08;
  animation: waveRise 11s ease-in-out infinite alternate;
}
.about-vm-ribbon path:nth-child(2) {
  opacity: 0.045;
  animation: waveRise 17s ease-in-out infinite alternate;
  animation-delay: -5s;
}

/* Light background overrides for vm-cards */
.about-vm-section .about-vm-grid { background: rgba(0,0,0,0.05); }
.about-vm-section .about-vm-card { background: #fff; }
.about-vm-section .about-vm-card:hover { background: #f5f0e6; }
.about-vm-section .about-vm-card h2 { color: var(--ink); }
.about-vm-section .about-vm-card p { color: var(--gray-dark); }
.about-vm-section .about-vm-card .label { color: var(--orange); }

/* ===================================================================
   PRICING PACKAGES — white background, ribbon, improved cards
   =================================================================== */

.pricing-section {
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
}
.pricing-ribbon {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
}
.pricing-ribbon path:nth-child(1) {
  opacity: 0.08;
  animation: waveRise 13s ease-in-out infinite alternate;
}
.pricing-ribbon path:nth-child(2) {
  opacity: 0.045;
  animation: waveRise 19s ease-in-out infinite alternate;
  animation-delay: -6s;
}

/* Light section head */
.pricing-section .section-head h2 { color: var(--ink); }
.pricing-section .section-head p { color: var(--gray-dark); }
.pricing-section .label { color: var(--orange); }

/* 3-column grid */
.pkg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  align-items: start;
}
@media (max-width: 900px) { .pkg-grid { grid-template-columns: 1fr; gap: 1rem; } }

/* Base card */
.pkg-card {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid rgba(0,0,0,0.07);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: box-shadow .3s var(--ease), transform .3s var(--ease-out);
}
.pkg-card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
  transform: translateY(-3px);
}

/* Featured card */
.pkg-card--featured {
  border-color: var(--orange);
  position: relative;
}
.pkg-card--featured::before {
  content: 'Most popular';
  position: absolute;
  top: 0; left: 0; right: 0;
  background: var(--orange);
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  text-align: center;
  padding: 0.35rem 0;
}

/* Card head */
.pkg-card-head {
  padding: 2rem 2rem 1.5rem;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.pkg-card--featured .pkg-card-head { padding-top: 2.75rem; }

.pkg-tier {
  font-family: var(--font-display);
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--orange);
  display: block;
  margin-bottom: 0.4rem;
}
.pkg-name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin: 0 0 0.5rem;
  line-height: 1.1;
}
.pkg-for {
  font-size: 0.85rem;
  color: var(--gray-dim);
  line-height: 1.5;
  margin: 0 0 1.25rem;
}
.pkg-price {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.03em;
}
.pkg-card--featured .pkg-price { color: var(--orange); }
.pkg-price span {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--gray-mid);
  margin-left: 0.4rem;
  letter-spacing: 0;
}

/* Features list */
.pkg-features {
  list-style: none;
  padding: 1.5rem 2rem;
  margin: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.pkg-features li {
  font-size: 0.875rem;
  color: var(--gray-dark);
  padding-left: 1.1rem;
  position: relative;
  line-height: 1.5;
}
.pkg-features li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 700;
  font-size: 0.7rem;
  top: 0.15rem;
}
.pkg-features li em {
  font-style: normal;
  color: var(--gray-mid);
  font-size: 0.82rem;
}
/* New items get a subtle highlight */
.pkg-feature--new {
  background: rgba(249,115,22,0.05);
  border-radius: 4px;
  padding: 0.35rem 0.6rem 0.35rem 1.4rem;
  border: 1px solid rgba(249,115,22,0.12);
  margin: 0 -0.6rem;
}
.pkg-feature--new::before { left: 0.6rem; }

/* CTAs */
.pkg-cta {
  display: block;
  margin: 0 2rem 2rem;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  text-align: center;
  transition: all .25s var(--ease);
  text-decoration: none;
}
.pkg-cta--primary {
  background: var(--orange);
  color: var(--ink);
}
.pkg-cta--primary:hover { background: var(--orange-dark); transform: translateY(-1px); }
.pkg-cta--ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid rgba(0,0,0,0.15);
}
.pkg-cta--ghost:hover { border-color: var(--orange); color: var(--orange); }

/* ===================================================================
   PRICING CARDS — white background + SVG arrow overrides
   =================================================================== */

/* Light background fixes for original pricing-card style */
.pricing-section .pricing-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: var(--radius);
}
.pricing-section .pricing-card.featured {
  background: linear-gradient(160deg, rgba(249,115,22,0.06), #fff);
}
.pricing-section .pricing-card h3 { color: var(--ink); }
.pricing-section .pricing-card .card-desc { color: var(--gray-dark); }
.pricing-section .pricing-card .card-tag { color: var(--orange); }
.pricing-section .pricing-grid { background: transparent; gap: 1.25rem; }

/* Stage-features on light background */
.pricing-section .stage-features li { color: var(--gray-dark); }
.pricing-section .stage-features li em {
  font-style: normal;
  color: var(--gray-mid);
  font-size: 0.82rem;
}

/* Replace text arrow with SVG-style via list-style override */
.stage-features li {
  font-size: 0.875rem;
  padding: 0.45rem 0;
  padding-left: 1.4rem;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.stage-features li:last-child { border-bottom: none; }
.stage-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 10px;
  height: 10px;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='10' viewBox='0 0 16 16' fill='none' stroke='%23f97316' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 8h10'/%3E%3Cpolyline points='9 4 13 8 9 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
}

/* Ghost button on light background */
.pricing-section .btn-ghost {
  border-color: rgba(0,0,0,0.15);
  color: var(--ink);
}
.pricing-section .btn-ghost:hover {
  border-color: var(--orange);
  color: var(--orange);
  transform: translateY(-2px);
}

/* ===================================================================
   PRICING CARDS v3 — tall cards, featured lifts, reference design
   =================================================================== */

.pricing-section.bg-black .section-head h2 { color: var(--white); }
.pricing-section.bg-black .section-head p { color: var(--gray-dim); }
.pricing-section.bg-black .label { color: var(--orange); }
.pricing-section.bg-black .pricing-ribbon path:nth-child(1) { opacity: 0.06; }
.pricing-section.bg-black .pricing-ribbon path:nth-child(2) { opacity: 0.035; }

/* White background overrides */
.pricing-section.bg-white .section-head h2 { color: var(--ink); }
.pricing-section.bg-white .section-head p { color: var(--gray-dark); }
.pricing-section.bg-white .label { color: var(--orange); }
.pricing-section.bg-white .pricing-ribbon path:nth-child(1) { opacity: 0.08; }
.pricing-section.bg-white .pricing-ribbon path:nth-child(2) { opacity: 0.045; }

/* Grid — equal heights, featured slightly elevated */
.prc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  align-items: stretch;
}
@media (max-width: 860px) { .prc-grid { grid-template-columns: 1fr; align-items: stretch; } }

/* Base card */
.prc-card {
  background: #f5f0e8;
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,0.07);
  display: flex;
  flex-direction: column;
  padding: 2rem;
  position: relative;
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.prc-card:hover { border-color: rgba(0,0,0,0.14); box-shadow: 0 8px 32px rgba(0,0,0,0.07); }

/* Featured — same white card, orange border only */
.prc-card--featured {
  background: #f5f0e8;
  border-color: var(--orange);
  border-width: 2px;
  box-shadow: 0 12px 40px rgba(249,115,22,0.12);
}
.prc-card--featured:hover { border-color: var(--orange); box-shadow: 0 20px 56px rgba(249,115,22,0.18); }

/* "Most Popular" badge — removed */

/* Top content — fixed min-height so buttons align across all cards */
.prc-top {
  margin-bottom: 1.5rem;
  min-height: 220px; /* matches tallest card (Brand Growth System) */
}

/* Spacer — no longer needed, min-height on prc-top handles alignment */
.prc-spacer { display: none; }

/* Divider sits right after top content */
.prc-divider {
  height: 1px;
  background: rgba(0,0,0,0.08);
  margin-bottom: 1.5rem;
}

/* Button always directly below divider */
.prc-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.85rem 1.5rem;
  border-radius: 10px;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  margin-bottom: 1.75rem;
  transition: all .25s var(--ease-out);
  background: var(--ink);
  color: var(--white);
  border: 1px solid transparent;
}
.prc-btn:hover { background: var(--ink-hover); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(0,0,0,0.15); }

/* Feature list — grows to fill remaining height */
.prc-features {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex: 1;
}
.prc-tier {
  font-family: var(--font-display);
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--orange);
  display: block;
  margin-bottom: 0.5rem;
}
.prc-name {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  color: var(--ink);
  margin: 0 0 0.75rem;
  line-height: 1.05;
}
.prc-for {
  font-size: 0.875rem;
  color: var(--gray-dark);
  line-height: 1.55;
  margin: 0;
}

/* Divider */
.prc-divider {
  height: 1px;
  background: rgba(0,0,0,0.08);
  margin-bottom: 1.5rem;
}

/* CTA button — pushed to bottom via flex */
.prc-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.85rem 1.5rem;
  border-radius: 10px;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  margin-top: 0;
  margin-bottom: 1.75rem;
  transition: all .25s var(--ease-out);
  background: var(--ink);
  color: var(--white);
  border: 1px solid transparent;
}
.prc-btn:hover { background: var(--ink-hover); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(0,0,0,0.15); }

/* Feature list — sits below button */
.prc-features {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.prc-features li {
  display: block; /* inline text flow — preserves spaces between text and span */
  font-size: 0.875rem;
  color: var(--gray-dark);
  line-height: 1.55;
  padding-left: 1.4rem;
  position: relative;
}
.prc-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 3px;
  width: 14px; height: 14px;
  background-image: url("data:image/svg+xml,%3Csvg width='14' height='14' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='8' cy='8' r='7' stroke='%23f97316' stroke-width='1.5'/%3E%3Cpath d='M5 8l2 2 4-4' stroke='%23f97316' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
}
.prc-features li span {
  display: inline;
  color: var(--gray-mid);
  font-size: 0.75rem;
}

@media (max-width: 860px) { .prc-top { min-height: unset; } }

/* ===================================================================
   CONTACT SECTION — white background, ribbon, redesigned layout
   =================================================================== */

.contact-section {
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
}
.contact-ribbon {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
}
.contact-ribbon path:nth-child(1) { opacity: 0.08; animation: waveRise 13s ease-in-out infinite alternate; }
.contact-ribbon path:nth-child(2) { opacity: 0.045; animation: waveRise 19s ease-in-out infinite alternate; animation-delay: -7s; }

/* Two-column layout */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: start;
}
@media (max-width: 900px) { .contact-layout { grid-template-columns: 1fr; gap: 3rem; } }

/* Left column */
.contact-heading {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  color: var(--ink);
  line-height: 1.05;
  margin: 0.5rem 0 2.5rem;
}
.contact-section .label { color: var(--orange); }

/* Numbered steps */
.contact-steps-new {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 2.5rem;
}
.csn-item {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--paper-line);
}
.csn-item:last-child { border-bottom: none; }
.csn-num {
  font-family: var(--font-display);
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--orange);
  padding-top: 0.2rem;
}
.csn-item h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 0.3rem;
  letter-spacing: -0.01em;
}
.csn-item p {
  font-size: 0.875rem;
  color: var(--gray-dark);
  margin: 0;
  line-height: 1.55;
}

/* Contact details */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.5rem;
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--paper-line);
}
.cd-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
}
.cd-label {
  font-family: var(--font-display);
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-mid);
  min-width: 56px;
}
.cd-value {
  font-size: 0.9rem;
  color: var(--gray-dark);
  transition: color .25s var(--ease);
}
a.cd-item:hover .cd-value { color: var(--orange); }
.cd-socials { display: flex; gap: 1rem; }
.cd-socials a {
  font-size: 0.875rem;
  color: var(--gray-dark);
  transition: color .25s var(--ease);
}
.cd-socials a:hover { color: var(--orange); }

/* Right column — form */
.contact-right {
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--paper-line);
  padding: 2.5rem;
  box-shadow: 0 4px 24px rgba(0,0,0,0.05);
}

.contact-form-new {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.cfn-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 600px) { .cfn-row { grid-template-columns: 1fr; } }

.cfn-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.cfn-group label {
  font-family: var(--font-display);
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-mid);
}
.cfn-group input,
.cfn-group select,
.cfn-group textarea {
  width: 100%;
  padding: 0.7rem 0.9rem;
  background: var(--paper);
  border: 1.5px solid var(--paper-line);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--ink);
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
  outline: none;
}
.cfn-group input::placeholder,
.cfn-group textarea::placeholder { color: var(--gray-mid); }
.cfn-group input:focus,
.cfn-group select:focus,
.cfn-group textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(249,115,22,0.08);
}
.cfn-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%23f97316' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
  background-color: var(--paper);
  padding-right: 2.5rem;
  cursor: pointer;
}
.cfn-group textarea { resize: vertical; min-height: 120px; }

.cfn-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.9rem 1.5rem;
  background: var(--orange);
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 700;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background .25s var(--ease), transform .25s var(--ease-out), box-shadow .25s var(--ease);
  margin-top: 0.25rem;
}
.cfn-submit:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(249,115,22,0.25);
}

/* ===================================================================
   TENETS LIST — "Five things we actually believe"
   =================================================================== */
.tenets-list { display: flex; flex-direction: column; }
.tenet-row {
  display: flex; align-items: center; gap: 2rem;
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--ink-line);
  position: relative;
  padding-left: 0;
  transition: padding-left .35s var(--ease-out);
  cursor: default;
}
.tenet-row:first-child { border-top: 1px solid var(--ink-line); }
.tenet-row::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0;
  width: 3px; background: var(--orange);
  transform: scaleY(0); transform-origin: top;
  transition: transform .4s var(--ease-out); border-radius: 2px;
}
.tenet-row:hover { padding-left: 1.25rem; }
.tenet-row:hover::before { transform: scaleY(1); }
.tenet-row-num {
  font-family: var(--font-display); font-size: 0.62rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em; color: var(--orange);
  flex-shrink: 0; width: 3rem;
}
.tenet-row-body { flex: 1; min-width: 0; }
.tenet-row-title {
  font-family: var(--font-display); font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 700; color: var(--white); margin: 0 0 0.2rem;
  letter-spacing: -0.02em;
}
.tenet-row-desc { font-size: 0.875rem; color: var(--gray-dim); margin: 0; line-height: 1.5; }
.tenet-row-arrow {
  font-size: 1rem; color: var(--gray-dark); flex-shrink: 0;
  transition: color .3s var(--ease), transform .3s var(--ease-out);
}
.tenet-row:hover .tenet-row-arrow { color: var(--orange); transform: translateX(4px); }

/* ===================================================================
   HERO TITLE DOTS — make periods white on dark hero
   =================================================================== */
.page-hero-title { color: var(--white); }
.page-hero-title .orange { color: var(--orange); }

/* Fix: dots/periods inside page-hero-title are white by default
   because the whole h1 is var(--white) — they only appear "orange"
   if they're inside .orange span. No extra rule needed. */

/* ===================================================================
   PROFESSIONAL SCROLL ANIMATIONS
   Upgrade existing reveal with stagger + directional variants
   =================================================================== */

/* Slide up (default) */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .65s var(--ease-out), transform .65s var(--ease-out); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* Slide in from left */
.reveal-left { opacity: 0; transform: translateX(-32px); transition: opacity .65s var(--ease-out), transform .65s var(--ease-out); }
.reveal-left.visible { opacity: 1; transform: translateX(0); }

/* Slide in from right */
.reveal-right { opacity: 0; transform: translateX(32px); transition: opacity .65s var(--ease-out), transform .65s var(--ease-out); }
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* Scale up (cards) */
.reveal-scale { opacity: 0; transform: scale(0.95) translateY(12px); transition: opacity .55s var(--ease-out), transform .55s var(--ease-out); }
.reveal-scale.visible { opacity: 1; transform: scale(1) translateY(0); }

/* Stagger delays */
.reveal-d1 { transition-delay: 0.08s; }
.reveal-d2 { transition-delay: 0.14s; }
.reveal-d3 { transition-delay: 0.20s; }
.reveal-d4 { transition-delay: 0.27s; }
.reveal-d5 { transition-delay: 0.34s; }
.reveal-d6 { transition-delay: 0.41s; }

/* ===================================================================
   MICRO-INTERACTIONS — professional, clean, consistent
   =================================================================== */

/* Smooth image zoom on hover — apply to any image container */
.img-zoom { overflow: hidden; }
.img-zoom img { transition: transform .7s var(--ease-out); }
.img-zoom:hover img { transform: scale(1.04); }

/* Link underline slide — for inline text links */
.link-slide {
  position: relative;
  text-decoration: none;
}
.link-slide::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .3s var(--ease);
}
.link-slide:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* Card hover lift */
.hover-lift {
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out);
  will-change: transform;
}
.hover-lift:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.12);
}

/* Orange line draw on section heads — decorative underline animates in */
.section-head-anim .label {
  position: relative;
  display: inline-block;
}
.section-head-anim .label::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 100%; height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .5s var(--ease-out) .3s;
}
.section-head-anim.visible .label::after { transform: scaleX(1); }

/* Smooth focus states across all interactive elements */
button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
  border-radius: 3px;
}

/* Page transition handled by JS reveal animations instead */

/* ===================================================================
   SERVICE & TIER PAGES — shared layout
   =================================================================== */

.svc-page-section { overflow: hidden; }

.svc-page-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 5rem;
  align-items: start;
}
@media (max-width: 900px) { .svc-page-grid { grid-template-columns: 1fr; gap: 3rem; } }

.svc-page-left {
  position: sticky;
  top: 6rem;
}
.svc-page-left h2 { color: var(--ink); font-size: clamp(1.7rem, 3vw, 2.4rem); margin: 0.5rem 0 1rem; line-height: 1.15; }
.svc-page-left p { color: var(--gray-dark); font-size: 0.975rem; line-height: 1.75; margin-bottom: 1rem; }
.svc-page-left .label { color: var(--orange); }
@media (max-width: 900px) { .svc-page-left { position: relative; top: 0; } }

/* Tier meta info */
.tier-meta {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 1.75rem;
  padding: 1.25rem 1.5rem;
  background: var(--paper);
  border-radius: var(--radius);
  border: 1px solid var(--paper-line);
}
.tier-meta-item { display: flex; align-items: center; gap: 1rem; }
.tier-meta-label {
  font-family: var(--font-display);
  font-size: 0.6rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--gray-mid); min-width: 72px;
}
.tier-meta-val { font-size: 0.9rem; color: var(--ink); font-weight: 500; }

/* ===================================================================
   HERO SPLIT — new landing page format
   Left: dark text panel. Right: crisp image panel.
   =================================================================== */

.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100svh;
  background: var(--ink);
}
@media (max-width: 860px) {
  .hero-split { grid-template-columns: 1fr; }
}

/* Left panel */
.hero-split-left {
  display: flex;
  align-items: center;
  padding: 7rem 3rem 4rem;
  position: relative;
  background: var(--ink);
}
/* Subtle right edge line */
.hero-split-left::after {
  content: '';
  position: absolute;
  right: 0; top: 10%; bottom: 10%;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(249,115,22,0.15), transparent);
}
@media (min-width: 1240px) {
  .hero-split-left { padding-left: calc((100vw - 1240px) / 2 + 2rem); }
}
@media (max-width: 860px) {
  .hero-split-left { padding: 7rem 1.5rem 3rem; }
  .hero-split-left::after { display: none; }
}

.hero-split-content { max-width: 540px; }

.hero-split-eyebrow {
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--orange);
  display: block;
  margin-bottom: 1.5rem;
}

.hero-split-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.6rem, 4.5vw, 3.8rem);
  letter-spacing: -0.04em;
  line-height: 1.0;
  color: var(--white);
  margin: 0 0 1.25rem;
}

.hero-split-sub {
  font-size: 1rem;
  color: var(--gray);
  line-height: 1.7;
  max-width: 420px;
  margin: 0 0 2.25rem;
}

.hero-split-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

/* Stats row */
.hero-split-stat {
  display: flex;
  gap: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--ink-line);
}
.hss-item {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
.hss-item strong {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--orange);
  letter-spacing: -0.02em;
  line-height: 1;
}
.hss-item span {
  font-size: 0.68rem;
  color: var(--gray-dark);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-family: var(--font-display);
  font-weight: 600;
}

/* Right panel — pure image, no overlay fighting copy */
.hero-split-right {
  position: relative;
  overflow: hidden;
}
@media (max-width: 860px) {
  .hero-split-right { height: 55vw; min-height: 300px; }
}
.hero-split-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 8s ease-out;
}
.hero-split:hover .hero-split-right img {
  transform: scale(1.03);
}
/* Subtle left-edge feather into the dark panel */
.hero-split-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10,9,8,0.35) 0%, transparent 30%);
  pointer-events: none;
}

/* ===================================================================
   HERO IMMERSIVE — full-screen image, bottom-anchored text bar
   =================================================================== */

.hero-immersive {
  position: relative;
  width: 100%;
  height: 100svh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

/* Full-screen image */
.hi-img {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hi-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}
/* Gradient — heavy at bottom for text readability, lighter at top */
.hi-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10,9,8,0.05)  0%,
    rgba(10,9,8,0.0)  35%,
    rgba(10,9,8,0.55) 65%,
    rgba(10,9,8,0.92) 100%
  );
}

/* Top-left badge */
.hi-badge {
  position: absolute;
  top: 7rem;
  left: 2rem;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(229,224,214,0.55);
}
.hi-badge-dot { color: var(--orange); }
@media (min-width: 1240px) {
  .hi-badge { left: calc((100vw - 1240px) / 2 + 2rem); }
}

/* Bottom bar — two-column layout */
.hi-bar {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: end;
  padding: 2.5rem 2rem 3rem;
  max-width: 1240px;
  margin: 0 auto;
  width: 100%;
}
@media (min-width: 1240px) {
  .hi-bar {
    padding-left: calc((100vw - 1240px) / 2 + 2rem);
    padding-right: calc((100vw - 1240px) / 2 + 2rem);
  }
}
@media (max-width: 768px) {
  .hi-bar {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 2rem 1.5rem 2.5rem;
  }
}

.hi-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  letter-spacing: -0.04em;
  line-height: 1.0;
  color: var(--white);
  margin: 0;
}

.hi-bar-right {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: flex-start;
}

.hi-sub {
  font-size: 0.95rem;
  color: rgba(229,224,214,0.6);
  line-height: 1.65;
  margin: 0;
}

.hi-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

/* Scroll indicator */
.hi-scroll {
  position: absolute;
  bottom: 3rem;
  right: 2rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.hi-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, transparent, var(--orange));
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); transform-origin: top; }
  50%       { opacity: 1;   transform: scaleY(1);   }
}
.hi-scroll span {
  font-family: var(--font-display);
  font-size: 0.55rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(229,224,214,0.4);
  writing-mode: vertical-rl;
}
@media (max-width: 768px) { .hi-scroll { display: none; } }

/* ===================================================================
   HERO TYPE — oversized typographic hero, photo card bottom-right
   =================================================================== */

.hero-type {
  background: var(--ink);
  height: 100svh;
  min-height: 560px;
  max-height: 1000px;
  display: flex;
  align-items: stretch;
  position: relative;
  overflow: hidden;
}

/* Ribbon */
.hero-type-ribbon {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
}
.hero-type-ribbon path:nth-child(1) {
  opacity: 0.055;
  animation: ribbonDrift 20s ease-in-out infinite alternate;
}
.hero-type-ribbon path:nth-child(2) {
  opacity: 0.03;
  animation: ribbonDrift 28s ease-in-out infinite alternate;
  animation-delay: -10s;
}

.hero-type-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-top: 6.5rem;
  padding-bottom: 2.5rem;
  width: 100%;
}

/* Top bar */
.ht-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--ink-line);
  margin-bottom: 0;
}
.ht-label {
  font-family: var(--font-display);
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gray-dark);
}

/* Headline — sized to fit without overflow */
.ht-headline {
  display: flex;
  flex-direction: column;
  gap: 0;
  flex: 1;
  justify-content: center;
  padding: 1.5rem 0;
  margin: 0;
}
.ht-line {
  font-family: var(--font-display);
  font-weight: 800;
  /* clamp: min 2.8rem, prefer 7vw, max 6rem — stays in one line */
  font-size: clamp(2.8rem, 7vw, 6rem);
  letter-spacing: -0.045em;
  line-height: 0.95;
  color: var(--white);
  display: block;
  white-space: nowrap;
}
.ht-line--accent { color: var(--orange); }

@media (max-width: 768px) {
  .ht-line { white-space: normal; font-size: clamp(2.2rem, 10vw, 3rem); }
}

/* Bottom row */
.ht-bottom {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2.5rem;
  align-items: end;
  border-top: 1px solid var(--ink-line);
  padding-top: 1.5rem;
}
@media (max-width: 768px) {
  .ht-bottom { grid-template-columns: 1fr; gap: 1.5rem; }
}

.ht-sub {
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.65;
  margin: 0 0 1.25rem;
}

.ht-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

/* Photo card */
.ht-img-card {
  position: relative;
  width: 240px;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  overflow: hidden;
  flex-shrink: 0;
}
.ht-img-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s var(--ease-out);
}
.ht-img-card:hover img { transform: scale(1.04); }
.ht-img-stat {
  position: absolute;
  bottom: 0.75rem; left: 0.75rem;
  background: rgba(10,9,8,0.75);
  backdrop-filter: blur(8px);
  border-radius: 6px;
  padding: 0.4rem 0.75rem;
  display: flex;
  flex-direction: column;
}
.ht-img-stat strong {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
  letter-spacing: -0.02em;
}
.ht-img-stat span {
  font-family: var(--font-display);
  font-size: 0.52rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(229,224,214,0.5);
}
@media (max-width: 768px) {
  .ht-img-card { display: none; }
}

/* ===================================================================
   SERVICE DETAIL SECTION — white bg, ribbon, circle-tick deliverables
   =================================================================== */

.svc-detail-section {
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
}
.svc-detail-ribbon {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
}
.svc-detail-ribbon path:nth-child(1) { opacity: 0.08; animation: waveRise 12s ease-in-out infinite alternate; }
.svc-detail-ribbon path:nth-child(2) { opacity: 0.045; animation: waveRise 18s ease-in-out infinite alternate; animation-delay: -6s; }

/* Light-mode overrides for svc-page-grid inside detail section */
.svc-detail-section .svc-page-left h2 { color: var(--ink); }
.svc-detail-section .svc-page-left p { color: var(--gray-dark); }
.svc-detail-section .svc-page-left .label { color: var(--orange); }

/* Deliverables grid — 2 columns, light cards */
.svc-del-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(0,0,0,0.07);
  border-radius: var(--radius);
  overflow: hidden;
}
@media (max-width: 640px) { .svc-del-grid { grid-template-columns: 1fr; } }

.svc-del {
  background: #fff;
  padding: 1.75rem 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  transition: background .25s var(--ease);
}
.svc-del:hover { background: #f8f4ee; }

.svc-del-icon {
  flex-shrink: 0;
  width: 22px; height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}
.svc-del-icon svg { width: 20px; height: 20px; }

.svc-del h4 {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 0.3rem;
  letter-spacing: -0.01em;
}
.svc-del p {
  font-size: 0.82rem;
  color: var(--gray-dark);
  margin: 0;
  line-height: 1.55;
}

/* ===================================================================
   TIER INCLUDED SECTION — white bg, ribbon, circle-tick deliverables
   =================================================================== */

.tier-included-section {
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
}
.tier-included-ribbon {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
}
.tier-included-ribbon path:nth-child(1) { opacity: 0.08; animation: waveRise 11s ease-in-out infinite alternate; }
.tier-included-ribbon path:nth-child(2) { opacity: 0.045; animation: waveRise 17s ease-in-out infinite alternate; animation-delay: -5s; }

.tier-included-section .svc-page-left h2 { color: var(--ink); }
.tier-included-section .svc-page-left p { color: var(--gray-dark); }
.tier-included-section .svc-page-left .label { color: var(--orange); }

/* Deliverables grid reuses .svc-del-grid and .svc-del */
.tier-deliverables {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(0,0,0,0.07);
  border-radius: var(--radius);
  overflow: hidden;
}
@media (max-width: 640px) { .tier-deliverables { grid-template-columns: 1fr; } }

.tier-del {
  background: #fff;
  padding: 1.75rem 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  transition: background .25s var(--ease);
}
.tier-del:hover { background: #f8f4ee; }

.tier-del-icon {
  flex-shrink: 0;
  width: 22px; height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
  font-size: 1rem;
  color: var(--orange);
}

.tier-del h4 {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 0.3rem;
  letter-spacing: -0.01em;
}
.tier-del p {
  font-size: 0.82rem;
  color: var(--gray-dark);
  margin: 0;
  line-height: 1.55;
}

/* === BLOG ARTICLE === */
.post-hero{padding:10rem 0 4rem;background:var(--ink);position:relative;overflow:hidden}
.post-hero::before{content:'';position:absolute;top:0;left:0;right:0;height:1px;background:linear-gradient(90deg,transparent,rgba(249,115,22,0.08),transparent)}
.post-meta{display:flex;gap:1rem;align-items:center;flex-wrap:wrap;margin-bottom:0.75rem}
.post-meta-item{font-family:var(--font-display);font-size:0.6rem;font-weight:700;text-transform:uppercase;letter-spacing:0.12em;color:var(--gray-dark)}
.post-meta-dot{width:3px;height:3px;border-radius:50%;background:var(--gray-dark);display:inline-block}
.post-hero-tags{display:flex;gap:0.4rem;flex-wrap:wrap;margin-bottom:1.25rem}
.post-hero-tag{font-family:var(--font-display);font-size:0.58rem;font-weight:700;text-transform:uppercase;letter-spacing:0.1em;color:var(--orange);background:rgba(249,115,22,0.08);border:1px solid rgba(249,115,22,0.2);padding:0.2rem 0.6rem;border-radius:3px}
.post-hero-title{font-family:var(--font-display);font-weight:800;font-size:clamp(2rem,4.5vw,3.5rem);letter-spacing:-0.04em;line-height:1.05;color:var(--white);margin:0 0 0.75rem;max-width:800px}
.post-hero-sub{font-size:clamp(1rem,1.5vw,1.15rem);color:var(--gray);line-height:1.6;max-width:600px;margin:0}
.post-body{padding:4rem 0}
.post-content{max-width:680px;margin:0 auto}
.post-content h2{font-family:var(--font-display);font-weight:800;font-size:clamp(1.3rem,2.5vw,1.75rem);letter-spacing:-0.03em;color:var(--white);margin:2.5rem 0 1rem;line-height:1.2}
.post-content h3{font-family:var(--font-display);font-weight:700;font-size:clamp(1rem,2vw,1.2rem);letter-spacing:-0.02em;color:var(--white);margin:2rem 0 0.75rem}
.post-content p{font-size:1rem;line-height:1.8;color:var(--gray);margin:0 0 1.25rem}
.post-content p:last-child{margin-bottom:0}
.post-content strong{color:var(--white);font-weight:600}
.post-content a{color:var(--orange);text-decoration:underline;text-underline-offset:2px;text-decoration-thickness:1px;transition:color .2s}
.post-content a:hover{color:#fff}
.post-content ul,.post-content ol{margin:0 0 1.25rem;padding-left:1.25rem;color:var(--gray);line-height:1.8}
.post-content li{margin-bottom:0.4rem}
.post-content blockquote{border-left:2px solid var(--orange);padding:0.5rem 0 0.5rem 1.5rem;margin:1.5rem 0;font-family:var(--font-display);font-size:clamp(1rem,1.8vw,1.15rem);font-weight:600;color:var(--white);line-height:1.5;letter-spacing:-0.01em}
.post-content blockquote p{margin:0;color:var(--white)}
.post-content img{width:100%;border-radius:var(--radius);margin:2rem 0;display:block}
.post-content .post-img-caption{font-size:0.78rem;color:var(--gray-dim);text-align:center;margin-top:-1.5rem;margin-bottom:2rem}
.post-divider{height:1px;background:var(--ink-line);margin:3rem 0}
.post-footer{display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:1rem;padding-top:1.5rem}
.post-tags{display:flex;gap:0.4rem;flex-wrap:wrap}
.post-tag{font-family:var(--font-display);font-size:0.58rem;font-weight:700;text-transform:uppercase;letter-spacing:0.1em;color:var(--gray-dark);background:var(--ink-card);border:1px solid var(--ink-line);padding:0.2rem 0.6rem;border-radius:3px;text-decoration:none;transition:color .2s,background .2s}
.post-tag:hover{color:var(--orange);background:rgba(249,115,22,0.08);border-color:rgba(249,115,22,0.2)}
.post-share{display:flex;gap:0.5rem;align-items:center}
.post-share-label{font-family:var(--font-display);font-size:0.6rem;font-weight:700;text-transform:uppercase;letter-spacing:0.1em;color:var(--gray-dark)}
.post-share a{display:inline-flex;align-items:center;justify-content:center;width:32px;height:32px;border-radius:50%;background:var(--ink-card);border:1px solid var(--ink-line);color:var(--gray-dim);font-size:0.75rem;font-weight:600;text-decoration:none;transition:color .2s,background .2s,border-color .2s}
.post-share a:hover{color:var(--orange);background:rgba(249,115,22,0.08);border-color:rgba(249,115,22,0.2)}

.bg-white .post-content h2,.bg-white .post-content h3{color:var(--ink)}
.bg-white .post-content strong{color:var(--ink)}
.bg-white .post-content blockquote{color:var(--ink)}
.bg-white .post-content blockquote p{color:var(--ink)}
.bg-white .cs-nav-item{background:var(--paper-card)}
.bg-white .btn-ghost{border-color:rgba(0,0,0,0.12);color:var(--gray-dark)}
.bg-white .btn-ghost:hover{border-color:var(--orange);color:var(--orange)}

/* === BLOG NAVIGATION === */
.post-nav{padding:2rem 0}
.post-nav-inner{display:flex;align-items:center;justify-content:space-between;gap:1rem}
.post-back{display:inline-flex;align-items:center;gap:0.5rem;font-family:var(--font-display);font-size:0.78rem;font-weight:700;text-transform:uppercase;letter-spacing:0.08em;color:var(--gray);padding:0.6rem 1.2rem;border:1.5px solid rgba(255,255,255,0.1);border-radius:999px;text-decoration:none;transition:all .25s var(--ease)}
.post-back:hover{border-color:var(--orange);color:var(--orange);gap:0.75rem}
.post-breadcrumb{font-family:var(--font-display);font-size:0.65rem;font-weight:600;text-transform:uppercase;letter-spacing:0.12em;color:var(--gray-dim)}
.post-nav-adjacent{display:flex;flex-direction:column;gap:0.15rem}
.post-nav-adjacent-dir{font-family:var(--font-display);font-size:0.6rem;font-weight:700;text-transform:uppercase;letter-spacing:0.1em;color:var(--gray-dark)}
.post-nav-adjacent-name{font-family:var(--font-display);font-size:0.85rem;font-weight:700;color:var(--white);text-decoration:none;transition:color .2s;line-height:1.3}
.post-nav-adjacent-name:hover{color:var(--orange)}

/* === RIBBON BG DECORATION === */
.ribbon-bg{position:relative;overflow:hidden}
.ribbon-bg::before,.ribbon-bg::after{content:'';position:absolute;pointer-events:none;z-index:0}
.ribbon-bg::before{top:-15%;right:-10%;width:55%;height:130%;background:linear-gradient(160deg,rgba(249,115,22,0.07),rgba(249,115,22,0.02) 70%);border-radius:40% 60% 25% 75%/50% 35% 65% 50%;transform:rotate(-12deg)}
.ribbon-bg::after{bottom:-10%;left:-8%;width:40%;height:90%;background:linear-gradient(30deg,rgba(249,115,22,0.05),rgba(249,115,22,0.01) 70%);border-radius:65% 35% 55% 45%/40% 60% 40% 60%;transform:rotate(8deg)}
.ribbon-bg>*{position:relative;z-index:1}


/* ===================================================================
   BLOG POST — individual article layout (white bg + ribbons)
   =================================================================== */

.post-hero {
  background: var(--paper);
  padding: 8rem 0 4rem;
  border-bottom: 1px solid var(--paper-line);
  position: relative;
  overflow: hidden;
}
.post-hero-ribbon {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none; z-index: 0;
}
.post-hero-ribbon path:nth-child(1) { opacity: 0.08; animation: waveRise 12s ease-in-out infinite alternate; }
.post-hero-ribbon path:nth-child(2) { opacity: 0.045; animation: waveRise 18s ease-in-out infinite alternate; animation-delay: -6s; }
.post-hero .container { position: relative; z-index: 1; }
.post-hero-inner { max-width: 100%; }

.post-meta { display: flex; align-items: center; gap: 0.75rem; flex-wrap: wrap; margin-bottom: 1.75rem; }
.post-tag {
  font-family: var(--font-display); font-size: 0.6rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--orange); background: rgba(249,115,22,0.1);
  border: 1px solid rgba(249,115,22,0.2); padding: 0.2rem 0.6rem; border-radius: 4px;
}
.post-read-time {
  font-family: var(--font-display); font-size: 0.65rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.1em; color: var(--gray-dark);
}
.post-title {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(2rem, 5vw, 3.5rem); letter-spacing: -0.04em;
  line-height: 1.05; color: var(--ink); margin: 0 0 1.25rem;
}
.post-subtitle {
  font-size: 1.05rem; color: var(--gray-dark);
  line-height: 1.7; margin: 0; max-width: 100%;
}

/* Article body — white with ribbon */
.post-body {
  padding: 4rem 0 5rem;
  background: var(--paper);
  position: relative; overflow: hidden;
}
.post-body-ribbon {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none; z-index: 0;
}
.post-body-ribbon path:nth-child(1) { opacity: 0.055; animation: ribbonDrift 24s ease-in-out infinite alternate; }
.post-body-ribbon path:nth-child(2) { opacity: 0.028; animation: ribbonDrift 32s ease-in-out infinite alternate; animation-delay: -12s; }
.post-body .container { position: relative; z-index: 1; }
.post-body-inner { max-width: 100%; }

.post-body-inner h2 {
  font-family: var(--font-display); font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 700; letter-spacing: -0.03em; color: var(--ink);
  margin: 3rem 0 1rem; line-height: 1.15;
}
.post-body-inner h2:first-child { margin-top: 0; }
.post-body-inner h3 {
  font-family: var(--font-display); font-size: 1.1rem; font-weight: 700;
  color: var(--ink); margin: 2rem 0 0.6rem;
}
.post-body-inner p { font-size: 1.05rem; color: var(--gray-dark); line-height: 1.85; margin-bottom: 1.5rem; }
.post-body-inner p:last-child { margin-bottom: 0; }
.post-body-inner strong { color: var(--ink); font-weight: 700; }
.post-body-inner em { color: var(--orange); font-style: normal; }

/* Pull quote */
.post-pull {
  border-left: 3px solid var(--orange);
  padding: 1.5rem 2rem; margin: 2.5rem 0;
  background: rgba(249,115,22,0.06);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.post-pull p {
  font-family: var(--font-display); font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 600; color: var(--ink); letter-spacing: -0.015em;
  line-height: 1.45; margin: 0;
}

/* Divider */
.post-divider { height: 1px; background: var(--paper-line); margin: 3rem 0; }

/* Post footer — white with ribbon, full next-article card */
.post-footer {
  border-top: 1px solid var(--paper-line);
  padding: 4rem 0 5rem;
  background: var(--paper);
  position: relative;
  overflow: hidden;
}
.post-footer-ribbon {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none; z-index: 0;
}
.post-footer-ribbon path:nth-child(1) { opacity: 0.07; animation: waveRise 14s ease-in-out infinite alternate; }
.post-footer-ribbon path:nth-child(2) { opacity: 0.035; animation: waveRise 20s ease-in-out infinite alternate; animation-delay: -7s; }
.post-footer .container { position: relative; z-index: 1; }

.post-footer-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 768px) { .post-footer-inner { grid-template-columns: 1fr; gap: 2.5rem; } }

/* Left: CTA */
.post-footer-left { display: flex; flex-direction: column; gap: 1rem; }
.post-footer-left h3 {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 800; letter-spacing: -0.03em;
  color: var(--ink); margin: 0;
}
.post-footer-left p { font-size: 0.9rem; color: var(--gray-dark); margin: 0; line-height: 1.6; }

/* Right: next article card */
.post-next {
  display: block;
  text-decoration: none;
  background: #fff;
  border: 1px solid var(--paper-line);
  border-radius: 12px;
  padding: 2rem;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease), transform .3s var(--ease-out);
}
.post-next:hover {
  border-color: var(--orange);
  box-shadow: 0 8px 32px rgba(249,115,22,0.1);
  transform: translateY(-3px);
}
.post-next-label {
  font-family: var(--font-display);
  font-size: 0.6rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--orange); display: block; margin-bottom: 0.6rem;
}
.post-next-title {
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  font-weight: 800; letter-spacing: -0.025em;
  color: var(--ink); display: block; margin-bottom: 0.5rem; line-height: 1.2;
  transition: color .25s var(--ease);
}
.post-next:hover .post-next-title { color: var(--orange); }
.post-next-desc {
  font-size: 0.875rem; color: var(--gray-dark);
  line-height: 1.55; margin: 0 0 1rem;
}
.post-next-read {
  font-family: var(--font-display);
  font-size: 0.7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--orange); display: inline-flex; align-items: center; gap: 0.3rem;
  transition: gap .25s var(--ease);
}
.post-next:hover .post-next-read { gap: 0.55rem; }

/* === MOBILE & TABLET OPTIMIZATIONS === */
@media (max-width: 768px) {
  .section { padding: 4rem 0; }
  .manifesto { padding: 5rem 0; }
  .work-section { padding: 3rem 0 4rem; }
  .cta-section { padding: 5rem 0; }
  .page-hero-body { padding-top: 5rem; padding-bottom: 3.4rem; justify-content: flex-end; }
  .page-hero { min-height: 85vh; }
  .page-hero-title-wrap { padding: 0.5rem 0; }
  .page-hero-bottom { padding-top: 1rem; }
  .page-hero-sub { font-size: 0.85rem; max-width: 100%; }
  .post-hero { padding: 8rem 0 3rem; }
  .post-body { padding: 3rem 0; }
  .cs-hero { min-height: 70vh; }
  .cs-hero-body { padding: 5rem 0 3rem; }
  .cs-brief-label { font-size: 0.72rem; }
  .cs-metric { padding: 1.5rem; }
  /* Contact page mobile spacing */
  .contact-section { padding: 3rem 0; }
  .contact-layout { gap: 2rem; }
  .contact-heading { font-size: clamp(1.6rem, 6vw, 2rem); margin: 0.25rem 0 1.5rem; }
  .csn-item { padding: 1rem 0; }
  .contact-details { padding: 1rem; }
  .contact-right { padding: 1.5rem; }
}
@media (max-width: 640px) {
  .section { padding: 3rem 0; }
  .manifesto { padding: 4rem 0; }
  .manifesto-grid { gap: 2rem; }
  .page-hero { min-height: 75vh; }
  .page-hero-body { padding-top: 4rem; padding-bottom: 2.9rem; }
  .page-hero-title-wrap { padding: 0; }
  .page-hero-title { font-size: clamp(2.4rem, 14vw, 4rem); }
  .page-hero-bottom { padding-top: 0.5rem; gap: 0.75rem; }
  .post-hero { padding: 7rem 0 2.5rem; }
  .post-hero-title { font-size: clamp(1.5rem, 8vw, 2rem); }
  .post-content { padding: 0 0.5rem; }
  .post-nav-inner { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
  .post-nav-adjacent[style*="text-align:right"] { align-self: flex-end; text-align: right; }
  .tiers-col { padding: 2rem 1.5rem; }
  .cs-metrics-inner { flex-wrap: wrap; }
  .cs-metric { flex: 1 1 50%; padding: 1.25rem; }
  .cs-metric:nth-last-child(-n+2) { border-bottom: none; }
  .footer { padding: 3rem 0 1.5rem; }
  .footer-grid { gap: 2rem; }
  .contact-section { padding: 2rem 0; }
  .contact-layout { gap: 1.5rem; }
  .contact-heading { margin: 0.25rem 0 1rem; }
  .contact-details { padding: 0.75rem; }
  .contact-right { padding: 1rem; }
  .contact-form-new { gap: 0.75rem; }
}
@media (max-width: 480px) {
  .page-hero { min-height: 70vh; }
  .page-hero-body { padding-top: 3.5rem; padding-bottom: 2.4rem; }
  .page-hero-title { font-size: clamp(2rem, 12vw, 3rem); }
  .page-hero-sub { font-size: 0.78rem; display: block !important; max-width: 100%; }
  .page-hero-bottom .btn { font-size: 0.82rem; padding: 0.55rem 1.1rem; }
  .cs-hero-title { font-size: clamp(2rem, 12vw, 3rem); }
  .post-back { font-size: 0.7rem; padding: 0.5rem 1rem; }
  .post-nav-adjacent-name { font-size: 0.78rem; }
  .tiers-name { font-size: 1.1rem; }
  .tiers-price { font-size: 1rem; }
  .cs-deliverable { padding: 1.5rem; }
  .cs-deliverable h4 { font-size: 0.95rem; }
}

/* ===== Go to Top Button ===== */
#go-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 9998;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px) scale(0.9);
  transition: opacity .35s var(--ease-out), transform .35s var(--ease-out), visibility .35s var(--ease-out), background .25s var(--ease), box-shadow .25s var(--ease);
  box-shadow: 0 4px 16px rgba(249,115,22,0.35);
}
#go-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}
#go-to-top:hover {
  background: var(--orange-dark);
  transform: translateY(-3px) scale(1);
  box-shadow: 0 8px 28px rgba(249,115,22,0.5);
}
#go-to-top:active {
  transform: translateY(0) scale(0.95);
}
#go-to-top svg { display: block; stroke: #fff; }
@media (max-width: 640px) {
  #go-to-top { bottom: 1.25rem; right: 1.25rem; width: 38px; height: 38px; }
}

/* ===== Google Translate — Custom Floating ===== */
/* Hide ALL default Google Translate UI elements completely */
.goog-te-banner-frame.skiptranslate,
.goog-te-banner-frame,
.goog-te-menu-frame,
.goog-te-gadget-icon,
#goog-gt-tt,
.skiptranslate > iframe,
.goog-te-menu-value span:nth-child(3),
.goog-te-menu-value span:nth-child(5),
.goog-te-gadget img {
  display: none !important;
}
body { top: 0px !important; }

/* Google Translate widget is hidden — nav.js handles the custom language UI */
#google_translate_element_wrapper {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  height: 0;
  overflow: hidden;
}
#google_translate_element_wrapper .goog-te-gadget-simple {
  background: var(--ink-card) !important;
  border: 1px solid var(--ink-line) !important;
  border-radius: 100px !important;
  padding: 0 !important;
  font-family: var(--font-display) !important;
  font-size: 0 !important;
  line-height: 1 !important;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3) !important;
  cursor: pointer !important;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease) !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 0 !important;
  overflow: hidden !important;
}
#google_translate_element_wrapper .goog-te-gadget-simple:hover {
  border-color: var(--gray-dark) !important;
  box-shadow: 0 6px 28px rgba(0,0,0,0.4) !important;
}
/* Custom pill button replacing the Google widget */
#google_translate_element_wrapper .goog-te-gadget-simple .goog-te-menu-value {
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.4rem !important;
  padding: 0.5rem 0.9rem 0.5rem 0.75rem !important;
  font-family: var(--font-display) !important;
  font-size: 0.72rem !important;
  font-weight: 600 !important;
  color: var(--gray) !important;
  letter-spacing: 0.02em !important;
  cursor: pointer !important;
}
#google_translate_element_wrapper .goog-te-gadget-simple .goog-te-menu-value::before {
  content: '';
  display: inline-block;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23a39e94' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath d='M2 12h20M12 2a15.3 15.3 0 014 10 15.3 15.3 0 01-4 10 15.3 15.3 0 01-4-10 15.3 15.3 0 014-10z'/%3E%3C/svg%3E") no-repeat center;
  background-size: contain;
}
#google_translate_element_wrapper .goog-te-gadget-simple .goog-te-menu-value span:first-child {
  color: var(--gray) !important;
}
/* Dropdown — completely custom styled */
.goog-te-menu2 {
  background: var(--ink-card) !important;
  border: 1px solid var(--ink-line) !important;
  border-radius: 12px !important;
  box-shadow: 0 8px 40px rgba(0,0,0,0.5) !important;
  padding: 0.4rem !important;
  max-height: 280px !important;
  overflow-y: auto !important;
}
.goog-te-menu2::-webkit-scrollbar { width: 4px; }
.goog-te-menu2::-webkit-scrollbar-thumb { background: var(--gray-dark); border-radius: 2px; }
.goog-te-menu2 table,
.goog-te-menu2 table tr,
.goog-te-menu2 table td {
  border: none !important;
  background: transparent !important;
}
.goog-te-menu2 a {
  font-family: var(--font-display) !important;
  font-size: 0.8rem !important;
  font-weight: 500 !important;
  color: var(--gray) !important;
  padding: 0.45rem 0.9rem !important;
  border-radius: 8px !important;
  display: block !important;
  transition: background .2s var(--ease), color .2s var(--ease) !important;
  white-space: nowrap !important;
  border: none !important;
  background: transparent !important;
}
.goog-te-menu2 a:hover {
  background: var(--ink-hover) !important;
  color: var(--white) !important;
}
.goog-te-menu2 a .text {
  color: inherit !important;
}
@media (max-width: 768px) {
  #google_translate_element_wrapper { bottom: 0.75rem; left: 0.75rem; }
}
@media (max-width: 480px) {
  #google_translate_element_wrapper { bottom: 4.5rem; left: 0.5rem; }
  #google_translate_element_wrapper .goog-te-gadget-simple .goog-te-menu-value { font-size: 0.65rem !important; padding: 0.35rem 0.7rem 0.35rem 0.55rem !important; }
  #google_translate_element_wrapper .goog-te-gadget-simple .goog-te-menu-value::before { width: 14px; height: 14px; }
}

/* ===== Newsletter ===== */
.newsletter-section {
  background: var(--ink-surface);
  border-top: 1px solid var(--ink-line);
  border-bottom: 1px solid var(--ink-line);
  padding: 4rem 0;
}
.newsletter-inner {
  display: flex;
  align-items: center;
  gap: 3rem;
  max-width: 700px;
  margin: 0 auto;
}
.newsletter-inner h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  color: var(--white);
  margin: 0;
  flex-shrink: 0;
}
.newsletter-form {
  display: flex;
  gap: 0.5rem;
  flex: 1;
  min-width: 0;
}
.newsletter-form input[type="email"] {
  flex: 1;
  min-width: 0;
  padding: 0.7rem 1rem;
  background: var(--ink-card);
  border: 1.5px solid var(--ink-line);
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--white);
  outline: none;
  transition: border-color .25s var(--ease);
}
.newsletter-form input[type="email"]::placeholder { color: var(--gray-dim); }
.newsletter-form input[type="email"]:focus { border-color: var(--orange); }
.newsletter-form .btn-orange { flex-shrink: 0; }
.newsletter-message {
  font-size: 0.8rem;
  color: var(--gray-dim);
  margin-top: 0.5rem;
  text-align: center;
}
.newsletter-message.success { color: #4ade80; }
.newsletter-message.error { color: #f87171; }
@media (max-width: 640px) {
  .newsletter-inner { flex-direction: column; gap: 1rem; text-align: center; }
  .newsletter-form { width: 100%; flex-direction: column; }
  .newsletter-form input[type="email"] { width: 100%; }
  .newsletter-form .btn-orange { width: 100%; }
}

/* ===== Legal Page Navigation ===== */
.legal-nav {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--paper-line);
}
.legal-nav a {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.5rem 1.25rem;
  border-radius: 100px;
  border: 1.5px solid var(--paper-line);
  color: var(--gray-dark);
  transition: all .25s var(--ease);
  text-decoration: none;
}
.legal-nav a:hover,
.legal-nav a.active {
  border-color: var(--orange);
  color: var(--orange);
  background: rgba(249,115,22,0.06);
}

/* ===== Cookie Consent Banner ===== */
#cookie-banner {
  display: none;
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  background: var(--ink-card);
  border: 1px solid var(--ink-line);
  border-radius: 16px;
  padding: 1.25rem 1.5rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.5;
  box-shadow: 0 12px 48px rgba(0,0,0,0.5);
  animation: cookieSlideUp 0.5s var(--ease-out);
  max-width: min(90vw, 720px);
  width: 100%;
}
@keyframes cookieSlideUp {
  from { transform: translateX(-50%) translateY(30px); opacity: 0; }
  to { transform: translateX(-50%) translateY(0); opacity: 1; }
}
#cookie-banner .cookie-inner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
#cookie-banner .cookie-text {
  font-size: 0.85rem;
  line-height: 1.55;
}
#cookie-banner .cookie-text a {
  color: var(--orange);
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 600;
}
#cookie-banner .cookie-text a:hover {
  color: var(--orange-dark);
}
#cookie-banner .cookie-buttons {
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
}
#cookie-banner .btn-cookie {
  padding: 0.65rem 1.35rem;
  border: none;
  border-radius: 100px;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s var(--ease);
  flex: 1;
  text-align: center;
}
#cookie-banner .btn-cookie-accept {
  background: var(--orange);
  color: var(--ink);
}
#cookie-banner .btn-cookie-accept:hover {
  background: var(--orange-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(249,115,22,0.3);
}
#cookie-banner .btn-cookie-essential {
  background: transparent;
  color: var(--gray);
  border: 1px solid var(--gray-dark);
}
#cookie-banner .btn-cookie-essential:hover {
  border-color: var(--gray);
  color: var(--white);
  background: rgba(255,255,255,0.04);
}
@media (max-width: 640px) {
  #cookie-banner { bottom: 0.75rem; padding: 1rem 1.25rem; border-radius: 12px; max-width: 96vw; }
  #cookie-banner .cookie-buttons { flex-direction: column; }
  #cookie-banner .btn-cookie { width: 100%; }
  .goog-te-gadget-simple { font-size: 0.7rem !important; padding: 3px 8px !important; }
}

/* ===== Enhanced Reveal Animations ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-d2 { transition-delay: 0.15s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.45s; }
.reveal-d5 { transition-delay: 0.6s; }
.reveal-d6 { transition-delay: 0.75s; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  #cookie-banner { animation: none; }
  html { scroll-behavior: auto; }
}

/* ===== Focus styles for accessibility ===== */
:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
  border-radius: 4px;
}
button:focus-visible,
a:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 2px;
}

/* ===== Image lazy-load fade-in ===== */
img[loading="lazy"] {
  opacity: 0;
  transition: opacity 0.5s var(--ease-out);
}
img[loading="lazy"].loaded,
img[loading="lazy"][complete] {
  opacity: 1;
}

/* ===== Smooth scrollbar ===== */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--ink); }
::-webkit-scrollbar-thumb { background: var(--gray-dark); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--gray-dim); }

/* ===================================================================
   FLOATING UTILITY BAR — back-to-top + language switcher
   Fixed bottom-right, always visible after scroll
   =================================================================== */

/* Suppress Google's own UI chrome */
.goog-te-banner-frame.skiptranslate { display: none !important; }
body { top: 0 !important; }
.goog-te-gadget-icon { display: none !important; }
.goog-te-gadget { font-size: 0 !important; }
.goog-te-gadget select { font-size: 0.75rem !important; }
#google_translate_element_wrapper { display: none; }

/* The floating pill container */
.float-bar {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 500;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: flex-end;
}

/* Language switcher — bottom LEFT */
.float-bar--lang {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  z-index: 500;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: flex-start;
}

/* Each button in the bar */
.float-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  transition: transform .3s var(--ease-out), box-shadow .3s var(--ease-out), opacity .3s var(--ease);
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
}
.float-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.3); }

/* Back to top — orange fill */
.float-btn--top {
  background: var(--orange);
  color: var(--ink);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
}
.float-btn--top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.float-btn--top:hover { background: var(--orange-dark); }

/* Language — dark with orange border */
.float-btn--lang {
  background: var(--ink-card);
  color: var(--white);
  border: 1.5px solid rgba(249,115,22,0.35);
  position: relative;
}
.float-btn--lang:hover { border-color: var(--orange); }

/* Flag/globe emoji shown on the language button */
.float-btn-flag {
  font-size: 1.1rem;
  line-height: 1;
  display: block;
}

/* Language dropdown panel — opens up from left */
.float-lang-panel {
  position: absolute;
  bottom: calc(100% + 0.5rem);
  left: 0;
  right: auto;
  background: var(--ink-card);
  border: 1px solid rgba(249,115,22,0.2);
  border-radius: 10px;
  padding: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  min-width: 160px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  opacity: 0;
  pointer-events: none;
  transform: translateY(6px) scale(0.97);
  transform-origin: bottom left;
  transition: opacity .25s var(--ease-out), transform .25s var(--ease-out);
}
.float-lang-panel.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.float-lang-opt {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  text-align: left;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gray);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: background .2s var(--ease), color .2s var(--ease);
}
.float-lang-opt:hover { background: rgba(249,115,22,0.1); color: var(--white); }
.float-lang-opt.active { color: var(--orange); }
.float-lang-flag { font-size: 1rem; line-height: 1; }

@media (max-width: 480px) {
  .float-bar { bottom: 1.25rem; right: 1.25rem; }
  .float-bar--lang { bottom: 1.25rem; left: 1.25rem; }
}

/* ===================================================================
   EMAIL MODALS — newsletter signup + confirmation cards
   =================================================================== */

/* Backdrop */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(10,9,8,0.6);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s var(--ease);
}
.modal-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

/* Card */
.modal-card {
  background: #fff;
  border-radius: 28px;
  width: 100%;
  max-width: 400px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.35);
  transform: translateY(16px) scale(0.97);
  transition: transform .4s var(--ease-out), opacity .35s var(--ease-out);
}
.modal-backdrop.open .modal-card {
  transform: translateY(0) scale(1);
}

/* Close button */
.modal-close {
  position: absolute;
  top: 1rem; right: 1rem;
  width: 32px; height: 32px;
  border-radius: 50%;
  border: none;
  background: rgba(0,0,0,0.07);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  z-index: 2;
  transition: background .2s var(--ease);
}
.modal-close:hover { background: rgba(0,0,0,0.14); }
.modal-close svg { stroke: #333; }

/* ── NEWSLETTER MODAL ── */
.modal-nl-header {
  background: linear-gradient(160deg, #f97316 0%, #fbbf24 100%);
  padding: 3rem 2rem 3.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
/* Decorative concentric arcs */
.modal-nl-header::before,
.modal-nl-header::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.15);
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
}
.modal-nl-header::before { width: 280px; height: 280px; }
.modal-nl-header::after  { width: 180px; height: 180px; }

/* SVG envelope illustration */
.modal-envelope {
  position: relative; z-index: 1;
  filter: drop-shadow(0 16px 32px rgba(0,0,0,0.2));
}

/* Body */
.modal-body {
  padding: 2rem 2rem 2.25rem;
  text-align: center;
}
.modal-body h2 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.035em;
  color: var(--ink);
  margin: 0 0 0.6rem;
  line-height: 1.15;
}
.modal-body p {
  font-size: 0.9rem;
  color: var(--gray-mid);
  line-height: 1.6;
  margin: 0 0 1.5rem;
}
.modal-input-wrap {
  position: relative;
  margin-bottom: 0.75rem;
}
.modal-input {
  width: 100%;
  padding: 0.85rem 1.25rem;
  border: 1.5px solid rgba(0,0,0,0.1);
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--ink);
  background: #fff;
  outline: none;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.modal-input::placeholder { color: var(--gray-mid); }
.modal-input:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(249,115,22,0.12);
}
.modal-btn {
  width: 100%;
  padding: 0.9rem 1.5rem;
  border-radius: 999px;
  border: none;
  background: var(--orange);
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 800;
  cursor: pointer;
  transition: background .25s var(--ease), transform .25s var(--ease-out), box-shadow .25s var(--ease);
  letter-spacing: 0.01em;
}
.modal-btn:hover {
  background: var(--orange-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(249,115,22,0.3);
}
.modal-fine {
  font-size: 0.72rem;
  color: var(--gray-mid);
  margin: 0.75rem 0 0;
}

/* ── CONFIRMATION MODAL ── */
.modal-confirm-body {
  padding: 2.5rem 2rem 2.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.modal-confirm-icon {
  width: 88px; height: 88px;
  margin-bottom: 1.5rem;
  position: relative;
}
.modal-confirm-icon::after {
  content: '';
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(249,115,22,0.15), transparent 70%);
}
.modal-confirm-body h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin: 0 0 0.75rem;
}
.modal-confirm-body p {
  font-size: 0.9rem;
  color: var(--gray-mid);
  line-height: 1.65;
  margin: 0 0 2rem;
  max-width: 280px;
}
.modal-confirm-body p strong { color: var(--orange); font-weight: 600; }
.modal-btn-dark {
  width: 100%;
  padding: 0.9rem 1.5rem;
  border-radius: 999px;
  border: none;
  background: var(--ink);
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 800;
  cursor: pointer;
  transition: background .25s var(--ease), transform .25s var(--ease-out);
  letter-spacing: 0.01em;
}
.modal-btn-dark:hover { background: var(--ink-hover); transform: translateY(-1px); }

/* Subscribe button in nav */
.btn-subscribe {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.12);
  color: var(--gray);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.82rem;
  padding: 0.45rem 1.1rem;
  border-radius: 999px;
  cursor: pointer;
  transition: border-color .25s var(--ease), color .25s var(--ease), background .25s var(--ease);
  white-space: nowrap;
}
.btn-subscribe:hover {
  border-color: var(--orange);
  color: var(--orange);
}
.navbar.scrolled .btn-subscribe {
  border-color: rgba(255,255,255,0.1);
}
@media (max-width: 768px) {
  .btn-subscribe { display: none; }
}

/* ===================================================================
   MOBILE OPTIMISATION — comprehensive pass (375px – 768px)
   Addresses all components identified in the mobile audit.
   Appended after all other rules so specificity is correct.
   =================================================================== */

/* ── 1. GLOBAL SECTION PADDING ─────────────────────────────────── */
@media (max-width: 768px) {
  .section { padding: 3.5rem 0; }
  .manifesto { padding: 4rem 0 !important; }
  .cta-section { padding: 4rem 0 !important; }
  .work-section { padding: 3rem 0 4rem !important; }
  .svc-split-section { padding: 3.5rem 0 !important; }
  .about-vm-section,
  .about-values-section { padding: 4rem 0 !important; }
  .svc-detail-section { padding: 3.5rem 0; }
}

/* ── 2. NAVIGATION — safe-area, drawer scroll ───────────────────── */
@media (max-width: 768px) {
  /* Drawer: allow scroll on very short viewports, add safe-area inset */
  .nav-menu {
    overflow-y: auto;
    padding-bottom: max(2rem, env(safe-area-inset-bottom));
  }

  /* Active link pill: narrow pill centred inside full-width block */
  .nav-links a.active {
    width: fit-content;
    margin: 0 auto;
  }

  /* Body lock: avoid scroll-jump on iOS using top offset approach */
  body.menu-open {
    overflow: hidden;
  }
}

/* ── 3. HOME HERO ───────────────────────────────────────────────── */
@media (max-width: 768px) {
  /* Let hero grow with content instead of clipping at 100svh */
  .hero-type {
    height: auto;
    min-height: 100svh;
  }

  .hero-type-inner {
    padding-top: 5rem;
    padding-bottom: 2rem;
  }

  /* Wrap the two CTA buttons so they don't overflow at 375px */
  .ht-actions {
    flex-wrap: wrap;
  }

  /* Stack bottom row cleanly with tighter gap */
  .ht-bottom {
    gap: 1.25rem;
    padding-top: 1.25rem;
  }
}

@media (max-width: 480px) {
  /* Full-width buttons in hero */
  .ht-actions .btn,
  .ht-actions a.btn {
    width: 100%;
    justify-content: center;
  }
}

/* ── 4. PAGE HERO (services, about, blog, pricing, contact) ─────── */
@media (max-width: 768px) {
  .page-hero-body {
    padding-top: 5rem;
    padding-bottom: 2rem;
    justify-content: flex-end;
  }

  .page-hero-title-wrap {
    max-width: 100%;
    padding: 0 0 0.75rem;
  }

  /* Bigger title on mobile landing pages */
  .page-hero-title {
    font-size: clamp(2.8rem, 11vw, 4.5rem);
  }

  /* Always show subtitle on mobile */
  .page-hero-sub {
    display: block !important;
    font-size: 0.85rem;
    max-width: 100%;
    color: rgba(255,255,255,0.75);
  }
}

@media (max-width: 480px) {
  .page-hero-body {
    padding-top: 4rem;
    padding-bottom: 1.75rem;
    justify-content: flex-end;
  }

  .page-hero-title {
    font-size: clamp(2.4rem, 10vw, 3.8rem);
  }

  /* Always show subtitle */
  .page-hero-sub {
    display: block !important;
    font-size: 0.78rem;
    max-width: 100%;
    color: rgba(255,255,255,0.75);
  }
}

/* ── 5. WORK PILE / RECENT WORK ─────────────────────────────────── */
@media (max-width: 768px) {
  /* Section head: stack h2 and "All work" link */
  .work-section-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 2rem;
  }

  /* Project detail: let description fill available width */
  .wpd-desc {
    max-width: 100%;
  }
}

/* ── 6. TENETS / WHY US ─────────────────────────────────────────── */
@media (max-width: 640px) {
  /* Stack into column layout */
  .tenet-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 1.25rem 0;
  }

  /* Hide the → arrow on mobile — wastes space */
  .tenet-row-arrow {
    display: none;
  }

  /* Number sits above title, not beside it */
  .tenet-row-num {
    width: auto;
  }
}

/* Disable hover layout-shift on touch devices */
@media (hover: none) {
  .tenet-row:hover {
    padding-left: 0;
  }
  .tenet-row:hover::before {
    transform: scaleY(0);
  }
  .tenet-row:hover .tenet-row-arrow {
    transform: none;
    color: var(--gray-dark);
  }
}

/* ── 7. SERVICES ACCORDION (sva) ────────────────────────────────── */
@media (max-width: 768px) {
  /* Move CTA into document flow — remove absolute positioning */
  .sva-cta {
    position: relative;
    bottom: auto;
    left: auto;
    padding: 0.9rem 0 1rem 3.75rem;
    opacity: 0;
    transform: none;
    transition: opacity .4s var(--ease-out) .12s;
  }
  .sva-row.open .sva-cta {
    opacity: 1;
  }

  /* Taller max-height for conviction text so wrapping text isn't clipped */
  .sva-conviction {
    max-height: 0;
    overflow: hidden;
    transition: max-height .45s var(--ease-out);
  }
  .sva-row.open .sva-conviction {
    max-height: 6rem;
  }
}

/* ── 8. SERVICES SPLIT (products page) ──────────────────────────── */
@media (max-width: 640px) {
  /* Reduce heavy indentation on open body */
  .svc-split-body {
    padding-left: 1rem;
  }
}

/* ── 9. ABOUT: PHILOSOPHY IMAGE ─────────────────────────────────── */
@media (max-width: 768px) {
  .philosophy-image {
    min-height: 220px;
  }
}

/* ── 10. ABOUT: VISION / MISSION CARDS ─────────────────────────── */
@media (max-width: 480px) {
  .about-vm-card {
    padding: 2rem 1.5rem;
  }
}

/* ── 11. ABOUT: VALUES GRID ─────────────────────────────────────── */
@media (max-width: 480px) {
  .value-card {
    padding: 2rem 1.5rem;
  }
}

/* ── 12. LOGO STRIP — fix nth-child separator hiding ───────────── */
@media (max-width: 640px) {
  /* Hide separators on ALL items that start a new row (odd children) */
  .tb-logo:nth-child(2n+1)::before {
    display: none;
  }
  /* Re-show the rule from the original that hid only 2nd and 4th */
  .tb-logo:nth-child(2)::before,
  .tb-logo:nth-child(4)::before {
    display: none;
  }
}

/* ── 13. MODAL — max-height for small viewports ─────────────────── */
@media (max-width: 768px) {
  .modal-card {
    max-height: 90svh;
    overflow-y: auto;
    border-radius: 20px;
  }

  .modal-backdrop {
    align-items: flex-end;
    padding: 0;
  }

  .modal-card {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    width: 100%;
    max-width: 100%;
  }
}

/* ── 14. FAQ — minimum 44px touch targets ───────────────────────── */
.faq-q {
  min-height: 44px;
}

/* ── 15. TIERS — tighter padding on small screens ───────────────── */
@media (max-width: 480px) {
  .tiers-col {
    padding: 2rem 1.5rem;
  }
}

/* ── 16. PROCESS STRIP — tighter step padding ───────────────────── */
@media (max-width: 600px) {
  .process-step {
    padding: 1.5rem;
  }
}

/* ── 17. WORK SECTION — reduce top margin on pile info ──────────── */
@media (max-width: 860px) {
  .work-section-head {
    margin-bottom: 2rem;
  }
}

/* ── 18. SVA CONVICTION — desktop keeps the base open rule above ─── */
/* Mobile override is handled in the @media (max-width: 768px) block */

/* ── 19. CTA BUTTONS — ensure full-width stacking is smooth ─────── */
@media (max-width: 480px) {
  .cta-inner .btn,
  .cta-inner .btn-ghost-dark,
  .cta-inner .btn-ghost {
    width: 100%;
    justify-content: center;
    margin-left: 0 !important;
    margin-top: 0.5rem;
  }
  .cta-inner .btn:first-of-type {
    margin-top: 0;
  }
}

/* ── 20. GENERAL OVERFLOW SAFETY ────────────────────────────────── */
/* Prevent any section-level SVG ribbons from creating horizontal scroll */
.hero-type,
.manifesto,
.tiers-section,
.cta-section,
.svc-split-section,
.about-vm-section,
.about-values-section,
.svc-detail-section,
.page-hero,
.work-section {
  overflow-x: hidden;
}

/* ===================================================================
   ABOUT — Story image slideshow
   =================================================================== */
.about-slideshow {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--ink-card);
}

.about-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.7s var(--ease-out);
  pointer-events: none;
}

.about-slide.active {
  opacity: 1;
  pointer-events: auto;
}

.about-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Arrow controls */
.about-slide-prev,
.about-slide-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(10,9,8,0.6);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.12);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .25s var(--ease), border-color .25s var(--ease);
}

.about-slide-prev { left: 0.75rem; }
.about-slide-next { right: 0.75rem; }
.about-slide-prev:hover,
.about-slide-next:hover {
  background: var(--orange);
  border-color: var(--orange);
}

/* Dot indicators */
.about-slide-dots {
  position: absolute;
  bottom: 0.75rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.4rem;
  z-index: 10;
}

.about-slide-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background .25s var(--ease), transform .25s var(--ease);
}

.about-slide-dot.active {
  background: var(--orange);
  transform: scale(1.3);
}

/* ===================================================================
   CONTACT FORM — greyed placeholder styling
   =================================================================== */
.contact-form-new .cfn-group input::placeholder,
.contact-form-new .cfn-group textarea::placeholder {
  color: var(--gray-dim);
  opacity: 0.65;
  font-size: 0.85rem;
}

.contact-form-new .cfn-group textarea {
  resize: vertical;
  min-height: 110px;
}

/* ===================================================================
   CASE STUDY — image pair spacing + deliverable highlight accent
   =================================================================== */

/* More breathing room between deliverables and the 2-col images */
.section + .section .cs-img-2col,
.cs-img-2col {
  padding-top: 0;
}

/* Section that wraps 2-col images: add extra top padding */
.section.section-dark .cs-img-2col,
.section.section-light .cs-img-2col,
.section.bg-white .cs-img-2col {
  margin-top: 1rem;
}

/* Give the 2-col section extra top padding so images don't crowd what's above */
.section[style*="padding-top:0"] {
  padding-top: 3rem !important;
}

/* Key deliverable highlight — first item gets orange accent */
.cs-deliverable:first-child {
  border-left: 3px solid var(--orange);
}

/* Deliverable icon colour always orange */
.cs-deliverable-icon { color: var(--orange) !important; }

/* ===================================================================
   WORK SHOWCASE — 4-up card slider (reference design)
   =================================================================== */

/* Section already has .work-section padding */

/* Slider outer: full width dark bg */
.wk-slider {
  width: 100%;
  padding-bottom: 2rem;
}

/* Margin wrapper: provides side spacing without clipping */
.wk-margin {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Clip: sits inside margin wrapper, clips overflowing cards */
.wk-clip {
  overflow: hidden;
  width: 100%;
}

/* Track: flex row of 6 cards, translated by JS */
.wk-track {
  display: flex;
  gap: 1.25rem;
  transition: transform 0.6s cubic-bezier(0.65, 0, 0.35, 1);
  will-change: transform;
}

/* Card: 1/3 of the visible area.
   wk-margin inner = min(100vw, 1240px) - 4rem padding
   Below 1240+4rem = 1272px viewport, use vw math */
.wk-card {
  flex: 0 0 calc((min(100vw, 1240px) - 4rem - 2 * 1.25rem) / 3);
  min-width: 0;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 20px rgba(0,0,0,0.10);
  transition: box-shadow .3s var(--ease), transform .3s var(--ease);
}
.wk-card:hover {
  box-shadow: 0 8px 40px rgba(0,0,0,0.18);
  transform: translateY(-3px);
}

/* Accent card: orange body */
.wk-card--accent .wk-body {
  background: var(--orange);
}
.wk-card--accent .wk-meta,
.wk-card--accent .wk-meta span { color: #fff; }
.wk-card--accent .wk-title { color: #fff; }
.wk-card--accent .wk-desc  { color: rgba(255,255,255,0.85); }
.wk-card--accent .wk-cta   { color: #fff; }

/* Image */
.wk-img {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  flex-shrink: 0;
}
.wk-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .7s var(--ease-out);
}
.wk-card:hover .wk-img img { transform: scale(1.05); }

/* Badge — top-left orange pill */
.wk-badge {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  font-family: var(--font-display);
  font-size: 0.58rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #fff;
  background: var(--orange);
  padding: 0.22rem 0.65rem;
  border-radius: 999px;
  z-index: 2;
}

/* Card body */
.wk-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.25rem 1.25rem 1.5rem;
  background: #fff;
}

/* Meta line */
.wk-meta {
  font-family: var(--font-display);
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--orange);
  margin: 0 0 0.55rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.wk-meta span {
  color: rgba(0,0,0,0.18);
  font-weight: 600;
}

/* Title */
.wk-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--ink);
  line-height: 1.2;
  margin: 0 0 0.6rem;
}

/* Description */
.wk-desc {
  font-size: 0.82rem;
  color: var(--gray-dark);
  line-height: 1.65;
  margin: 0 0 1.25rem;
  flex: 1;
}

/* CTA */
.wk-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--orange);
  text-decoration: none;
  margin-top: auto;
  transition: gap .25s var(--ease);
}
.wk-cta:hover { gap: 0.55rem; }
.wk-card--accent .wk-cta { color: #fff; }

/* Controls */
.wk-controls-wrap { padding-top: 0.5rem; padding-bottom: 2rem; }
.wk-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.wk-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.2);
  background: transparent;
  color: var(--gray);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: background .25s var(--ease), border-color .25s var(--ease), color .25s var(--ease);
}
.wk-btn:hover { background: var(--orange); border-color: var(--orange); color: #fff; }
.wk-dots { display: flex; gap: 0.4rem; align-items: center; }
.wk-dot {
  width: 7px; height: 7px;
  border-radius: 50%; border: none;
  background: rgba(255,255,255,0.2);
  cursor: pointer; padding: 0;
  transition: background .3s var(--ease), transform .3s var(--ease);
}
.wk-dot.active { background: var(--orange); transform: scale(1.4); }
.wk-dot:hover:not(.active) { background: rgba(255,255,255,0.5); }

/* Responsive */
/* Responsive */
/* Below 1280px viewport, wk-margin is 100vw - 4rem */
@media (max-width: 1280px) {
  .wk-card { flex: 0 0 calc((100vw - 4rem - 2 * 1.25rem) / 3); }
}

/* Mobile: 1 card at a time, full width minus margins */
@media (max-width: 768px) {
  .wk-margin { padding: 0 1.25rem; }
  .wk-card   { flex: 0 0 calc(100vw - 2.5rem); }
  .wk-track  { gap: 1rem; }
}


/* ===================================================================
   SPEED & SMOOTHNESS IMPROVEMENTS
   =================================================================== */

/* Reduce jitter: contain paint for heavy sections */
.work-showcase,
.svc-accordion,
.hero-type,
.page-hero,
.cs-hero,
.manifesto,
.tiers-section {
  contain: layout style;
}

/* Limit will-change to only animated elements */
.wk-track,
.ws-track,
.work-pile-card,
.about-slide,
.sva-row {
  will-change: transform;
}

/* Prevent accidental transforms triggering GPU layers on static elements */
.footer,
.navbar,
.newsletter-section {
  will-change: auto;
  transform: translateZ(0); /* promote to own layer for smooth scroll */
}

/* Smooth scroll only when user hasn't requested reduced motion */
@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}

/* Remove scroll-behavior from html if already set globally */
/* (prevents jitter on hash navigation) */
html { scroll-behavior: smooth; }

/* Fix go-up button: perfectly centred icon on all screens */
#go-to-top {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  line-height: 1;
}
#go-to-top svg {
  display: block;
  flex-shrink: 0;
  stroke: #fff;
  margin: 0 auto;
}

@media (max-width: 640px) {
  #go-to-top {
    bottom: 1.25rem;
    right: 1.25rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  #go-to-top svg {
    width: 18px;
    height: 18px;
  }
}

/* Stage-row: remove featured orange top line */
.stage-row.featured::before { display: none; }

/* Tenet row arrow: use › instead of → */
.tenet-row-arrow {
  font-size: 1.2rem;
  line-height: 1;
}

/* Smooth image loading: no layout shift */
img {
  height: auto;
}

/* Prevent FOUT on font load */
body {
  font-display: swap;
}

/* ── Go-to-top: always orange, always white icon ── */
#go-to-top,
#go-to-top:link,
#go-to-top:visited {
  background: var(--orange) !important;
  border: none !important;
  color: #fff !important;
}
#go-to-top svg,
#go-to-top svg * {
  stroke: #fff !important;
}

/* ── Work cards: fully clickable ── */
a.wk-card {
  text-decoration: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
}
a.wk-card .wk-title { color: var(--ink); }
a.wk-card .wk-desc  { color: var(--gray-dark); }
a.wk-card--accent .wk-title { color: #fff; }
a.wk-card--accent .wk-desc  { color: rgba(255,255,255,0.85); }
a.wk-card:hover { box-shadow: 0 8px 40px rgba(0,0,0,0.18); transform: translateY(-4px); }

/* div-based clickable cards via onclick */
div.wk-card[onclick] {
  cursor: pointer;
}
div.wk-card[onclick]:hover {
  box-shadow: 0 8px 40px rgba(0,0,0,0.18);
  transform: translateY(-4px);
}
div.wk-card[onclick]:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
}

/* ===================================================================
   FIX: page-hero subtitle always visible on mobile
   =================================================================== */

/* Ensure page-hero-bottom never collapses or clips */
.page-hero-bottom {
  flex-shrink: 0;
}

/* Force subtitle visible at all sizes with proper contrast */
.page-hero-sub {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

@media (max-width: 768px) {
  .page-hero-sub {
    display: block !important;
    font-size: 0.85rem;
    max-width: 100%;
    color: rgba(255,255,255,0.8);
    margin-bottom: 0.75rem;
  }
  /* More bottom padding so subtitle+button aren't clipped */
  .page-hero-body {
    padding-bottom: 6.5rem;
    justify-content: flex-end;
  }
}

@media (max-width: 480px) {
  .page-hero-sub {
    display: block !important;
    font-size: 0.78rem;
    max-width: 100%;
    color: rgba(255,255,255,0.8);
    margin-bottom: 0.6rem;
  }
  .page-hero-body {
    padding-bottom: 6rem;
    justify-content: flex-end;
  }
}

/* ===================================================================
   FIX: Mobile hamburger — active nav link pill shape
   =================================================================== */
@media (max-width: 768px) {
  /* Override the 1rem 0 padding on mobile links for active pill only */
  .nav-links a.active {
    display: inline-block;
    width: fit-content;
    margin: 0 auto;
    padding: 0.4rem 1.25rem !important;
    background: var(--orange);
    color: var(--ink) !important;
    border-radius: 999px;
    border-bottom: none !important;
    font-weight: 700;
    text-align: center;
  }
  /* Keep non-active links full-width with border */
  .nav-links a:not(.active) {
    width: 100%;
    display: block;
    text-align: center;
    padding: 1rem 0;
    border-bottom: 1px solid var(--ink-line);
  }
  /* Remove bottom border from last link before the button */
  .nav-links a:last-child {
    border-bottom: 1px solid var(--ink-line);
  }
}

/* ===================================================================
   CONTENT PROTECTION — prevent copy/clone
   =================================================================== */

/* Disable text selection on the main content */
body {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Allow selection inside forms and inputs */
input, textarea, select,
.contact-form-new,
.newsletter-form,
.cfn-group input,
.cfn-group textarea,
.cfn-group select {
  -webkit-user-select: text !important;
  -moz-user-select: text !important;
  user-select: text !important;
}

/* ===================================================================
   PRINT STYLES — clean branded print view
   =================================================================== */
@media print {
  /* Hide non-essential elements */
  .navbar,
  .mobile-toggle,
  .mobile-overlay,
  .scroll-progress,
  .float-bar,
  .float-bar--lang,
  #go-to-top,
  #cookie-banner,
  .newsletter-section,
  .cta-ribbon,
  .hero-type-ribbon,
  .manifesto-ribbon,
  .tiers-geo,
  .svc-split-ribbon,
  .process-ribbon,
  .about-vm-ribbon,
  .about-values-ribbon,
  .post-hero-ribbon,
  .post-footer-ribbon,
  .post-body-ribbon,
  .btn-subscribe,
  .wk-controls,
  .wk-dots,
  .wk-btn,
  .work-view-all {
    display: none !important;
  }

  /* Page setup */
  @page {
    size: A4;
    margin: 20mm 18mm;
  }

  html, body {
    font-size: 11pt;
    background: #fff !important;
    color: #111 !important;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }

  /* Force white backgrounds */
  section, .section, .bg-black, .bg-white, .bg-grey,
  .hero-type, .manifesto, .work-section {
    background: #fff !important;
    color: #111 !important;
  }

  /* Typography */
  h1, h2, h3, h4 { color: #111 !important; page-break-after: avoid; }
  p { color: #333 !important; }
  a { color: #f97316 !important; text-decoration: underline; }

  /* Orange stays orange on print */
  .orange, [class*="orange"] { color: #f97316 !important; }

  /* Navbar: show as simple header */
  .navbar {
    display: block !important;
    position: static !important;
    border-bottom: 2pt solid #f97316;
    padding: 6mm 0;
    margin-bottom: 8mm;
  }
  .nav-links, .btn-nav, .btn-subscribe { display: none !important; }
  .logo img { height: 28pt; }

  /* Containers */
  .container { max-width: 100% !important; padding: 0 !important; }

  /* Hero sections */
  .page-hero {
    min-height: auto !important;
    padding: 10mm 0 6mm !important;
    break-after: avoid;
  }
  .page-hero-img { display: none !important; }
  .page-hero-body { padding: 0 !important; min-height: auto !important; }
  .page-hero-title { font-size: 28pt !important; color: #111 !important; }
  .page-hero-sub { color: #555 !important; font-size: 11pt !important; display: block !important; }

  /* Cards and grids */
  .wk-card, .work-item, .cs-deliverable, .value-card,
  .tiers-col, .stage-row, .process-step {
    break-inside: avoid;
    page-break-inside: avoid;
    border: 1pt solid #ddd !important;
    background: #fff !important;
  }

  /* Footer */
  .footer {
    border-top: 1pt solid #ddd !important;
    padding: 6mm 0 !important;
  }
  .footer p, .footer a { color: #555 !important; font-size: 9pt !important; }
  .footer-socials { display: none !important; }
}

/* ===================================================================
   FINAL FIX: page-hero subtitle always white on hero images
   =================================================================== */
.page-hero .page-hero-sub,
.page-hero-body .page-hero-sub {
  color: rgba(255,255,255,0.85) !important;
  display: block !important;
  visibility: visible !important;
}

@media (max-width: 768px) {
  .page-hero .page-hero-sub {
    color: rgba(255,255,255,0.85) !important;
    font-size: 0.85rem !important;
    display: block !important;
    max-width: 100% !important;
    margin-bottom: 0.75rem !important;
  }
  /* Give page-hero-bottom enough breathing room */
  .page-hero-bottom {
    padding-top: 1rem !important;
    gap: 0.75rem !important;
    border-top: 1px solid rgba(255,255,255,0.12) !important;
  }
}

@media (max-width: 480px) {
  .page-hero .page-hero-sub {
    color: rgba(255,255,255,0.85) !important;
    font-size: 0.78rem !important;
    display: block !important;
    max-width: 100% !important;
  }
}

/* ===================================================================
   FINAL FIX: Mobile nav — active pill alignment
   =================================================================== */
@media (max-width: 768px) {
  .nav-links {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 0;
  }

  /* All links same height and border */
  .nav-links a {
    display: flex !important;
    align-items: center;
    justify-content: center;
    height: 56px;
    padding: 0 1rem !important;
    text-align: center;
    font-size: 1rem;
    border-bottom: 1px solid var(--ink-line);
    width: 100%;
    box-sizing: border-box;
  }

  /* Active pill: orange, same row height, border-bottom stays for alignment */
  .nav-links a.active {
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: var(--orange) !important;
    color: var(--ink) !important;
    font-weight: 700 !important;
    border-radius: 999px !important;
    /* Keep the same height as other items */
    height: 56px;
    /* Shrink to content width but centre in the full-width row */
    width: fit-content !important;
    min-width: 120px;
    margin: 0 auto !important;
    padding: 0 1.5rem !important;
    border-bottom: 1px solid transparent !important;
    position: relative;
  }

  /* Restore the visual divider line below active item using pseudo */
  .nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--ink-line);
    transform: none !important;
    display: block !important;
  }
}

/* ===================================================================
   STRONGER COPY PROTECTION
   =================================================================== */
* {
  -webkit-user-select: none !important;
  -moz-user-select: none !important;
  -ms-user-select: none !important;
  user-select: none !important;
}

input, textarea, select,
[contenteditable="true"] {
  -webkit-user-select: text !important;
  -moz-user-select: text !important;
  user-select: text !important;
}


/* ===================================================================
   GOOGLE TRANSLATE — layout safety
   Translated text is often longer than the source (Spanish/German/French
   can be 20–35% longer). Allow it to wrap and never push content past the
   viewport. Only applies while a translation is active.
   =================================================================== */
html.translated-ltr,
html.translated-rtl { overflow-x: hidden; }

/* Long translated words should break rather than overflow */
body,
h1, h2, h3, h4, h5, h6,
p, a, li, span, button, blockquote, cite, label, input, select, textarea {
  overflow-wrap: break-word;
  word-break: break-word;
}

/* Google wraps translated runs in <font> tags — keep them inline & fluid */
html.translated-ltr font,
html.translated-rtl font { white-space: inherit; }

/* Allow the previously nowrap elements to wrap once translated */
html.translated-ltr .ht-line,
html.translated-rtl .ht-line,
html.translated-ltr .sva-title,
html.translated-rtl .sva-title,
html.translated-ltr .sva-tags span,
html.translated-rtl .sva-tags span,
html.translated-ltr .sva-cta,
html.translated-rtl .sva-cta,
html.translated-ltr .btn,
html.translated-rtl .btn,
html.translated-ltr .btn-subscribe,
html.translated-rtl .btn-subscribe,
html.translated-ltr .stage-row .stage-btn,
html.translated-rtl .stage-row .stage-btn,
html.translated-ltr .work-view-all,
html.translated-rtl .work-view-all,
html.translated-ltr .wpc-count,
html.translated-rtl .wpc-count,
html.translated-ltr .raw-item .raw-meta,
html.translated-rtl .raw-item .raw-meta {
  white-space: normal !important;
}

/* Headings & big display type: never overflow their container */
html.translated-ltr h1,
html.translated-rtl h1,
html.translated-ltr h2,
html.translated-rtl h2,
html.translated-ltr h3,
html.translated-rtl h3,
html.translated-ltr .ht-headline,
html.translated-rtl .ht-headline,
html.translated-ltr .page-hero-title,
html.translated-rtl .page-hero-title,
html.translated-ltr .post-title,
html.translated-rtl .post-title,
html.translated-ltr .cs-hero-title,
html.translated-rtl .cs-hero-title {
  max-width: 100%;
  overflow-wrap: anywhere;
}

/* Buttons keep their pill shape but may wrap to a second line */
html.translated-ltr .btn,
html.translated-rtl .btn,
html.translated-ltr .btn-subscribe,
html.translated-rtl .btn-subscribe {
  max-width: 100%;
  height: auto;
}
