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

/* ══════════════════════════════════
   AFRIPROMPTSTUDIO — EDITORIAL BUILD
   Light canvas · High typographic tension
   Reference: Basement.studio, Locomotive
   Reject: dark default, glow orbs, card grids
══════════════════════════════════ */

:root {
  /* Canvas */
  --paper:   #f8f6f1;
  --white:   #ffffff;
  --ink:     #0a0a0a;
  --ink-60:  rgba(10,10,10,0.55);
  --ink-20:  rgba(10,10,10,0.12);
  --ink-08:  rgba(10,10,10,0.06);

  /* The ONE accent — WhatsApp green, CTA-only */
  --wa:      #22c55e;
  --wa-dark: #16a34a;

  /* Type */
  --serif:  'Instrument Serif', Georgia, serif;
  --sans:   'Inter', system-ui, sans-serif;

  /* Scale (Perfect Fourth, 1.333) */
  --t-xs:   0.75rem;    /* 12px */
  --t-sm:   0.875rem;   /* 14px */
  --t-base: 1rem;       /* 16px */
  --t-lg:   1.125rem;   /* 18px */
  --t-xl:   1.5rem;     /* 24px */
  --t-2xl:  2rem;       /* 32px */
  --t-3xl:  2.667rem;   /* ~43px */
  --t-4xl:  3.556rem;   /* ~57px */
  --t-hero: clamp(3.5rem, 8vw, 7rem);

  /* Space */
  --pad-x:  clamp(24px, 5.5vw, 80px);
  --pad-section: clamp(80px, 10vw, 140px);
}

body.dark {
  --paper:   #0a0a0a;
  --white:   #111111;
  --ink:     #f8f6f1;
  --ink-60:  rgba(248,246,241,0.55);
  --ink-20:  rgba(248,246,241,0.12);
  --ink-08:  rgba(248,246,241,0.06);
}

/* ── RESET ── */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--paper);
  color: var(--ink);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: background-color 0.4s cubic-bezier(.16,1,.3,1), color 0.4s cubic-bezier(.16,1,.3,1);
}
a { text-decoration: none; color: inherit; }
img, svg { display: block; }

/* Cursor: none only on non-touch */
@media (hover:hover) and (pointer:fine) {
  html { cursor: none; }
  a, button, [role="button"] { cursor: none; }
}

/* ── CURSOR ── */
#cursor {
  position: fixed;
  top: 0; left: 0;
  width: 10px; height: 10px;
  background: var(--ink);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width .25s, height .25s, background .25s;
  will-change: transform;
}
#cursor.grow {
  width: 44px; height: 44px;
  background: var(--wa);
}
#cursor.grow-link {
  width: 80px; height: 80px;
  background: var(--ink);
  mix-blend-mode: difference;
}
/* Invert to white on dark backgrounds */
#cursor.light {
  background: var(--paper);
  mix-blend-mode: normal;
}

/* ── NAVIGATION ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 20px var(--pad-x);
}
nav.pinned {
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--ink-20);
  padding-top: 13px;
  padding-bottom: 13px;
}
.nav-left {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-avail {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-60);
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.25);
  padding: 5px 10px;
  border-radius: 999px;
}
.nav-avail-dot {
  width: 5px; height: 5px;
  background: var(--wa);
  border-radius: 50%;
  animation: blink 2s ease-in-out infinite;
}
.nav-logo {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-style: italic;
  letter-spacing: -0.01em;
  color: var(--ink);
  line-height: 1;
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-logo-mark {
  width: 24px;
  height: 24px;
  color: var(--ink);
  flex-shrink: 0;
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 28px;
  justify-content: flex-end;
}
.nav-links {
  display: flex;
  gap: 28px;
}
.nav-links a {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-60);
  transition: color .2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 1px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s cubic-bezier(.16,1,.3,1);
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { transform: scaleX(1); }

.theme-toggle {
  background: none;
  border: none;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  transition: transform 0.2s;
  outline: none;
}
.theme-toggle svg {
  width: 20px;
  height: 20px;
}
.theme-toggle:hover { transform: scale(1.1); }
.theme-toggle .moon-icon { display: none; }
body.dark .theme-toggle .sun-icon { display: none; }
body.dark .theme-toggle .moon-icon { display: block; }
.nav-cta {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--ink);
  padding: 9px 18px;
  border-radius: 2px;
  transition: background .2s;
  display: flex; align-items: center; gap: 7px;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--wa); }

/* ── HERO ── */
.hero {
  min-height: 100svh;
  padding: 0 var(--pad-x);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--ink-20);
  position: relative;
  overflow: hidden;
}

/* Large decorative background word */
.hero-bg-word {
  position: absolute;
  bottom: -3%;
  right: -1%;
  font-family: var(--serif);
  font-size: clamp(160px, 22vw, 300px);
  font-weight: 400;
  font-style: italic;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--ink-20);
  letter-spacing: -0.05em;
  line-height: 1;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  white-space: nowrap;
}

/* Rotating badge — positioned on the left side above the mid-rule */
.hero-badge {
  position: absolute;
  top: 22%;
  left: var(--pad-x);
  width: 120px;
  height: 120px;
  z-index: 2;
}
.hero-badge-ring {
  width: 100%; height: 100%;
  animation: rotateSlow 16s linear infinite;
}
.hero-badge-text {
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  fill: var(--ink-60);
}
.hero-badge-center {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-badge-center-icon {
  width: 22px;
  height: 22px;
  color: var(--ink);
}
@keyframes rotateSlow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* Year marker — no dangling line */
.hero-year {
  position: absolute;
  bottom: 68px;
  left: var(--pad-x);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-60);
}

/* Vertical column rule — removed */
.hero-col-rule { display: none; }

/* Mid-hero horizontal rule with label */
.hero-mid-rule {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  gap: 0;
  pointer-events: none;
  z-index: 1;
}
.hero-mid-rule::before,
.hero-mid-rule::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--ink-20);
}
.hero-mid-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-60);
  padding: 0 24px;
  white-space: nowrap;
}

/* Mobile-only hero fill: slim horizontal scrolling tag strip */
.hero-mobile-fill {
  display: none;
}
/* Tag chip strip */
.hero-tag-strip {
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 2px;
}
.hero-tag-strip::-webkit-scrollbar { display: none; }
.hero-tag {
  flex-shrink: 0;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-60);
  padding: 8px 14px;
  border: 1px solid var(--ink-20);
  border-radius: 999px;
  background: var(--white);
  white-space: nowrap;
}

.hero-top-bar {
  position: absolute;
  top: 0; left: 0; right: 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 110px var(--pad-x) 0;
  z-index: 1;
}
.hero-top-right {
  text-align: right;
  max-width: 240px;
}
.hero-top-right p {
  font-size: 13px;
  color: var(--ink-60);
  line-height: 1.65;
}
.hero-location {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: var(--t-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-60);
}
.hero-location-dot {
  width: 6px; height: 6px;
  background: var(--wa);
  border-radius: 50%;
  animation: blink 2s ease-in-out infinite;
}
@keyframes blink {
  0%,100% { opacity:1; }
  50%      { opacity:.2; }
}

.hero-headline {
  font-family: var(--serif);
  font-size: var(--t-hero);
  font-weight: 400;
  line-height: 0.93;
  letter-spacing: -0.035em;
  color: var(--ink);
  max-width: 900px;
  text-wrap: balance;
  position: relative;
  z-index: 1;
}
.hero-headline em {
  font-style: italic;
}
.hero-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: 48px;
  gap: 24px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--wa);
  color: var(--white);
  font-size: var(--t-sm);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 2px;
  transition: background .2s, transform .2s;
}
.btn-wa:hover { background: var(--wa-dark); transform: translateY(-1px); }
.btn-text {
  font-size: var(--t-sm);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-60);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color .2s;
}
.btn-text:hover { color: var(--ink); }
.hero-scroll-hint {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-60);
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-scroll-hint::before {
  content: '';
  display: block;
  width: 48px;
  height: 1px;
  background: currentColor;
}

/* ── MARQUEE ── */
.marquee {
  border-bottom: 1px solid var(--ink-20);
  padding: 16px 0;
  overflow: hidden;
  background: var(--white);
}
.marquee-inner {
  display: flex;
  gap: 0;
  width: max-content;
  animation: roll 30s linear infinite;
}
.marquee-inner:hover { animation-play-state: paused; }
.marquee-item {
  font-size: var(--t-xs);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-60);
  white-space: nowrap;
  padding: 0 32px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.marquee-item::after {
  content: '';
  display: inline-block;
  width: 4px;
  height: 4px;
  background: var(--wa);
  border-radius: 50%;
}
@keyframes roll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── SECTION SYSTEM ── */
.section {
  padding: var(--pad-section) var(--pad-x);
  border-bottom: 1px solid var(--ink-20);
}
.section-label {
  font-size: var(--t-xs);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-60);
  margin-bottom: 48px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.section-label span {
  width: 32px;
  height: 1px;
  background: var(--ink-60);
  display: block;
}
.section-title {
  font-family: var(--serif);
  font-size: var(--t-4xl);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--ink);
  text-wrap: balance;
}
.section-title em { font-style: italic; }

/* ── WORKS ── */
.work-list {
  margin-top: 64px;
}
.work-item {
  display: grid;
  grid-template-columns: 80px 1fr 280px;
  align-items: start;
  gap: 32px;
  padding: 32px 0;
  border-top: 1px solid var(--ink-20);
  transition: background .2s;
  text-decoration: none;
  color: inherit;
}
.work-item:last-child { border-bottom: 1px solid var(--ink-20); }
.work-item:hover .work-item-num { color: var(--ink); }
.work-item:hover .work-item-arrow { transform: translate(4px, -4px); }
.work-item-num {
  font-size: var(--t-xs);
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--ink-60);
  padding-top: 6px;
  transition: color .2s;
}
.work-item-body {}
.work-item-tag {
  font-size: var(--t-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--wa);
  font-weight: 500;
  margin-bottom: 8px;
}
.work-item-title {
  font-family: var(--serif);
  font-size: var(--t-2xl);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.work-item-desc {
  font-size: var(--t-sm);
  color: var(--ink-60);
  line-height: 1.65;
  max-width: 55ch;
}
.work-item-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 16px;
  padding-top: 6px;
}
.work-item-arrow {
  width: 20px;
  height: 20px;
  color: var(--ink);
  transition: transform .3s cubic-bezier(.16,1,.3,1);
  flex-shrink: 0;
}
/* Live preview thumbnail */
.work-thumb {
  width: 200px;
  height: 120px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--ink-20);
  background: var(--ink-08);
  flex-shrink: 0;
}
.work-thumb iframe {
  width: 400%;
  height: 400%;
  transform: scale(.25);
  transform-origin: top left;
  border: none;
  pointer-events: none;
}
.work-badge {
  font-size: var(--t-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink-60);
  padding: 4px 10px;
  border: 1px solid var(--ink-20);
  border-radius: 999px;
}

/* ── SERVICES ── */
.services-cols {
  margin-top: 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--ink-20);
}
.service-cell {
  padding: 40px 36px;
  border-right: 1px solid var(--ink-20);
  border-bottom: 1px solid var(--ink-20);
  transition: background .25s;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .6s, transform .6s, background .25s;
}
.service-cell:nth-child(2n) { border-right: none; }
.service-cell:nth-last-child(-n+2) { border-bottom: none; }
.service-cell:hover { background: var(--white); }
.service-cell.visible { opacity:1; transform:none; }
.service-num {
  font-size: var(--t-xs);
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--ink-60);
  margin-bottom: 24px;
}
.service-title {
  font-family: var(--serif);
  font-size: var(--t-xl);
  font-weight: 400;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  line-height: 1.15;
}
.service-desc {
  font-size: var(--t-sm);
  color: var(--ink-60);
  line-height: 1.7;
}

/* ── METRICS BAND ── */
.metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.metric-item {
  padding: 48px 40px;
  border-right: 1px solid var(--ink-20);
  opacity: 0; transform: translateY(20px);
  transition: opacity .7s, transform .7s;
}
.metric-item:last-child { border-right: none; }
.metric-item.visible { opacity:1; transform:none; }
.metric-num {
  font-family: var(--serif);
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.metric-suffix { color: var(--wa); }
.metric-label {
  font-size: var(--t-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-60);
  margin-top: 12px;
}

/* ── PROCESS ── */
.process-rows {
  margin-top: 64px;
}
.process-row {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  padding: 36px 0;
  border-top: 1px solid var(--ink-20);
  opacity: 0; transform: translateX(-20px);
  transition: opacity .6s, transform .6s;
}
.process-row:last-child { border-bottom: 1px solid var(--ink-20); }
.process-row.visible { opacity:1; transform:none; }
.process-n {
  font-size: var(--t-xs);
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--ink-60);
  padding-top: 4px;
}
.process-body {}
.process-title {
  font-family: var(--serif);
  font-size: var(--t-xl);
  font-weight: 400;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.process-desc {
  font-size: var(--t-sm);
  color: var(--ink-60);
  line-height: 1.7;
  max-width: 55ch;
}
.process-when {
  font-size: var(--t-xs);
  letter-spacing: 0.08em;
  color: var(--ink-60);
  margin-top: 8px;
}

/* ── CTA SECTION ── */
.cta-section {
  padding: var(--pad-section) var(--pad-x);
  background: var(--ink);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
}
.cta-headline {
  font-family: var(--serif);
  font-size: clamp(3rem, 7vw, 6.5rem);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--paper);
  max-width: 900px;
  text-wrap: balance;
}
.cta-headline em { font-style: italic; color: var(--wa); }
.cta-sub {
  font-size: var(--t-base);
  color: rgba(248,246,241,0.55);
  line-height: 1.7;
  max-width: 50ch;
}

/* ── FAB ── */
.fab-wa {
  position: fixed;
  bottom: 32px; right: 32px;
  width: 60px; height: 60px;
  background: var(--wa);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  z-index: 100;
  box-shadow: 0 8px 24px rgba(34,197,94,0.3);
  transform: scale(0);
  transition: transform .4s cubic-bezier(.16,1,.3,1), background .2s;
}
.fab-wa.show { transform: scale(1); }
.fab-wa:hover { background: var(--wa-dark); }
.fab-wa svg { width: 26px; height: 26px; }

/* Mobile Call FAB */
.fab-call { display: none; }

/* ── FOOTER ── */
footer {
  padding: 48px var(--pad-x);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  background: var(--paper);
  border-top: 1px solid var(--ink-20);
}
.footer-logo {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--ink);
}
.footer-copy {
  font-size: var(--t-xs);
  color: var(--ink-60);
  letter-spacing: 0.05em;
}
.footer-links {
  display: flex; gap: 28px;
}
.footer-links a {
  font-size: var(--t-xs);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-60);
  transition: color .2s;
}
.footer-links a:hover { color: var(--ink); }

/* ── PRICING ── */
.pricing-grid {
  margin-top: 64px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  border: 1px solid var(--ink-20);
}
.pricing-card {
  display: flex;
  flex-direction: column;
  padding: 48px 40px;
  border-right: 1px solid var(--ink-20);
  position: relative;
  transition: background .25s;
}
.pricing-card:last-child { border-right: none; }
.pricing-card:hover { background: var(--white); }
.pricing-card--featured {
  background: var(--ink);
  color: #f8f6f1;
}
.pricing-card--featured:hover { background: var(--ink); }

.pricing-badge-featured {
  position: absolute;
  top: -1px; right: 32px;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--wa);
  color: #fff;
  padding: 4px 10px;
  border-radius: 0 0 4px 4px;
}
.pricing-card-top {
  flex: 1;
}
.pricing-tier {
  font-size: var(--t-xs);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-60);
  margin-bottom: 20px;
}
.pricing-card--featured .pricing-tier {
  color: rgba(248,246,241,0.6);
}
.pricing-amount {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 20px;
  line-height: 1;
}
.pricing-currency {
  font-family: var(--sans);
  font-size: var(--t-sm);
  font-weight: 500;
  color: var(--ink-60);
  margin-top: 6px;
}
.pricing-card--featured .pricing-currency { color: rgba(248,246,241,0.6); }
.pricing-figure {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  color: var(--ink);
}
.pricing-card--featured .pricing-figure { color: #f8f6f1; }
.pricing-figure--custom {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: 400;
  font-style: italic;
  letter-spacing: -0.04em;
}
.pricing-desc {
  font-size: var(--t-sm);
  line-height: 1.7;
  color: var(--ink-60);
  margin-bottom: 32px;
}
.pricing-card--featured .pricing-desc { color: rgba(248,246,241,0.65); }
.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 40px;
  border-top: 1px solid var(--ink-20);
  padding-top: 28px;
}
.pricing-card--featured .pricing-features { border-top-color: rgba(248,246,241,0.15); }
.pricing-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: var(--t-sm);
  color: var(--ink-60);
}
.pricing-card--featured .pricing-features li { color: rgba(248,246,241,0.8); }
.pricing-features svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: var(--wa);
}
.pricing-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: var(--t-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 20px;
  border: 1px solid var(--ink-20);
  color: var(--ink);
  transition: background .2s, color .2s, border-color .2s;
  margin-top: auto;
}
.pricing-cta svg { width: 14px; height: 14px; transition: transform .2s; }
.pricing-cta:hover {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.pricing-cta:hover svg { transform: translate(3px, -3px); }
.pricing-cta--featured {
  background: var(--wa);
  color: #fff;
  border-color: var(--wa);
}
.pricing-cta--featured:hover {
  background: var(--wa-dark);
  border-color: var(--wa-dark);
  color: #fff;
}

/* ── REVEAL ── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s cubic-bezier(.16,1,.3,1), transform .7s cubic-bezier(.16,1,.3,1);
}
.fade-up.visible { opacity:1; transform:none; }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .work-item { grid-template-columns: 60px 1fr; }
  .work-item-right { display: none; }
  .metrics { grid-template-columns: 1fr 1fr; }
  .metric-item:nth-child(2) { border-right: none; }
  .metric-item:nth-child(3) { border-right: 1px solid var(--ink-20); }
  .hero-badge { width: 100px; height: 100px; bottom: 80px; }
}

@media (max-width: 768px) {
  /* Nav */
  .nav-links { display: none; }
  .nav-avail { display: none; }
  .nav-left { display: none; }
  nav { grid-template-columns: 1fr auto; gap: 12px; padding: 16px 20px; }
  .nav-logo { font-size: 1rem; justify-self: auto; }
  .nav-right { gap: 12px; }
  .nav-cta { padding: 8px 14px; font-size: 10px; }

  /* ── HERO ── */
  :root { --pad-x: 20px; --pad-section: 60px; }
  
  /* Simple flex column — no grid, no overflow issues */
  .hero {
    display: flex;
    flex-direction: column;
    min-height: 100svh;
    padding: 80px 20px 40px;
    gap: 0;
    justify-content: flex-start;
    overflow: hidden;
  }

  /* Top bar: only location, no description */
  .hero-top-bar {
    position: relative;
    padding: 0;
    margin-bottom: 28px;
    flex-direction: row; /* keep location on left */
    justify-content: flex-start;
    align-items: center;
    gap: 0;
  }
  .hero-top-right { display: none; } /* hidden on mobile */

  /* Tag chip strip */
  .hero-mobile-fill {
    display: block;
    width: 100%;
    margin-bottom: 28px;
    overflow: hidden; /* prevent chips from escaping */
  }
  .hero-tag-strip {
    width: 100%;
    overflow-x: auto;
    flex-wrap: nowrap;
  }

  /* "Studio" watermark: sits BEHIND the bottom half */
  .hero-bg-word {
    font-size: clamp(100px, 42vw, 160px);
    bottom: 80px;
    right: -5%;
    -webkit-text-stroke: 1.5px var(--ink-20);
    opacity: 0.9;
  }

  /* Spacer so headline is pushed UP to reveal Studio text below it */
  .hero-headline {
    margin-top: 32px;
    font-size: clamp(2.6rem, 11vw, 4rem);
    line-height: 0.95;
    position: relative;
    z-index: 1; /* above Studio text */
  }

  /* CTAs: close to headline, pushing everything below it away */
  .hero-bottom {
    margin-top: 28px;
    margin-bottom: auto; /* this pushes the empty space to the bottom, exposing the Studio text */
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    position: relative;
    z-index: 1;
  }
  .btn-wa { width: 100%; justify-content: center; }
  .btn-text { width: auto; }

  /* Rotating badge on mobile: bottom left */
  .hero-badge { 
    display: block;
    position: absolute;
    bottom: 32px;
    left: 20px;
    width: 90px;
    height: 90px;
    top: auto;
    right: auto;
    transform: none;
    z-index: 2;
  }
  .hero-year  { display: none; }
  .hero-mid-rule { display: none; }
  .hero-col-rule { display: none; }
  .hero-scroll-hint { display: none; }
  #cursor { display: none; }

  
  /* Metrics */
  .metrics { grid-template-columns: 1fr 1fr; border-bottom: 1px solid var(--ink-20); }
  .metric-item { padding: 32px 20px; border-right: none; border-bottom: 1px solid var(--ink-20); }
  .metric-item:nth-child(odd) { border-right: 1px solid var(--ink-20); }
  .metric-item:nth-last-child(-n+2) { border-bottom: none; }
  .metric-num { font-size: clamp(2.2rem, 9vw, 3.5rem); }
  
  /* Work */
  .work-item { grid-template-columns: 40px 1fr; gap: 14px; padding: 24px 0; }
  .work-item-right { display: none; }
  .work-item-title { font-size: 1.4rem; }
  
  /* Work expansion on tap */
  .work-item.expanded {
    grid-template-columns: 1fr;
    gap: 16px;
    padding-bottom: 32px;
  }
  .work-item.expanded .work-item-num { display: none; }
  .work-item.expanded .work-item-right {
    display: flex;
    align-items: flex-start;
    padding-top: 12px;
    width: 100%;
  }
  .work-item.expanded .work-thumb {
    width: 100%;
    height: 200px;
  }
  .work-item.expanded .work-item-arrow { display: none; }
  
  /* Tap hint below title when expanded */
  .work-item.expanded .work-item-title::after {
    content: ' → Tap again to visit site';
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--wa);
    display: block;
    margin-top: 12px;
    font-style: normal;
  }
  
  /* Services */
  .services-cols { grid-template-columns: 1fr; }
  .service-cell { border-right: none !important; border-bottom: 1px solid var(--ink-20) !important; }
  .service-cell:last-child { border-bottom: none !important; }
  .service-cell { padding: 32px 20px; }
  
  /* Process */
  .process-row { grid-template-columns: 40px 1fr; gap: 14px; padding: 28px 0; }
  
  /* Section */
  .section { padding: 60px 20px; }
  .section-label { margin-bottom: 32px; }
  .section-title { font-size: clamp(2rem, 8vw, 3rem); }
  
  /* CTA */
  /* Pricing */
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card { border-right: none; border-bottom: 1px solid var(--ink-20); padding: 40px 24px; }
  .pricing-card:last-child { border-bottom: none; }
  .pricing-card--featured { order: -1; }
  .pricing-badge-featured { right: 24px; }

  /* CTA */
  .cta-section { padding: 60px 20px; gap: 28px; }
  .cta-headline { font-size: clamp(2.2rem, 9vw, 3.5rem); }
  
  /* Footer */
  footer { flex-direction: column; align-items: flex-start; padding: 40px 20px; gap: 16px; }
  .footer-links { gap: 20px; }
}

@media (max-width: 480px) {
  nav { padding: 14px 16px; }
  .nav-logo { font-size: 0.9rem; }
  .hero-headline { font-size: clamp(2.4rem, 12vw, 3.5rem); }
  .hero-btns, .hero-cta-group { flex-direction: column; align-items: flex-start; }
  .btn-wa { width: 100%; justify-content: center; }
  
  /* WhatsApp FAB on right */
  .fab-wa { bottom: 20px; right: 20px; width: 50px; height: 50px; }
  .fab-wa svg { width: 22px; height: 22px; }
  
  /* Call FAB on left */
  .fab-call {
    display: flex;
    position: fixed;
    bottom: 20px; left: 20px;
    width: 50px; height: 50px;
    background: var(--ink);
    border-radius: 50%;
    align-items: center; justify-content: center;
    color: var(--white);
    z-index: 100;
    box-shadow: 0 8px 24px rgba(10,10,10,0.25);
    transform: scale(0);
    transition: transform .4s cubic-bezier(.16,1,.3,1), background .2s;
  }
  .fab-call.show { transform: scale(1); }
  .fab-call:hover { background: #333; }
  .fab-call svg { width: 20px; height: 20px; }
}
