/* ── RESET ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  /* ── CONVERSION LIGHT — white base, warm sections, coral CTA accent ── */
  --cream: #ffffff;      /* page background (base, white) */
  --white: #faf8f3;      /* warm sections / cards & light text on dark panels */
  --ink: #14140f;        /* primary text — near-black */
  --mid: #5f5d57;        /* muted / secondary text */
  --light: #b3afa6;      /* faint text & placeholders */
  --border: #e7e3da;     /* subtle dividers */
  --lime: #c8f545;       /* legacy / minimal */
  --lime-dk: #8ab600;
  --violet: #7b5cf0;     /* legacy / minimal */
  --violet-lt: #ede9fd;
  --coral: #ff6b4a;      /* THE accent — CTAs & key highlights only */
  --coral-dk: #e8482a;   /* coral hover */
  --coral-lt: #fff0ec;   /* soft coral tint */
  --sky: #a8d8f0;
  --sky-lt: #e8f5fc;
  --sand: #f3eee2;
  --syne: 'Syne', sans-serif;
  --serif: 'Instrument Serif', serif;
  --body: 'DM Sans', sans-serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

html { scroll-behavior: smooth; }
body { font-family: var(--body); background: var(--cream); color: var(--ink); overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
button { font-family: var(--body); }

/* ── NOISE ── */
.noise {
  position: fixed; inset: 0; pointer-events: none; z-index: 999; opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ════════════════════════════════════════
   NAV — MOBILE FIRST
════════════════════════════════════════ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 1.25rem;
  background: rgba(250,248,243,0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  font-family: var(--syne); font-size: 1.15rem; font-weight: 800;
  letter-spacing: -0.03em; color: var(--ink); z-index: 600; position: relative;
}
.nav-logo span { color: var(--violet); }
.nav-links { display: none; }
.nav-cta { display: none; }

/* Hamburger */
.nav-hamburger {
  display: flex; flex-direction: column; gap: 5px;
  background: none; border: none; padding: 4px; cursor: pointer; z-index: 600; position: relative;
}
.nav-hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--ink); border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile full-screen menu */
.mobile-menu {
  display: none;
  position: fixed; inset: 0; z-index: 490;
  background: var(--cream);
  flex-direction: column; align-items: center; justify-content: center; gap: 2rem;
  padding: 2rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--syne); font-size: 2.2rem; font-weight: 800;
  letter-spacing: -0.03em; color: var(--ink);
  animation: menuFadeIn 0.3s var(--ease) both;
}
.mobile-menu a:nth-child(1) { animation-delay: 0.05s; }
.mobile-menu a:nth-child(2) { animation-delay: 0.1s; }
.mobile-menu a:nth-child(3) { animation-delay: 0.15s; }
.mobile-menu a:nth-child(4) { animation-delay: 0.2s; }
@keyframes menuFadeIn { from{opacity:0;transform:translateY(16px)} to{opacity:1;transform:translateY(0)} }
.mobile-menu-cta {
  font-size: 0.8rem !important; font-weight: 700 !important;
  letter-spacing: 0.08em; text-transform: uppercase;
  background: var(--lime); padding: 0.9rem 2rem; border-radius: 100px;
  margin-top: 0.5rem; animation-delay: 0.25s !important;
}

/* ════════════════════════════════════════
   SHARED COMPONENTS
════════════════════════════════════════ */
.kicker {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-size: 0.65rem; font-weight: 500; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--mid); margin-bottom: 1rem;
}
.kicker::before { content: ''; display: block; width: 1.25rem; height: 1px; background: currentColor; }
.kicker.light { color: rgba(255,255,255,0.75); }

.section-title {
  font-family: var(--syne); font-size: clamp(1.75rem, 6vw, 3rem);
  font-weight: 800; letter-spacing: -0.025em; line-height: 1.05;
}
.section-title em { font-family: var(--serif); font-weight: 400; font-style: italic; }

.btn {
  font-family: var(--syne); font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 0.6rem;
  border: none; cursor: pointer; transition: all 0.25s var(--ease);
  padding: 0.85rem 1.75rem; border-radius: 100px;
}
.btn-lime { background: var(--lime); color: var(--ink); }
.btn-lime:hover { background: var(--ink); color: var(--lime); }
.btn-pill { background: var(--ink); color: var(--white); }
.btn-pill:hover { background: var(--violet); }
.btn-outline { background: transparent; color: var(--ink); border: 1.5px solid var(--ink); }
.btn-outline:hover { background: var(--ink); color: var(--white); }

/* ════════════════════════════════════════
   HERO — MOBILE FIRST
════════════════════════════════════════ */
.hero { display: flex; flex-direction: column; padding-top: 3.5rem; }

.hero-left {
  padding: 2.5rem 1.25rem 2rem;
  display: flex; flex-direction: column; gap: 2rem;
  border-bottom: 1px solid var(--border);
}
.hero-eyebrow {
  display: flex; align-items: center; gap: 0.6rem;
  font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--mid);
}
.hero-pulse {
  width: 7px; height: 7px; border-radius: 50%; background: var(--lime);
  flex-shrink: 0; position: relative;
}
.hero-pulse::after {
  content: ''; position: absolute; inset: -3px;
  border-radius: 50%; border: 1px solid var(--lime);
  animation: pulse 1.8s ease-out infinite;
}
@keyframes pulse { 0%{transform:scale(0.8);opacity:1} 100%{transform:scale(2.2);opacity:0} }

.hero-title {
  font-family: var(--syne); font-size: clamp(2.6rem, 9vw, 6.5rem);
  font-weight: 800; letter-spacing: -0.035em; line-height: 0.94;
}
.hero-title .line2 { color: var(--violet); font-family: var(--serif); font-weight: 400; font-style: italic; }
.hero-title .pill-tag { display: none; }

.hero-desc {
  font-size: 0.95rem; font-weight: 300; line-height: 1.8; color: var(--mid);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }

.hero-right { display: flex; flex-direction: column; }
.hero-visual {
  background: var(--ink); min-height: 220px;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.hero-orbs { position: absolute; inset: 0; pointer-events: none; }
.orb { position: absolute; border-radius: 50%; animation: orbFloat 8s ease-in-out infinite alternate; }
.orb1 { width: 160px; height: 160px; background: var(--violet); opacity: 0.35; top: -40px; right: -40px; }
.orb2 { width: 120px; height: 120px; background: var(--coral); opacity: 0.25; bottom: -30px; left: -20px; animation-delay: -3s; }
.orb3 { width: 80px; height: 80px; background: var(--violet); opacity: 0.45; top: 40%; left: 35%; animation-delay: -5s; }
@keyframes orbFloat { from{transform:translate(0,0)} to{transform:translate(14px,-12px)} }
.hero-visual-label {
  position: relative; z-index: 1;
  font-family: var(--syne); font-size: 1rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; color: transparent;
  display: flex; flex-direction: column; align-items: center; gap: 1.5rem;
}
.hero-stats { display: grid; grid-template-columns: 1fr 1fr; }
.stat-cell {
  padding: 1.5rem 1.25rem; background: var(--sand);
  display: flex; flex-direction: column; justify-content: flex-end;
}
.stat-cell:nth-child(2) { border-left: 1px solid var(--border); background: var(--cream); }
.stat-num { font-family: var(--syne); font-size: 2rem; font-weight: 800; letter-spacing: -0.03em; line-height: 1; margin-bottom: 0.25rem; }
.stat-label { font-size: 0.65rem; letter-spacing: 0.1em; text-transform: uppercase; color: #3a3a3a; }

/* Services strip */
.services-strip { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.strip-item {
  padding: 1.25rem 1.25rem; border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 1rem;
}
.strip-item:last-child { border-bottom: none; }
.strip-icon { width: 40px; height: 40px; border-radius: 10px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.strip-icon svg { width: 20px; height: 20px; }
.strip-name { font-family: var(--syne); font-size: 0.9rem; font-weight: 700; margin-bottom: 0.15rem; }
.strip-sub { font-size: 0.75rem; color: var(--mid); font-weight: 300; }

/* About teaser */
.about-teaser { display: flex; flex-direction: column; }
.at-left {
  padding: 3rem 1.25rem; background: var(--ink); color: var(--white);
  display: flex; flex-direction: column; gap: 1.5rem;
}
.at-big {
  font-family: var(--syne); font-size: clamp(2rem, 7vw, 4rem);
  font-weight: 800; letter-spacing: -0.025em; line-height: 1.05;
}
.at-big em { font-family: var(--serif); font-weight: 400; font-style: italic; color: var(--lime); }
.at-body { font-size: 0.9rem; font-weight: 300; line-height: 1.85; color: rgba(255,255,255,0.55); }
.at-right { padding: 3rem 1.25rem; background: var(--cream); display: flex; flex-direction: column; gap: 1.5rem; }
.at-feature { display: flex; gap: 1rem; align-items: flex-start; padding-bottom: 1.5rem; border-bottom: 1px solid var(--border); }
.at-feature:last-child { border-bottom: none; padding-bottom: 0; }
.at-feature-dot { width: 9px; height: 9px; border-radius: 50%; flex-shrink: 0; margin-top: 0.35rem; }
.at-feature-title { font-family: var(--syne); font-size: 0.95rem; font-weight: 700; margin-bottom: 0.35rem; }
.at-feature-text { font-size: 0.85rem; font-weight: 300; line-height: 1.75; color: var(--mid); }

/* Work tease */
.work-tease { padding: 3rem 1.25rem; background: var(--white); }
.wt-header { margin-bottom: 1.5rem; display: flex; flex-direction: column; gap: 1rem; }
.wt-grid { display: flex; flex-direction: column; gap: 0.75rem; }
.wt-card {
  border-radius: 14px; overflow: hidden; position: relative;
  min-height: 180px; display: flex; flex-direction: column; justify-content: flex-end;
  padding: 1.5rem;
}
.wc-1 { background: var(--violet); }
.wc-2 { background: var(--coral); }
.wc-3 { background: var(--lime); }
.wc-4 { background: var(--ink); }
.card-geo { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.card-geo svg { width: 100%; height: 100%; opacity: 0.12; }
.wt-card-label { font-family: var(--syne); font-size: 1rem; font-weight: 800; letter-spacing: -0.01em; color: #fff; }
.wc-3 .wt-card-label { color: var(--ink); }
.wt-card-sub { font-size: 0.72rem; font-weight: 300; margin-top: 0.2rem; color: rgba(255,255,255,0.65); }
.wc-3 .wt-card-sub { color: rgba(0,0,0,0.55); }

/* CTA band */
.cta-band { background: var(--lime); padding: 3rem 1.25rem; display: flex; flex-direction: column; gap: 1.5rem; }
.cta-band-title { font-family: var(--syne); font-size: clamp(1.75rem, 6vw, 3.5rem); font-weight: 800; letter-spacing: -0.025em; line-height: 1.05; }
.cta-band-title em { font-family: var(--serif); font-style: italic; font-weight: 400; }
.cta-band-sub { font-size: 0.875rem; font-weight: 300; color: rgba(0,0,0,0.55); }

/* ════════════════════════════════════════
   ABOUT PAGE — MOBILE FIRST
════════════════════════════════════════ */
.about-hero { padding-top: 3.5rem; display: flex; flex-direction: column; }
.ah-left {
  padding: 2.5rem 1.25rem 2rem;
  display: flex; flex-direction: column; gap: 1.5rem;
  border-bottom: 1px solid var(--border);
}
.ah-title { font-family: var(--syne); font-size: clamp(2.4rem, 8vw, 5.5rem); font-weight: 800; letter-spacing: -0.035em; line-height: 0.95; }
.ah-title em { font-family: var(--serif); font-style: italic; font-weight: 400; color: var(--violet); }
.ah-intro { font-size: 0.95rem; font-weight: 300; line-height: 1.85; color: var(--mid); }
.ah-stats { display: flex; gap: 2rem; flex-wrap: wrap; }
.ah-stat-num { font-family: var(--syne); font-size: 2rem; font-weight: 800; letter-spacing: -0.025em; line-height: 1; margin-bottom: 0.2rem; }
.ah-stat-label { font-size: 0.65rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--mid); }
.ah-right {
  background: var(--ink); min-height: 260px;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 2.5rem 1.25rem; position: relative; overflow: hidden;
}
.ah-orbs { position: absolute; inset: 0; pointer-events: none; }
.ah-orb { position: absolute; border-radius: 50%; }
.ah-orb1 { width: 250px; height: 250px; background: var(--violet); opacity: 0.2; top: -80px; right: -60px; animation: slowFloat 10s ease-in-out infinite alternate; }
.ah-orb2 { width: 150px; height: 150px; background: var(--lime); opacity: 0.12; bottom: 10%; left: -40px; animation: slowFloat 13s ease-in-out infinite alternate-reverse; }
@keyframes slowFloat { from{transform:translate(0,0)} to{transform:translate(14px,-16px)} }
.ah-quote { position: relative; z-index: 1; font-family: var(--serif); font-size: clamp(1.2rem, 4vw, 2.5rem); font-style: italic; color: var(--white); line-height: 1.3; margin-bottom: 1rem; }
.ah-quote-attr { position: relative; z-index: 1; font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.3); }

.values { padding: 3rem 1.25rem; background: var(--white); }
.values-grid { display: flex; flex-direction: column; gap: 0; margin-top: 2rem; border: 1px solid var(--border); }
.value-card { padding: 2rem 1.5rem; border-bottom: 1px solid var(--border); }
.value-card:last-child { border-bottom: none; }
.value-num { font-family: var(--syne); font-size: 3rem; font-weight: 800; color: var(--border); letter-spacing: -0.03em; line-height: 1; margin-bottom: 1rem; }
.value-title { font-family: var(--syne); font-size: 1rem; font-weight: 700; margin-bottom: 0.6rem; }
.value-text { font-size: 0.875rem; font-weight: 300; line-height: 1.8; color: var(--mid); }

.skills { padding: 3rem 1.25rem; background: var(--cream); }
.skills-intro { margin-bottom: 2rem; }
.skills-title { font-family: var(--syne); font-size: clamp(1.75rem, 6vw, 2.5rem); font-weight: 800; letter-spacing: -0.025em; line-height: 1.05; margin-bottom: 1rem; }
.skills-title em { font-family: var(--serif); font-style: italic; font-weight: 400; }
.skills-body { font-size: 0.9rem; font-weight: 300; line-height: 1.85; color: var(--mid); margin-bottom: 1.5rem; }
.skill-bars { display: flex; flex-direction: column; gap: 1.25rem; }
.skill-bar-top { display: flex; justify-content: space-between; margin-bottom: 0.4rem; }
.skill-bar-label { font-family: var(--syne); font-size: 0.78rem; font-weight: 700; }
.skill-bar-pct { font-size: 0.75rem; color: var(--mid); }
.skill-bar-track { height: 4px; background: var(--border); border-radius: 100px; overflow: hidden; }
.skill-bar-fill { height: 100%; border-radius: 100px; background: var(--violet); transform: scaleX(0); transform-origin: left; transition: transform 1.2s var(--ease); }
.skill-bar-fill.lime { background: var(--lime-dk); }
.skill-bar-fill.coral { background: var(--coral); }
.skill-bar-wrap.visible .skill-bar-fill { transform: scaleX(1); }

/* Capabilities list (replaces self-rated skill bars) */
.cap-list { display: flex; flex-direction: column; }
.cap-item { padding: 1.1rem 0; border-bottom: 1px solid var(--border); }
.cap-item:last-child { border-bottom: none; }
.cap-name { font-family: var(--syne); font-size: 0.9rem; font-weight: 700; display: block; margin-bottom: 0.3rem; }
.cap-desc { font-size: 0.82rem; font-weight: 300; line-height: 1.65; color: var(--mid); }

.philosophy { background: var(--lime); padding: 3rem 1.25rem; text-align: center; }
.phil-title { font-family: var(--syne); font-size: clamp(2rem, 7vw, 5rem); font-weight: 800; letter-spacing: -0.03em; line-height: 1.0; margin-bottom: 1.25rem; }
.phil-title em { font-family: var(--serif); font-style: italic; font-weight: 400; }
.phil-body { font-size: 0.9rem; font-weight: 300; line-height: 1.85; color: rgba(0,0,0,0.55); margin: 0 auto 2rem; }

/* ════════════════════════════════════════
   PROCESS PAGE — MOBILE FIRST
════════════════════════════════════════ */
.process-hero { padding: 5.5rem 1.25rem 3rem; border-bottom: 1px solid var(--border); }
.ph-title { font-family: var(--syne); font-size: clamp(2.4rem, 8vw, 6.5rem); font-weight: 800; letter-spacing: -0.035em; line-height: 0.92; margin-bottom: 1.5rem; }
.ph-title em { font-family: var(--serif); font-style: italic; font-weight: 400; color: var(--violet); }
.ph-desc { font-size: 0.9rem; font-weight: 300; line-height: 1.85; color: var(--mid); margin-bottom: 1.5rem; }
.ph-time {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-family: var(--syne); font-size: 0.75rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  background: var(--lime); color: var(--ink); padding: 0.55rem 1.1rem; border-radius: 100px;
}

/* Timeline — mobile: stacked cards */
.timeline { background: var(--white); }
.tl-step { padding: 2rem 1.25rem; border-bottom: 1px solid var(--border); }
.tl-step:last-child { border-bottom: none; }
.tl-step-header { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem; }
.tl-step-num-col { display: none; } /* desktop-only column; hidden on mobile to avoid duplicate number */
.tl-num { font-family: var(--syne); font-size: 2rem; font-weight: 800; color: var(--border); letter-spacing: -0.04em; line-height: 1; }
.tl-dot { width: 12px; height: 12px; border-radius: 50%; border: 2px solid var(--cream); flex-shrink: 0; }
.tl-tag { font-family: var(--syne); font-size: 0.6rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; padding: 0.25rem 0.7rem; border-radius: 100px; display: inline-block; margin-bottom: 0.75rem; }
.tl-title { font-family: var(--syne); font-size: 1.35rem; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 0.75rem; line-height: 1.1; }
.tl-body { font-size: 0.875rem; font-weight: 300; line-height: 1.85; color: var(--mid); margin-bottom: 1.25rem; }
.tl-checklist { display: flex; flex-direction: column; gap: 0.5rem; }
.tl-check { display: flex; align-items: center; gap: 0.65rem; font-size: 0.85rem; font-weight: 300; }
.tl-check-icon { width: 20px; height: 20px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.55rem; font-weight: 700; flex-shrink: 0; color: #fff; }
.tl-duration { font-family: var(--syne); font-size: 0.65rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--mid); margin-top: 1.25rem; padding-top: 1rem; border-top: 1px solid var(--border); display: flex; align-items: center; gap: 0.4rem; }

.guarantee { background: var(--violet); padding: 3rem 1.25rem; }
.g-title { font-family: var(--syne); font-size: clamp(2rem, 7vw, 4rem); font-weight: 800; letter-spacing: -0.025em; line-height: 1.05; color: #fff; margin-bottom: 2rem; }
.g-title em { font-family: var(--serif); font-style: italic; font-weight: 400; color: var(--lime); }
.g-points { display: flex; flex-direction: column; gap: 1.25rem; }
.g-point { display: flex; gap: 0.75rem; align-items: flex-start; }
.g-point-icon { font-size: 1.1rem; flex-shrink: 0; }
.g-point-title { font-family: var(--syne); font-size: 0.875rem; font-weight: 700; color: #fff; margin-bottom: 0.25rem; }
.g-point-text { font-size: 0.8rem; font-weight: 300; line-height: 1.7; color: rgba(255,255,255,0.8); }

.faq { padding: 3rem 1.25rem; background: var(--cream); }
.faq-list { display: flex; flex-direction: column; gap: 0; margin-top: 2rem; }
.faq-item { padding: 1.25rem 0; border-bottom: 1px solid var(--border); }
.faq-q { font-family: var(--syne); font-size: 0.95rem; font-weight: 700; margin-bottom: 0.6rem; }
.faq-a { font-size: 0.875rem; font-weight: 300; line-height: 1.8; color: var(--mid); }

/* ════════════════════════════════════════
   CONTACT PAGE — MOBILE FIRST
════════════════════════════════════════ */
.contact-page { padding-top: 3.5rem; display: flex; flex-direction: column; }
.ch-left {
  background: var(--ink); color: var(--white);
  padding: 2.5rem 1.25rem; position: relative; overflow: hidden;
  display: flex; flex-direction: column; gap: 2rem;
}
.ch-orbs { position: absolute; inset: 0; pointer-events: none; }
.ch-orb { position: absolute; border-radius: 50%; }
.ch-orb1 { width: 300px; height: 300px; background: var(--violet); opacity: 0.15; top: -80px; right: -80px; animation: slowFloat 8s ease-in-out infinite alternate; }
.ch-orb2 { width: 180px; height: 180px; background: var(--lime); opacity: 0.08; bottom: 5%; left: -40px; animation: slowFloat 11s ease-in-out infinite alternate-reverse; }
.ch-title { font-family: var(--syne); font-size: clamp(2.2rem, 8vw, 5.5rem); font-weight: 800; letter-spacing: -0.035em; line-height: 0.92; position: relative; z-index: 1; }
.ch-title em { font-family: var(--serif); font-style: italic; font-weight: 400; color: var(--lime); }
.ch-details { position: relative; z-index: 1; display: flex; flex-direction: column; }
.ch-detail { display: flex; align-items: flex-start; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
.ch-detail:last-child { border-bottom: none; }
.ch-detail-icon { width: 38px; height: 38px; border-radius: 10px; border: 1px solid rgba(255,255,255,0.12); display: flex; align-items: center; justify-content: center; font-size: 0.9rem; flex-shrink: 0; }
.ch-detail-label { font-size: 0.6rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 0.2rem; }
.ch-detail-value { font-size: 0.875rem; font-weight: 300; color: var(--white); }
.ch-response { display: flex; align-items: center; gap: 0.6rem; font-size: 0.75rem; font-weight: 300; color: rgba(255,255,255,0.4); position: relative; z-index: 1; }
.ch-response-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--lime); flex-shrink: 0; }

.ch-right { padding: 2.5rem 1.25rem; background: var(--cream); }
.form-heading { font-family: var(--syne); font-size: 1.5rem; font-weight: 800; letter-spacing: -0.025em; margin-bottom: 0.5rem; }
.form-sub { font-size: 0.875rem; font-weight: 300; line-height: 1.75; color: var(--mid); margin-bottom: 2rem; }
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.cf-field { display: flex; flex-direction: column; gap: 0.4rem; }
.cf-label { font-size: 0.6rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--mid); }
.cf-input, .cf-textarea, .cf-select {
  background: var(--white); border: 1.5px solid var(--border);
  font-family: var(--body); font-size: 0.9rem; font-weight: 300;
  padding: 0.8rem 1rem; color: var(--ink); outline: none;
  border-radius: 10px; resize: none; width: 100%;
  transition: border-color 0.2s; -webkit-appearance: none; appearance: none;
}
.cf-input:focus, .cf-textarea:focus, .cf-select:focus { border-color: var(--violet); }
.cf-input::placeholder, .cf-textarea::placeholder { color: var(--light); }
.cf-budget-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; }
.cf-budget-btn {
  font-family: var(--syne); font-size: 0.68rem; font-weight: 700; letter-spacing: 0.06em;
  padding: 0.6rem 0.5rem; border-radius: 8px; text-align: center;
  border: 1.5px solid var(--border); background: var(--white); color: var(--mid);
  cursor: pointer; transition: all 0.2s;
}
.cf-budget-btn.selected { border-color: var(--violet); background: var(--violet-lt); color: var(--violet); }
.cf-submit {
  font-family: var(--syne); font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 1rem 2rem; border-radius: 100px;
  background: var(--ink); color: var(--lime);
  border: none; cursor: pointer; transition: all 0.3s var(--ease);
  display: flex; align-items: center; gap: 0.65rem; width: 100%; justify-content: center;
  margin-top: 0.5rem;
}
.cf-submit:hover { background: var(--violet); }

.also { background: var(--white); padding: 3rem 1.25rem; border-top: 1px solid var(--border); }
.also-grid { display: flex; flex-direction: column; gap: 0; margin-top: 2rem; border: 1px solid var(--border); }
.also-item { padding: 1.75rem 1.5rem; border-bottom: 1px solid var(--border); }
.also-item:last-child { border-bottom: none; }
.also-icon { font-size: 2rem; margin-bottom: 0.75rem; display: block; }
.also-title { font-family: var(--syne); font-size: 0.95rem; font-weight: 700; margin-bottom: 0.4rem; }
.also-text { font-size: 0.82rem; font-weight: 300; line-height: 1.7; color: var(--mid); }

/* ════════════════════════════════════════
   MARQUEE
════════════════════════════════════════ */
.marquee-strip { background: var(--ink); overflow: hidden; padding: 0.85rem 0; }
.marquee-track { display: flex; animation: marquee 22s linear infinite; white-space: nowrap; width: max-content; }
.marquee-item { font-family: var(--syne); font-size: 0.65rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; padding: 0 1.5rem; color: rgba(255,255,255,0.75); display: flex; align-items: center; gap: 0.75rem; }
.marquee-item.accent { color: var(--lime); }
.marquee-item::after { content: '✦'; font-size: 0.4rem; opacity: 0.5; }
@keyframes marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ════════════════════════════════════════
   FOOTER
════════════════════════════════════════ */
footer { background: var(--ink); color: var(--white); padding: 3rem 1.25rem 2rem; }
.footer-brand { font-family: var(--syne); font-size: 1.3rem; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 0.75rem; }
.footer-brand span { color: var(--lime); }
.footer-tagline { font-size: 0.85rem; font-weight: 300; line-height: 1.75; color: rgba(255,255,255,0.75); margin-bottom: 1.25rem; }
.footer-social { display: flex; gap: 0.6rem; margin-bottom: 2.5rem; }
.footer-social a { width: 34px; height: 34px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.15); display: flex; align-items: center; justify-content: center; font-size: 0.7rem; color: transparent; transition: all 0.2s; }
.footer-social a:hover { border-color: var(--lime); color: var(--lime); }
.footer-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-bottom: 2rem; padding-bottom: 2rem; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-col-title { font-family: var(--syne); font-size: 0.65rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.6); margin-bottom: 1rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.65rem; }
.footer-col a { font-size: 0.85rem; font-weight: 300; color: rgba(255,255,255,0.8); transition: color 0.2s; }
.footer-col a:hover { color: var(--lime); }
.footer-bottom { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-copy { font-size: 0.72rem; color: rgba(255,255,255,0.7); }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { font-size: 0.7rem; color: rgba(255,255,255,0.7); }
.footer-legal a:hover { color: rgba(255,255,255,0.6); }

/* ════════════════════════════════════════
   SCROLL REVEAL
════════════════════════════════════════ */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: 0.1s !important; }
.d2 { transition-delay: 0.2s !important; }
.d3 { transition-delay: 0.3s !important; }

/* ════════════════════════════════════════
   DESKTOP — 768px+
════════════════════════════════════════ */
@media (min-width: 768px) {
  nav { padding: 1.25rem 3rem; }
  .nav-links { display: flex; gap: 2rem; list-style: none; }
  .nav-links a { font-size: 0.75rem; font-weight: 400; letter-spacing: 0.1em; text-transform: uppercase; color: var(--mid); transition: color 0.2s; }
  .nav-links a:hover, .nav-links a.active { color: var(--ink); }
  .nav-cta { display: flex; align-items: center; gap: 0.4rem; font-family: var(--syne); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; padding: 0.6rem 1.4rem; border-radius: 100px; background: var(--lime); color: var(--ink); transition: all 0.25s var(--ease); border: 1.5px solid transparent; }
  .nav-cta:hover { background: var(--ink); color: var(--lime); }
  .nav-hamburger { display: none; }

  /* Hero */
  .hero { display: grid; grid-template-columns: 1fr 1fr; min-height: 100vh; padding-top: 0; }
  .hero-left { padding: 8rem 3rem 4rem; border-right: 1px solid var(--border); border-bottom: none; justify-content: space-between; }
  .hero-title .pill-tag { display: inline-block; font-family: var(--syne); font-size: 0.28em; background: var(--lime); color: var(--ink); border-radius: 100px; padding: 0.5em 1.2em; vertical-align: middle; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; margin-left: 0.3em; }
  .hero-right { display: grid; grid-template-rows: 60% 40%; min-height: 100vh; }
  .hero-visual { min-height: auto; }
  .orb1 { width: 280px; height: 280px; top: -60px; right: -60px; }
  .orb2 { width: 200px; height: 200px; }
  .orb3 { width: 120px; height: 120px; }
  .stat-num { font-size: 2.8rem; }
  .stat-cell { padding: 2rem 1.75rem; }

  /* Services strip */
  .services-strip { display: grid; grid-template-columns: repeat(3,1fr); }
  .strip-item { border-right: 1px solid var(--border); border-bottom: none; padding: 2rem; }
  .strip-item:last-child { border-right: none; }

  /* About teaser */
  .about-teaser { display: grid; grid-template-columns: 1fr 1fr; }
  .at-left { padding: 5rem 3rem; }
  .at-right { padding: 5rem 3rem; }

  /* Work tease */
  .work-tease { padding: 5rem 3rem; }
  .wt-header { flex-direction: row; align-items: flex-end; }
  .wt-grid { display: grid; grid-template-columns: 1.4fr 1fr; grid-template-rows: 240px 240px; gap: 1rem; }
  .wt-card { min-height: auto; }
  .wt-span-col { grid-row: 1/3; }
  .wt-span-row { grid-column: 1/3; }

  /* CTA band */
  .cta-band { flex-direction: row; align-items: center; padding: 5rem 3rem; }

  /* About page */
  .about-hero { display: grid; grid-template-columns: 1fr 1fr; padding-top: 0; }
  .ah-left { padding: 8rem 3rem 4rem; border-right: 1px solid var(--border); border-bottom: none; }
  .ah-right { min-height: auto; padding: 5rem 3rem; }
  .values { padding: 5rem 3rem; }
  .values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; border: none; background: var(--border); }
  .value-card { border-bottom: none; }
  .skills { padding: 5rem 3rem; }
  .skills-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
  .philosophy { padding: 5rem 3rem; }
  .phil-body { max-width: 58ch; }

  /* Process page */
  .process-hero { padding: 8rem 3rem 5rem; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: end; }
  .ph-title { margin-bottom: 0; }
  .tl-step { display: grid; grid-template-columns: 180px 1fr; padding: 0; }
  .tl-step-header { display: none; }
  .tl-step-num-col { display: flex; padding: 3.5rem 2rem 3.5rem 3rem; border-right: 1px solid var(--border); align-items: flex-start; position: relative; }
  .tl-num { font-size: clamp(3rem, 3.5vw, 4rem); }
  .tl-dot { position: absolute; right: -7px; top: 4rem; border-color: var(--white); }
  .tl-right { padding: 3.5rem 3rem; }
  .tl-title { font-size: 1.75rem; }
  .guarantee { padding: 5rem 3rem; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
  .g-title { margin-bottom: 0; }
  .faq { padding: 5rem 3rem; }
  .faq-list { display: grid; grid-template-columns: 1fr 1fr; gap: 0 4rem; }

  /* Contact page */
  .contact-page { display: grid; grid-template-columns: 1fr 1fr; padding-top: 0; min-height: 100vh; }
  .ch-left { padding: 8rem 3rem 4rem; }
  .ch-right { padding: 6rem 3rem; }
  .cf-budget-grid { grid-template-columns: repeat(3,1fr); }
  .cf-submit { width: auto; justify-content: flex-start; }
  .also { padding: 5rem 3rem; }
  .also-grid { display: grid; grid-template-columns: repeat(3,1fr); border: none; gap: 1px; background: var(--border); }
  .also-item { border-bottom: none; }

  /* Footer */
  footer { padding: 5rem 3rem 2.5rem; }
  .footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .footer-social { margin-bottom: 0; }
  .footer-cols { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
  .footer-bottom { flex-direction: row; justify-content: space-between; align-items: center; }
}

@media (min-width: 1024px) {
  nav { padding: 1.25rem 3.5rem; }
  .hero-left { padding: 8rem 3.5rem 5rem; }
  .at-left, .at-right { padding: 6rem 3.5rem; }
  .work-tease, .values, .skills, .philosophy, .faq, .guarantee, .also { padding-left: 3.5rem; padding-right: 3.5rem; }
  .process-hero { padding: 9rem 3.5rem 5rem; }
  .tl-step-num-col { padding-left: 3.5rem; }
  .tl-right { padding-left: 3.5rem; padding-right: 3.5rem; }
  .ch-left, .ch-right { padding-left: 3.5rem; padding-right: 3.5rem; }
  footer { padding-left: 3.5rem; padding-right: 3.5rem; }
}

/* ════════════════════════════════════════
   MOTION & WOW LAYER
════════════════════════════════════════ */

/* Scroll progress bar */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0;
  background: linear-gradient(90deg, var(--violet), var(--lime));
  z-index: 1000; pointer-events: none; transition: width 0.1s linear;
}

/* Gradient hero accent line */
.hero-title .line2 {
  background: linear-gradient(105deg, var(--violet) 0%, var(--coral) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Animated mesh glow behind the dark hero visual */
.hero-visual::before {
  content: ''; position: absolute; inset: -25%;
  background:
    radial-gradient(circle at 28% 30%, var(--violet), transparent 42%),
    radial-gradient(circle at 72% 70%, var(--coral), transparent 46%);
  opacity: 0.4; filter: blur(36px); pointer-events: none;
}

/* Interactive card / button transforms */
.wt-card { transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease); will-change: transform; }
.wt-card:hover { box-shadow: 0 24px 60px -20px rgba(13,13,13,0.45); }

/* Animated nav underline */
@media (min-width: 768px) {
  .nav-links a { position: relative; }
  .nav-links a::after {
    content: ''; position: absolute; left: 0; bottom: -5px;
    height: 1.5px; width: 0; background: var(--ink);
    transition: width 0.3s var(--ease);
  }
  .nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
}

/* Motion — only when the visitor hasn't asked to reduce it */
@media (prefers-reduced-motion: no-preference) {
  .hero-visual::before { animation: meshDrift 18s ease-in-out infinite alternate; }
  @keyframes meshDrift {
    from { transform: translate(0,0) rotate(0deg) scale(1); }
    to   { transform: translate(6%,-5%) rotate(10deg) scale(1.08); }
  }

  /* Hero entrance stagger */
  .hero-left > *, .ah-left > *, .ch-left > *, .process-hero > * {
    animation: riseIn 0.75s var(--ease) both;
  }
  .hero-left > *:nth-child(1), .ah-left > *:nth-child(1), .ch-left > *:nth-child(1), .process-hero > *:nth-child(1) { animation-delay: 0.05s; }
  .hero-left > *:nth-child(2), .ah-left > *:nth-child(2), .ch-left > *:nth-child(2), .process-hero > *:nth-child(2) { animation-delay: 0.15s; }
  .hero-left > *:nth-child(3), .ah-left > *:nth-child(3), .ch-left > *:nth-child(3) { animation-delay: 0.25s; }
  .hero-left > *:nth-child(4), .ah-left > *:nth-child(4), .ch-left > *:nth-child(4) { animation-delay: 0.35s; }
  @keyframes riseIn { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: translateY(0); } }
}

/* Tighten nav to fit more links */
@media (min-width: 768px) { .nav-links { gap: 1.5rem; } }
@media (min-width: 1024px) { .nav-links { gap: 2rem; } }

/* ════════════════════════════════════════
   WORK / CONCEPT GALLERY
════════════════════════════════════════ */
.work-intro { padding: 5.5rem 1.25rem 2rem; }
.work-lead { font-size: 0.95rem; font-weight: 300; line-height: 1.85; color: var(--mid); max-width: 60ch; margin-top: 1rem; }
.work-note {
  display: inline-flex; align-items: center; gap: 0.5rem; margin-top: 1.5rem;
  font-size: 0.72rem; font-weight: 300; color: var(--mid);
  background: var(--violet-lt); border-radius: 100px; padding: 0.5rem 1rem;
}
.work-gallery { padding: 1rem 1.25rem 3rem; }
.demo-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }

.demo-card {
  border: 1px solid var(--border); border-radius: 16px; overflow: hidden;
  background: var(--white); box-shadow: 0 1px 2px rgba(0,0,0,0.04);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.demo-card:hover { transform: translateY(-6px); box-shadow: 0 30px 60px -25px rgba(13,13,13,0.35); }
.demo-bar { display: flex; align-items: center; gap: 0.7rem; padding: 0.6rem 0.9rem; background: #ece9e1; border-bottom: 1px solid var(--border); }
.demo-dots { display: flex; gap: 5px; }
.demo-dots span { width: 9px; height: 9px; border-radius: 50%; background: #c8c4bc; display: block; }
.demo-url { flex: 1; font-size: 0.6rem; color: var(--mid); background: var(--white); border-radius: 6px; padding: 0.3rem 0.7rem; text-align: center; letter-spacing: 0.02em; }
.demo-screen { aspect-ratio: 4 / 3; padding: 1.6rem; display: flex; flex-direction: column; position: relative; overflow: hidden; }
.demo-nav { display: flex; justify-content: space-between; align-items: center; margin-bottom: auto; }
.demo-logo { font-family: var(--syne); font-weight: 800; font-size: 0.82rem; letter-spacing: -0.02em; }
.demo-menu { display: flex; gap: 0.8rem; font-size: 0.5rem; text-transform: uppercase; letter-spacing: 0.12em; opacity: 0.75; }
.demo-h { font-family: var(--syne); font-weight: 800; font-size: 1.7rem; line-height: 1.0; letter-spacing: -0.035em; margin-bottom: 0.5rem; }
.demo-h em { font-family: var(--serif); font-style: italic; font-weight: 400; }
.demo-sub { font-size: 0.62rem; line-height: 1.5; max-width: 26ch; margin-bottom: 1rem; opacity: 0.72; }
.demo-btn { align-self: flex-start; font-family: var(--syne); font-size: 0.55rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; padding: 0.5rem 1.1rem; border-radius: 100px; }
.demo-meta { padding: 1.4rem 1.5rem; }
.demo-tag { display: inline-block; font-family: var(--syne); font-size: 0.55rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; padding: 0.25rem 0.7rem; border-radius: 100px; background: var(--violet-lt); color: var(--violet); margin-bottom: 0.75rem; }
.demo-name { font-family: var(--syne); font-size: 1.05rem; font-weight: 800; margin-bottom: 0.25rem; }
.demo-sector { font-size: 0.62rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--light); margin-bottom: 0.6rem; }
.demo-desc { font-size: 0.8rem; font-weight: 300; line-height: 1.65; color: var(--mid); }
.demo-cs-link { display: inline-flex; align-items: center; gap: 0.4rem; margin-top: 0.9rem; font-family: var(--syne); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--coral); transition: gap 0.2s var(--ease); }
.demo-cs-link:hover { gap: 0.75rem; }

/* ════════════════════════════════════════
   SERVICES PAGE
════════════════════════════════════════ */
.svc-hero { padding: 5.5rem 1.25rem 2.5rem; border-bottom: 1px solid var(--border); }
.svc-lead { font-size: 0.95rem; font-weight: 300; line-height: 1.85; color: var(--mid); max-width: 58ch; margin-top: 1rem; }
.svc-section { padding: 3rem 1.25rem; border-bottom: 1px solid var(--border); }
.svc-section:nth-child(even) { background: var(--white); }
.svc-eyebrow { font-family: var(--syne); font-size: 2.5rem; font-weight: 800; color: var(--border); letter-spacing: -0.03em; line-height: 1; margin-bottom: 1rem; }
.svc-title { font-family: var(--syne); font-size: clamp(1.6rem, 5.5vw, 2.4rem); font-weight: 800; letter-spacing: -0.025em; line-height: 1.05; margin-bottom: 1rem; }
.svc-title em { font-family: var(--serif); font-style: italic; font-weight: 400; color: var(--violet); }
.svc-body { font-size: 0.9rem; font-weight: 300; line-height: 1.85; color: var(--mid); margin-bottom: 1.5rem; max-width: 56ch; }
.svc-incl { display: grid; grid-template-columns: 1fr; gap: 0.6rem; margin-bottom: 1.5rem; }
.svc-incl div { font-size: 0.85rem; font-weight: 300; display: flex; gap: 0.6rem; align-items: flex-start; }
.svc-incl div::before { content: '✓'; color: var(--lime-dk); font-weight: 700; flex-shrink: 0; }

/* ════════════════════════════════════════
   PACKAGES / PRICING PAGE
════════════════════════════════════════ */
.pricing { padding: 3rem 1.25rem; background: var(--cream); }
.pricing-grid { display: flex; flex-direction: column; gap: 1.25rem; margin-top: 2.5rem; }
.price-card { border: 1px solid var(--border); border-radius: 18px; padding: 2rem 1.75rem; background: var(--white); display: flex; flex-direction: column; gap: 1rem; }
.price-card.featured { background: var(--ink); color: #fff; border-color: var(--ink); }
.price-badge { align-self: flex-start; font-family: var(--syne); font-size: 0.55rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; background: var(--lime); color: var(--ink); padding: 0.3rem 0.75rem; border-radius: 100px; }
.price-name { font-family: var(--syne); font-size: 1.15rem; font-weight: 800; }
.price-amount { font-family: var(--syne); font-size: 2.4rem; font-weight: 800; letter-spacing: -0.03em; line-height: 1; }
.price-amount span { font-size: 0.8rem; font-weight: 500; color: var(--mid); letter-spacing: 0; }
.price-card.featured .price-amount span { color: rgba(255,255,255,0.5); }
.price-desc { font-size: 0.82rem; font-weight: 300; line-height: 1.65; color: var(--mid); }
.price-card.featured .price-desc { color: rgba(255,255,255,0.62); }
.price-list { display: flex; flex-direction: column; gap: 0.6rem; margin-top: 0.25rem; }
.price-list li { list-style: none; font-size: 0.82rem; font-weight: 300; display: flex; gap: 0.55rem; line-height: 1.45; }
.price-list li::before { content: '✓'; color: var(--lime-dk); font-weight: 700; flex-shrink: 0; }
.price-card.featured .price-list li::before { color: var(--lime); }
.price-card.featured .price-desc, .price-card.featured .price-list li { color: rgba(255,255,255,0.85); }
.price-cta { margin-top: auto; padding-top: 0.5rem; }
.price-foot { font-size: 0.8rem; font-weight: 300; line-height: 1.7; color: var(--mid); text-align: center; max-width: 60ch; margin: 2.5rem auto 0; }

@media (min-width: 768px) {
  .demo-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .work-intro, .work-gallery, .svc-hero, .svc-section, .pricing { padding-left: 3rem; padding-right: 3rem; }
  .work-intro { padding-top: 8rem; }
  .svc-hero { padding-top: 8rem; }
  .svc-section { display: grid; grid-template-columns: 1fr 1.1fr; gap: 3rem; align-items: center; }
  .pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); align-items: stretch; gap: 1.5rem; }
  .price-card.featured { transform: translateY(-12px); }
}
@media (min-width: 1024px) {
  .work-intro, .work-gallery, .svc-hero, .svc-section, .pricing { padding-left: 3.5rem; padding-right: 3.5rem; }
}

/* ════════════════════════════════════════
   CONVERSION LIGHT — coral accent + lead-gen layer
   White base, warm sections, ONE accent (coral)
   reserved for CTAs & key highlights only.
   (Original rules already render the light theme;
   these enforce coral discipline + add lead-gen UI.)
════════════════════════════════════════ */

/* Primary CTAs → coral */
.btn-lime { background: var(--coral); color: #fff; }
.btn-lime:hover { background: var(--coral-dk); color: #fff; }
.btn-pill { background: var(--coral); color: #fff; }
.btn-pill:hover { background: var(--ink); color: #fff; }
.nav-cta { background: var(--coral); color: #fff; }
.nav-cta:hover { background: var(--ink); color: #fff; }
.cf-submit { background: var(--coral); color: #fff; }
.cf-submit:hover { background: var(--ink); color: #fff; }

/* Accent highlights → coral (single-accent discipline) */
.hero-title .line2 { background: none; -webkit-text-fill-color: var(--coral); color: var(--coral); }
.nav-logo span, .footer-brand span { color: var(--coral); }
.at-big em, .ch-title em, .g-title em, .skills-title em { color: var(--coral); }
.scroll-progress { background: var(--coral); }
.hero-pulse { background: var(--coral); }
.hero-pulse::after { border-color: var(--coral); }
.ch-response-dot { background: var(--coral); }
.cf-budget-btn.selected { border-color: var(--coral); background: var(--coral-lt); color: var(--coral-dk); }
.cf-input:focus, .cf-textarea:focus, .cf-select:focus { border-color: var(--coral); }
.svc-incl div::before, .price-list li::before { color: var(--coral); }
.marquee-item.accent { color: var(--coral); }
.footer-social a:hover { border-color: var(--coral); color: var(--coral); }
.footer-col a:hover { color: var(--coral); }

/* Hero glow → coral */
.orb1, .orb3, .orb2 { background: var(--coral); }
.ah-orb1, .ch-orb1 { background: var(--coral); }
.hero-visual::before { background:
  radial-gradient(circle at 28% 30%, var(--coral), transparent 44%),
  radial-gradient(circle at 72% 70%, #ff9a82, transparent 48%); opacity: 0.45; }

/* Work tiles — one coral accent + neutrals */
.wc-1 { background: var(--coral); }
.wc-2 { background: var(--ink); }
.wc-3 { background: var(--white); }
.wc-3 .wt-card-label { color: var(--ink); }
.wc-3 .wt-card-sub { color: rgba(0,0,0,0.55); }
.wc-4 { background: var(--sand); }
.wc-4 .wt-card-label { color: var(--ink); }
.wc-4 .wt-card-sub { color: rgba(0,0,0,0.55); }

/* CTA band → dark band, coral button (max contrast) */
.cta-band { background: var(--ink); }
.cta-band .kicker { color: rgba(255,255,255,0.7); }
.cta-band-title { color: #fff; }
.cta-band-sub { color: rgba(255,255,255,0.62); }
.cta-band .btn, .cta-band .btn-pill { background: var(--coral); color: #fff; }
.cta-band .btn:hover, .cta-band .btn-pill:hover { background: #fff; color: var(--ink); }

/* Process / about bands */
.guarantee { background: var(--ink); }
.philosophy { background: var(--coral); }
.phil-title { color: #fff; }
.phil-body { color: rgba(255,255,255,0.88); }
.philosophy .btn-pill { background: #fff; color: var(--ink); }
.philosophy .btn-pill:hover { background: var(--ink); color: #fff; }
.ph-time { background: var(--coral); color: #fff; }
.tl-tag { background: var(--coral-lt) !important; color: var(--coral-dk) !important; }

/* Pricing featured → coral border + badge (dark card) */
.price-card.featured { border: 2px solid var(--coral); }
.price-badge { background: var(--coral); color: #fff; }

/* ── CONVERSION LAYOUT COMPONENTS ── */

/* Risk-reversal trust bar */
.trust-bar { background: var(--ink); display: grid; grid-template-columns: 1fr; }
.trust-item { display: flex; align-items: center; gap: 0.75rem; padding: 1.05rem 1.25rem; border-bottom: 1px solid rgba(255,255,255,0.08); }
.trust-item:last-child { border-bottom: none; }
.trust-ico { color: var(--coral); font-size: 1rem; font-weight: 700; flex-shrink: 0; }
.trust-txt { font-size: 0.82rem; font-weight: 300; color: rgba(255,255,255,0.82); }
.trust-txt b { font-family: var(--syne); font-weight: 700; color: #fff; }

/* Embedded homepage enquiry form */
.home-cta { background: var(--white); padding: 3rem 1.25rem; border-top: 1px solid var(--border); }
.home-cta-inner { max-width: 580px; margin: 0 auto; }
.home-cta .kicker { display: flex; justify-content: center; }
.home-cta h2 { font-family: var(--syne); font-size: clamp(1.7rem, 6vw, 2.6rem); font-weight: 800; letter-spacing: -0.025em; line-height: 1.08; text-align: center; margin-bottom: 0.6rem; }
.home-cta h2 em { font-family: var(--serif); font-style: italic; font-weight: 400; color: var(--coral); }
.home-cta-sub { text-align: center; font-size: 0.9rem; font-weight: 300; color: var(--mid); margin: 0 auto 1.75rem; max-width: 46ch; }
.home-form { display: flex; flex-direction: column; gap: 0.85rem; }
.home-form .cf-input, .home-form .cf-select, .home-form .cf-textarea { background: var(--cream); }
.home-form .cf-submit { width: 100%; justify-content: center; }
.home-form-note { text-align: center; font-size: 0.72rem; color: var(--light); margin-top: 0.25rem; }

/* Hero trust line */
.hero-trust { display: flex; flex-wrap: wrap; gap: 0.4rem 1rem; font-size: 0.72rem; font-weight: 300; color: var(--mid); margin-top: 0.25rem; }
.hero-trust span { display: inline-flex; align-items: center; gap: 0.4rem; }
.hero-trust span::before { content: '✦'; color: var(--coral); font-size: 0.6rem; }
@media (prefers-reduced-motion: no-preference) { .hero-left > *:nth-child(5) { animation-delay: 0.45s; } }

/* Sticky mobile CTA */
.sticky-cta { position: fixed; left: 0; right: 0; bottom: 0; z-index: 480; display: none; padding: 0.7rem 1rem; background: rgba(255,255,255,0.96); backdrop-filter: blur(12px); border-top: 1px solid var(--border); box-shadow: 0 -6px 24px rgba(0,0,0,0.06); }
.sticky-cta a { display: flex; align-items: center; justify-content: center; gap: 0.5rem; width: 100%; background: var(--coral); color: #fff; font-family: var(--syne); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; padding: 0.9rem; border-radius: 100px; }

@media (min-width: 768px) {
  .trust-bar { grid-template-columns: repeat(3, 1fr); }
  .trust-item { border-bottom: none; border-right: 1px solid rgba(255,255,255,0.08); justify-content: center; }
  .trust-item:last-child { border-right: none; }
  .home-cta { padding: 4.5rem 3rem; }
}
@media (max-width: 767px) { .sticky-cta.show { display: block; } body.has-sticky { padding-bottom: 4.75rem; } }

/* ════════════════════════════════════════
   CASE STUDY PAGES
════════════════════════════════════════ */
.cs-hero { padding: 6.5rem 1.25rem 2.5rem; }
.cs-title { font-family: var(--syne); font-size: clamp(2.4rem, 9vw, 5rem); font-weight: 800; letter-spacing: -0.035em; line-height: 0.95; margin: 0.5rem 0 1rem; }
.cs-title em { font-family: var(--serif); font-style: italic; font-weight: 400; color: var(--coral); }
.cs-lead { font-size: 1rem; font-weight: 300; line-height: 1.8; color: var(--mid); max-width: 60ch; }
.cs-meta { display: flex; flex-wrap: wrap; gap: 1.75rem; margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid var(--border); }
.cs-meta-item .l { font-size: 0.6rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--light); margin-bottom: 0.3rem; }
.cs-meta-item .v { font-family: var(--syne); font-size: 0.85rem; font-weight: 700; }
.cs-note { display: inline-flex; gap: 0.5rem; align-items: center; margin-top: 1.5rem; font-size: 0.72rem; font-weight: 300; color: var(--coral-dk); background: var(--coral-lt); border-radius: 100px; padding: 0.5rem 1rem; }
.cs-stage { padding: 1rem 1.25rem; }
.cs-showcase { max-width: 980px; margin: 0 auto; }
.cs-showcase .demo-screen { aspect-ratio: 16 / 10; padding: 2.5rem; }
.cs-showcase .demo-h { font-size: clamp(1.8rem, 5vw, 2.8rem); }
.cs-showcase .demo-sub { font-size: 0.85rem; max-width: 34ch; }
.cs-section { padding: 3rem 1.25rem; }
.cs-section.alt { background: var(--white); }
.cs-section.dark { background: var(--ink); color: #fff; }
.cs-h2 { font-family: var(--syne); font-size: clamp(1.5rem, 5vw, 2.2rem); font-weight: 800; letter-spacing: -0.025em; line-height: 1.1; margin-bottom: 1rem; }
.cs-h2 em { font-family: var(--serif); font-style: italic; font-weight: 400; color: var(--coral); }
.cs-body { font-size: 0.95rem; font-weight: 300; line-height: 1.85; color: var(--mid); max-width: 62ch; margin-bottom: 1rem; }
.cs-section.dark .cs-body { color: rgba(255,255,255,0.66); }
.cs-grid2 { display: grid; grid-template-columns: 1fr; gap: 2rem; }
.cs-swatches { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-top: 1rem; }
.cs-sw { width: 62px; height: 62px; border-radius: 12px; border: 1px solid rgba(255,255,255,0.15); display: flex; align-items: flex-end; padding: 5px; font-size: 0.5rem; font-weight: 700; color: rgba(255,255,255,0.6); }
.cs-type { margin-top: 1.25rem; display: flex; flex-direction: column; gap: 0.5rem; }
.cs-type-big { font-family: var(--syne); font-size: 1.9rem; font-weight: 800; line-height: 1; }
.cs-type-serif { font-family: var(--serif); font-style: italic; font-size: 1.5rem; color: var(--coral); }
.cs-type-body { font-size: 0.9rem; color: rgba(255,255,255,0.6); }
.cs-goals { display: flex; flex-direction: column; gap: 0.85rem; margin-top: 1.25rem; }
.cs-goal { display: flex; gap: 0.7rem; font-size: 0.95rem; font-weight: 300; align-items: flex-start; line-height: 1.5; }
.cs-goal::before { content: '→'; color: var(--coral); font-weight: 700; flex-shrink: 0; }
@media (min-width: 768px) {
  .cs-hero { padding: 9rem 3rem 3rem; }
  .cs-stage, .cs-section { padding-left: 3rem; padding-right: 3rem; }
  .cs-grid2 { grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
}
@media (min-width: 1024px) {
  .cs-hero { padding-left: 3.5rem; padding-right: 3.5rem; }
  .cs-stage, .cs-section { padding-left: 3.5rem; padding-right: 3.5rem; }
}

/* ════════════════════════════════════════
   SOCIAL PROOF / TESTIMONIALS
════════════════════════════════════════ */
.testimonials { padding: 3rem 1.25rem; background: var(--cream); }
.tst-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; margin-top: 2rem; }
.tst-card { border: 1px solid var(--border); border-radius: 16px; padding: 1.75rem; background: var(--white); }
.tst-stars { color: var(--coral); font-size: 0.8rem; letter-spacing: 3px; margin-bottom: 0.75rem; }
.tst-quote { font-family: var(--serif); font-style: italic; font-size: 1.15rem; line-height: 1.45; margin-bottom: 1.25rem; }
.tst-who { display: flex; align-items: center; gap: 0.75rem; }
.tst-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--coral-lt); color: var(--coral-dk); display: flex; align-items: center; justify-content: center; font-family: var(--syne); font-weight: 800; font-size: 0.85rem; flex-shrink: 0; }
.tst-name { font-family: var(--syne); font-size: 0.85rem; font-weight: 700; }
.tst-role { font-size: 0.72rem; color: var(--mid); }
@media (min-width: 768px) { .testimonials { padding: 5rem 3rem; } .tst-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .testimonials { padding-left: 3.5rem; padding-right: 3.5rem; } }
