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

:root {
  --red:    #E3251A;
  --cream:  #F4EFE4;
  --white:  #FDFAF5;
  --paper:  #EDE8DC;
  --ink:    #1C1C1A;
  --muted:  #888076;
  --border: rgba(28,28,26,.12);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Barlow', sans-serif;
  --font-cond:    'Barlow Condensed', sans-serif;
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
}
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }

/* ─── SCROLL REVEAL ────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease calc(var(--d, 0s)), transform .7s ease calc(var(--d, 0s));
}
.reveal.in { opacity: 1; transform: none; }
.reveal-img { opacity: 0; transition: opacity .9s ease .2s; }
.reveal-img.in { opacity: 1; }

/* ─── NAV ─────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; gap: 2rem;
  padding: .9rem 3vw;
  background: rgba(244,239,228,.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  display: flex; align-items: center; gap: .55rem;
  font-family: var(--font-cond);
  font-size: .8rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--ink);
  margin-right: auto;
}
.nav-links {
  display: flex; list-style: none; gap: 2.2rem;
}
.nav-links a {
  font-family: var(--font-body);
  font-size: .78rem; font-weight: 400;
  color: var(--muted); letter-spacing: .04em;
  transition: color .2s;
}
.nav-links a:hover { color: var(--red); }

/* Status badge — not a link, just info */
.nav-status {
  display: flex; align-items: center; gap: .45rem;
  font-family: var(--font-cond);
  font-size: .7rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--border);
  padding: .4rem .9rem;
  pointer-events: none;
}
.nav-status-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #3cba6e;
  animation: pulse 2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .4; }
}

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span { display: block; width: 22px; height: 1.5px; background: var(--ink); }

/* ─── MOBILE MENU ──────────────────────────────── */
.mobile-nav {
  position: fixed; inset: 0; z-index: 300;
  background: var(--cream);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2rem;
  transform: translateX(100%);
  transition: transform .4s cubic-bezier(.77,0,.18,1);
}
.mobile-nav.open { transform: none; }
.mobile-close {
  position: absolute; top: 1.2rem; right: 3vw;
  background: none; border: none; font-size: 1.5rem;
  color: var(--ink); cursor: pointer;
}
.mobile-nav ul { list-style: none; text-align: center; }
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 2.4rem; font-weight: 700;
  color: var(--ink); display: block; padding: .4rem 0;
  transition: color .2s;
}
.mobile-nav a:hover { color: var(--red); }

/* ─── BUTTONS ─────────────────────────────────── */
.btn-red {
  display: inline-block;
  font-family: var(--font-cond);
  font-size: .78rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  background: var(--red); color: var(--white);
  padding: .75rem 1.8rem;
  transition: opacity .2s, transform .2s;
  border: none; cursor: pointer;
}
.btn-red:hover { opacity: .88; transform: translateY(-1px); }
.btn-outline {
  display: inline-block;
  font-family: var(--font-cond);
  font-size: .78rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--ink);
  border: 1.5px solid var(--ink);
  padding: .75rem 1.8rem;
  transition: border-color .2s, color .2s;
}
.btn-outline:hover { border-color: var(--red); color: var(--red); }

/* ─── SECTION COMMONS ─────────────────────────── */
.section-label-row {
  display: flex; align-items: center; gap: .55rem;
  margin-bottom: 1rem;
}
.section-label {
  font-family: var(--font-cond);
  font-size: .72rem; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--muted);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 900; letter-spacing: -.01em; line-height: .95;
  color: var(--ink);
}
.section-header {
  padding: 6rem 3vw 2.5rem;
  border-bottom: 1px solid var(--border);
}

/* ═══════════════════════════════════════════════
   HERO
══════════════════════════════════════════════ */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  border-bottom: 1px solid var(--border);
}
.hero-left {
  background: var(--white);
  padding: 9rem 3vw 4rem;
  display: flex; flex-direction: column;
  border-right: 1px solid var(--border);
  position: relative;
}
.hero-meta {
  display: flex; align-items: center; gap: .8rem;
  font-family: var(--font-cond);
  font-size: .72rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 3rem;
}
.hero-tagline { flex: 1; }
.hero-availability { color: var(--red); }
.hero-logo-mark { flex-shrink: 0; }
.hero-numbers { flex: 1; }
.hero-num-row {
  display: flex; align-items: baseline; gap: .5rem; line-height: 1;
}
.big-num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 7vw, 5.5rem);
  font-weight: 900; letter-spacing: -.03em; line-height: .95;
  color: var(--ink); display: block;
}
.big-num.red { color: var(--red); }
.hero-num-row.num-small { margin-top: 1.2rem; gap: 2rem; flex-wrap: wrap; }
.hero-num-row.num-small span {
  font-family: var(--font-cond); font-size: 1rem; font-weight: 600;
  letter-spacing: .06em; color: var(--muted);
}
.hero-num-row.num-small em { font-style: normal; color: var(--muted); font-weight: 400; }
.hero-foot { display: flex; gap: 1rem; align-items: center; margin-top: 3rem; }

.hero-right {
  background: var(--cream);
  padding: 9rem 3vw 4rem;
  display: flex; flex-direction: column; gap: 1.5rem;
}
.hero-img-wrap { flex: 1; position: relative; overflow: hidden; min-height: 280px; }
.hero-img { width: 100%; height: 100%; object-fit: cover; }
.hero-img-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: rgba(244,239,228,.9);
  display: flex; justify-content: space-between; align-items: center;
  padding: .65rem .9rem; border-top: 1px solid var(--border);
}
.caption-label {
  font-family: var(--font-cond); font-size: .65rem; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase; color: var(--red);
}
.caption-text { font-family: var(--font-body); font-size: .75rem; color: var(--muted); }
.hero-side-text { border-top: 1px solid var(--border); padding-top: 1.2rem; }
.hero-side-text p { font-size: .88rem; line-height: 1.7; color: var(--muted); font-weight: 300; }

/* ═══════════════════════════════════════════════
   SERVICES
══════════════════════════════════════════════ */
.services { background: var(--cream); }
.services-grid {
  display: grid; grid-template-columns: 1.2fr 1fr 1fr;
  gap: 0; border-top: 1px solid var(--border);
}
.svc-card {
  background: var(--white); border-right: 1px solid var(--border);
  padding: 2.5rem 2rem 2rem;
  display: flex; flex-direction: column; gap: 1.2rem;
  transition: background .25s;
}
.svc-card:last-child { border-right: none; }
.svc-card:not(.svc-red):hover { background: var(--paper); }
.svc-tall .svc-img-wrap { height: 220px; overflow: hidden; }
.svc-img-short { height: 140px; overflow: hidden; }
.svc-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.svc-card:hover .svc-img-wrap img { transform: scale(1.04); }
.svc-num {
  font-family: var(--font-cond); font-size: .68rem; font-weight: 600;
  letter-spacing: .15em; text-transform: uppercase; color: var(--red);
}
.svc-body h3 {
  font-family: var(--font-display); font-size: 1.35rem; font-weight: 900;
  line-height: 1.1; color: var(--ink); margin-bottom: .7rem;
}
.svc-body p { font-size: .82rem; line-height: 1.65; color: var(--muted); font-weight: 300; }
.svc-tags { display: flex; flex-wrap: wrap; gap: .4rem; margin-top: .8rem; }
.svc-tags span {
  font-family: var(--font-cond); font-size: .62rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  border: 1px solid var(--border); padding: .25rem .6rem; color: var(--muted);
}

/* Red email card */
.svc-red {
  background: var(--red) !important; border-right: none;
  position: relative; overflow: hidden;
}
.svc-num-light { color: rgba(255,255,255,.5) !important; }
.svc-body-light h3 { color: var(--white) !important; }
.svc-body-light p { color: rgba(255,255,255,.75) !important; }
.svc-tags-light span {
  border-color: rgba(255,255,255,.3) !important;
  color: rgba(255,255,255,.8) !important;
}

/* Email mock widget inside red card */
.email-mock {
  background: var(--white);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,.18);
  flex-shrink: 0;
}
.email-mock-bar {
  background: #f0ebe0; padding: .45rem .7rem;
  display: flex; align-items: center; gap: .4rem;
  border-bottom: 1px solid rgba(28,28,26,.1);
}
.email-mock-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: rgba(28,28,26,.15); flex-shrink: 0;
}
.email-mock-dot:nth-child(1) { background: #ff6057; }
.email-mock-dot:nth-child(2) { background: #ffc02d; }
.email-mock-dot:nth-child(3) { background: #27c93f; }
.email-mock-addr {
  font-family: var(--font-cond); font-size: .6rem;
  letter-spacing: .06em; color: var(--muted); margin-left: .4rem;
}
.email-mock-body { padding: .9rem .8rem; display: flex; flex-direction: column; gap: .5rem; }
.email-mock-hero-img {
  height: 52px; background: var(--paper);
  border-radius: 2px; margin-bottom: .3rem;
}
.email-mock-line {
  height: 7px; background: var(--paper); border-radius: 20px;
}
.w80 { width: 80%; }
.w60 { width: 60%; }
.w90 { width: 90%; }
.w50 { width: 50%; }
.email-mock-btn {
  margin-top: .4rem; background: var(--red); color: var(--white);
  font-family: var(--font-cond); font-size: .6rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  padding: .35rem .7rem; align-self: flex-start; border-radius: 2px;
}

/* ═══════════════════════════════════════════════
   WORK — 4 equal cards, 2×2 grid
══════════════════════════════════════════════ */
.work { background: var(--cream); }

.wk-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--border);
}

/* ── Card shell ── */
.wk-card {
  background: var(--white);
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  display: flex; flex-direction: column;
  /* staggered entrance animation */
  opacity: 0;
  transform: translateY(36px);
  animation: cardIn .65s cubic-bezier(.22,1,.36,1) forwards;
  animation-delay: calc(var(--i, 0) * 0.13s + 0.1s);
  animation-play-state: paused; /* JS starts it on intersect */
}
.wk-card.card-visible { animation-play-state: running; }
.wk-grid .wk-card:nth-child(2n) { border-right: none; }

@keyframes cardIn {
  to { opacity: 1; transform: translateY(0); }
}

/* ── Browser-chrome mockup ── */
.wk-screen {
  background: var(--paper);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.wk-browser-bar {
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: .45rem;
  padding: .5rem .8rem;
}
.wk-dot {
  width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0;
}
.wk-dot.r { background: #ff6057; }
.wk-dot.y { background: #ffc02d; }
.wk-dot.g { background: #27c93f; }
.wk-url {
  font-family: var(--font-cond); font-size: .6rem; letter-spacing: .05em;
  color: var(--muted); margin-left: .3rem;
  background: var(--white); border: 1px solid var(--border);
  padding: .18rem .7rem; border-radius: 20px; flex: 1; max-width: 200px;
}
.wk-img-wrap {
  height: 210px; overflow: hidden; position: relative;
}
.wk-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .65s cubic-bezier(.22,1,.36,1);
}
.wk-card:hover .wk-img-wrap img { transform: scale(1.06); }

/* ── Email-client mockup (card 3) ── */
.wk-screen-email { background: var(--white); }
.wk-email-bar {
  background: var(--cream); border-bottom: 1px solid var(--border);
  padding: .6rem .9rem;
}
.wk-email-header { display: flex; flex-direction: column; gap: .2rem; }
.wk-email-from {
  font-family: var(--font-cond); font-size: .62rem; font-weight: 600;
  letter-spacing: .04em; color: var(--ink);
}
.wk-email-subject {
  font-family: var(--font-body); font-size: .68rem; color: var(--muted);
}
.wk-email-preview { height: 210px; overflow: hidden; position: relative; }
.wk-ep-hero {
  width: 100%; height: 100%; position: relative; overflow: hidden;
}
.wk-ep-hero img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .65s cubic-bezier(.22,1,.36,1);
  filter: brightness(.88);
}
.wk-card:hover .wk-ep-hero img { transform: scale(1.06); }
.wk-ep-overlay {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: .7rem;
  background: rgba(28,28,26,.28);
}
.wk-ep-headline {
  font-family: var(--font-display); font-size: 1.6rem; font-weight: 900;
  color: var(--white); text-align: center; line-height: 1; letter-spacing: .04em;
}
.wk-ep-cta {
  font-family: var(--font-cond); font-size: .72rem; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  background: var(--red); color: var(--white);
  padding: .35rem 1rem;
}
.wk-ep-body {
  display: none; /* hidden — hero fills height */
}
.wk-ep-line { height: 6px; background: var(--paper); border-radius: 20px; margin: 4px 0; }
.w70 { width: 70%; } .w90 { width: 90%; } .w55 { width: 55%; }

/* ── Card body ── */
.wk-body {
  padding: 1.6rem 1.8rem 2rem;
  display: flex; flex-direction: column; gap: .7rem;
  flex: 1;
}
.wk-meta-row {
  display: flex; align-items: center; justify-content: space-between;
}
/* Coloured type badges — instantly readable */
.wk-badge {
  font-family: var(--font-cond); font-size: .65rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  padding: .28rem .75rem;
}
.wk-badge-ecom  { background: #fff0ee; color: var(--red); border: 1px solid rgba(227,37,26,.2); }
.wk-badge-wp    { background: #eef3ff; color: #2255cc; border: 1px solid rgba(34,85,204,.18); }
.wk-badge-email { background: #f0faf4; color: #1e7a45; border: 1px solid rgba(30,122,69,.18); }

.wk-num-tag {
  font-family: var(--font-cond); font-size: .65rem; font-weight: 600;
  letter-spacing: .1em; color: var(--muted);
}
.wk-title {
  font-family: var(--font-display); font-size: 1.25rem; font-weight: 900;
  line-height: 1.15; color: var(--ink);
  transition: color .2s;
}
.wk-card:hover .wk-title { color: var(--red); }
.wk-desc {
  font-size: .82rem; line-height: 1.68; color: var(--muted); font-weight: 300; flex: 1;
}
.wk-stack-row {
  display: flex; flex-wrap: wrap; gap: .35rem;
  padding-top: .9rem; border-top: 1px solid var(--border); margin-top: auto;
}
.wk-stack-row span {
  font-family: var(--font-cond); font-size: .6rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  background: var(--paper); color: var(--muted);
  padding: .22rem .6rem; border: 1px solid var(--border);
}

/* ═══════════════════════════════════════════════
   ABOUT
══════════════════════════════════════════════ */
.about { background: var(--white); border-top: 1px solid var(--border); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; }
.about-left {
  padding: 5rem 3vw 5rem; border-right: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 1.5rem;
}
.about-title {
  font-family: var(--font-display); font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 900; line-height: 1; color: var(--ink); letter-spacing: -.02em;
}
.about-title em { color: var(--red); font-style: italic; }
.about-body { display: flex; flex-direction: column; gap: .9rem; }
.about-body p { font-size: .9rem; line-height: 1.75; color: var(--muted); font-weight: 300; }
.about-exp {
  border-top: 1px solid var(--border); padding-top: 1.5rem;
  display: flex; flex-direction: column; gap: 1rem;
}
.exp-row {
  display: grid; grid-template-columns: auto 1fr auto;
  gap: 1rem; align-items: baseline;
  padding-bottom: 1rem; border-bottom: 1px solid var(--border);
}
.exp-row:last-child { border-bottom: none; }
.exp-co { font-family: var(--font-display); font-size: 1rem; font-weight: 700; }
.exp-role { font-size: .8rem; color: var(--muted); font-weight: 300; }
.exp-yr {
  font-family: var(--font-cond); font-size: .68rem; font-weight: 600;
  letter-spacing: .08em; color: var(--red); white-space: nowrap;
}
.about-right { padding: 5rem 3vw 5rem; display: flex; flex-direction: column; gap: 1.5rem; }
.about-img-panel { flex: 1; position: relative; overflow: hidden; min-height: 260px; }
.about-img-panel img { width: 100%; height: 100%; object-fit: cover; }
.about-img-tag {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: rgba(244,239,228,.93); padding: 1rem 1.2rem;
  border-top: 1px solid var(--border);
}
.about-img-tag .section-label { margin-bottom: .55rem; display: block; }
.skill-wrap { display: flex; flex-wrap: wrap; gap: .35rem; }
.skill-wrap span {
  font-family: var(--font-cond); font-size: .62rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  background: var(--cream); color: var(--muted);
  border: 1px solid var(--border); padding: .2rem .55rem;
}
.about-stat-row {
  display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--border);
}
.about-stat {
  padding: 1.2rem 1rem; border-right: 1px solid var(--border);
  display: flex; flex-direction: column; gap: .3rem; transition: background .2s;
}
.about-stat:last-child { border-right: none; }
.about-stat:hover { background: var(--paper); }
.about-stat-num {
  font-family: var(--font-display); font-size: 2rem; font-weight: 900;
  color: var(--red); line-height: 1;
}
.about-stat-label {
  font-family: var(--font-cond); font-size: .65rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase; color: var(--muted);
}

/* ═══════════════════════════════════════════════
   CONTACT
══════════════════════════════════════════════ */
.contact { background: var(--cream); border-top: 1px solid var(--border); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; }
.contact-left {
  padding: 5rem 3vw 5rem; border-right: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 1.5rem;
}
.contact-title {
  font-family: var(--font-display); font-size: clamp(3rem, 6vw, 6rem);
  font-weight: 900; line-height: .9; color: var(--ink); letter-spacing: -.02em;
}
.contact-body p { font-size: .88rem; line-height: 1.7; color: var(--muted); font-weight: 300; }
.contact-links {
  display: flex; flex-direction: column; gap: 0;
  border-top: 1px solid var(--border); padding-top: 1.2rem;
}
.contact-links a {
  font-family: var(--font-cond); font-size: .82rem; font-weight: 600;
  letter-spacing: .06em; color: var(--ink); transition: color .2s;
  padding: .65rem 0; border-bottom: 1px solid var(--border);
}
.contact-links a:hover { color: var(--red); }
.contact-footer-logo {
  display: flex; align-items: center; gap: .55rem; margin-top: auto;
  font-family: var(--font-cond); font-size: .78rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase; color: var(--muted);
}
.contact-right {
  background: var(--white); padding: 5rem 3vw 5rem;
  display: flex; flex-direction: column; gap: 1.5rem;
}
.contact-img-panel { height: 180px; overflow: hidden; }
.contact-img-panel img { width: 100%; height: 100%; object-fit: cover; }
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-field { display: flex; flex-direction: column; gap: .4rem; }
.form-field label {
  font-family: var(--font-cond); font-size: .65rem; font-weight: 600;
  letter-spacing: .15em; text-transform: uppercase; color: var(--muted);
}
.form-field input,
.form-field select,
.form-field textarea {
  background: var(--cream); border: 1px solid var(--border);
  padding: .7rem .9rem; font-family: var(--font-body);
  font-size: .85rem; color: var(--ink); outline: none;
  transition: border-color .2s; resize: none;
  -webkit-appearance: none; border-radius: 0;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { border-color: var(--red); }
.form-btn { align-self: flex-start; margin-top: .5rem; }
.form-status {
  font-family: var(--font-cond); font-size: .75rem;
  letter-spacing: .06em; min-height: 1.2rem;
}
.form-status.success { color: #2a7a4b; }
.form-status.error   { color: var(--red); }

/* ─── FOOTER ──────────────────────────────────── */
.footer { background: var(--white); border-top: 1px solid var(--border); padding: 1.5rem 3vw; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.footer-left {
  display: flex; align-items: center; gap: .55rem;
  font-family: var(--font-cond); font-size: .75rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase; color: var(--ink);
}
.footer-copy { font-family: var(--font-cond); font-size: .65rem; letter-spacing: .06em; color: var(--muted); }
.footer-nav { display: flex; gap: 1.8rem; }
.footer-nav a {
  font-family: var(--font-cond); font-size: .7rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase; color: var(--muted); transition: color .2s;
}
.footer-nav a:hover { color: var(--red); }

/* ═══════════════════════════════════════════════
   PROCESS SECTION
══════════════════════════════════════════════ */
.process {
  background: var(--white);
  border-top: 1px solid var(--border);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--border);
}

.process-step {
  padding: 3rem 2rem 3rem;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  position: relative;
  transition: background .25s;
}
.process-step:last-child { border-right: none; }
.process-step:hover { background: var(--paper); }

.process-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1;
  color: var(--paper);
  transition: color .25s;
}
.process-step:hover .process-num { color: var(--red); }

.process-line {
  width: 2rem;
  height: 2px;
  background: var(--red);
  flex-shrink: 0;
}

.process-content h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: .6rem;
  line-height: 1.2;
}
.process-content p {
  font-size: .82rem;
  line-height: 1.7;
  color: var(--muted);
  font-weight: 300;
}

/* Coming soon card */
.wk-card-soon {
  background: var(--cream) !important;
  border: 2px dashed var(--border) !important;
  cursor: default;
}
.wk-card-soon:hover { background: var(--paper) !important; }
.wk-soon-inner {
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  height: 100%;
}
.wk-soon-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.wk-soon-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.wk-soon-icon { opacity: .7; }
.wk-soon-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 900;
  line-height: 1.2;
  color: var(--ink);
}
.wk-soon-desc {
  font-size: .82rem;
  line-height: 1.68;
  color: var(--muted);
  font-weight: 300;
}
.wk-soon-cta {
  font-family: var(--font-cond);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--red);
  transition: letter-spacing .2s;
  align-self: flex-start;
}
.wk-soon-cta:hover { letter-spacing: .16em; }

/* Work section footer nudge */
.wk-footer-nudge {
  padding: 1.6rem 3vw;
  border-top: 1px solid var(--border);
  background: var(--white);
}
.wk-footer-nudge p {
  font-family: var(--font-body);
  font-size: .88rem;
  color: var(--muted);
  font-weight: 300;
}
.wk-footer-nudge a {
  color: var(--red);
  font-weight: 500;
  border-bottom: 1px solid transparent;
  transition: border-color .2s;
}
.wk-footer-nudge a:hover { border-color: var(--red); }

/* Contact title italic */
.contact-title em {
  font-style: italic;
  color: var(--red);
}

/* ═══════════════════════════════════════════════
   URGENCY BANNER
══════════════════════════════════════════════ */
.urgency-bar {
  background: var(--ink);
  padding: .55rem 3vw;
  display: flex; align-items: center; justify-content: center; gap: .8rem;
  position: relative; z-index: 199;
}
.urgency-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #3cba6e;
  animation: pulse 2s ease-in-out infinite;
  flex-shrink: 0;
}
.urgency-text {
  font-family: var(--font-cond);
  font-size: .72rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,.85);
}
.urgency-text em {
  color: #3cba6e; font-style: normal;
}
.urgency-cta {
  font-family: var(--font-cond);
  font-size: .72rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,.3);
  padding-bottom: 1px;
  transition: border-color .2s;
  margin-left: .4rem;
}
.urgency-cta:hover { border-color: var(--white); }

/* push hero down to account for urgency bar + nav */
.hero { padding-top: 0; }

/* ═══════════════════════════════════════════════
   HERO IMAGE — browser mockup
══════════════════════════════════════════════ */
.hero-mockup {
  flex: 1;
  background: var(--paper);
  border: 1px solid var(--border);
  overflow: hidden;
  display: flex; flex-direction: column;
  min-height: 280px;
}
.hero-mockup-bar {
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  padding: .5rem .8rem;
  display: flex; align-items: center; gap: .45rem;
  flex-shrink: 0;
}
.hero-mockup-dot {
  width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0;
}
.hero-mockup-dot.r { background: #ff6057; }
.hero-mockup-dot.y { background: #ffc02d; }
.hero-mockup-dot.g { background: #27c93f; }
.hero-mockup-url {
  font-family: var(--font-cond); font-size: .6rem; letter-spacing: .05em;
  color: var(--muted); margin-left: .3rem;
  background: var(--white); border: 1px solid var(--border);
  padding: .18rem .8rem; border-radius: 20px; flex: 1; max-width: 220px;
}
.hero-mockup-screen {
  flex: 1; overflow: hidden; position: relative;
}
.hero-mockup-screen img {
  width: 100%; height: 100%; object-fit: cover; object-position: top;
  transition: transform .6s ease;
}
.hero-mockup:hover .hero-mockup-screen img { transform: translateY(-6%); }
.hero-mockup-caption {
  border-top: 1px solid var(--border);
  background: rgba(244,239,228,.9);
  display: flex; justify-content: space-between; align-items: center;
  padding: .55rem .9rem;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════
   STAT COUNTER ANIMATION
══════════════════════════════════════════════ */
.about-stat-num {
  font-family: var(--font-display); font-size: 2rem; font-weight: 900;
  color: var(--red); line-height: 1;
  display: block;
}
.stat-counted { transition: opacity .3s; }

/* ═══════════════════════════════════════════════
   FAQ SECTION
══════════════════════════════════════════════ */
.faq {
  background: var(--cream);
  border-top: 1px solid var(--border);
}
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--border);
}
.faq-col {
  padding: 3rem 3vw 4rem;
  border-right: 1px solid var(--border);
}
.faq-col:last-child { border-right: none; }

.faq-item {
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.faq-item:first-child { border-top: 1px solid var(--border); }

.faq-q {
  width: 100%;
  background: none; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem 0;
  text-align: left; gap: 1rem;
}
.faq-q-text {
  font-family: var(--font-display);
  font-size: .95rem; font-weight: 700;
  color: var(--ink); line-height: 1.3;
}
.faq-icon {
  width: 22px; height: 22px;
  border: 1.5px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background .2s, border-color .2s, transform .3s;
  font-size: .75rem; color: var(--muted);
}
.faq-item.open .faq-icon {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
  transform: rotate(45deg);
}
.faq-item.open .faq-q-text { color: var(--red); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s cubic-bezier(.22,1,.36,1);
}
.faq-item.open .faq-a { max-height: 300px; }
.faq-a p {
  font-size: .84rem; line-height: 1.75;
  color: var(--muted); font-weight: 300;
  padding-bottom: 1.2rem;
}
.faq-a strong { font-weight: 500; color: var(--ink); }

/* ─── RESPONSIVE ──────────────────────────────── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
  .svc-red { grid-column: 1 / -1; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .process-step:nth-child(2) { border-right: none; }
  .process-step:nth-child(3) { border-top: 1px solid var(--border); }
  .process-step:nth-child(4) { border-top: 1px solid var(--border); }
}
@media (max-width: 768px) {
  .urgency-text span.hide-mobile { display: none; }
  .nav-links, .nav-status { display: none; }
  .hamburger { display: flex; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { padding: 7rem 5vw 3rem; border-right: none; border-bottom: 1px solid var(--border); }
  .hero-right { padding: 3rem 5vw 4rem; }
  .hero-mockup { min-height: 360px; flex: none; }
  .hero-mockup-screen { min-height: 280px; }
  .hero-mockup-screen img { object-fit: cover; object-position: top center; }
  .section-header { padding: 4rem 5vw 2rem; }
  .services-grid { grid-template-columns: 1fr; }
  .svc-card { border-right: none; border-bottom: 1px solid var(--border); }
  .svc-red { grid-column: auto; }
  .process-grid { grid-template-columns: 1fr; }
  .process-step { border-right: none; border-bottom: 1px solid var(--border); }
  .process-step:nth-child(3),
  .process-step:nth-child(4) { border-top: none; }
  .wk-grid { grid-template-columns: 1fr; }
  .wk-grid .wk-card { border-right: none; }
  .wk-img-wrap, .wk-email-preview { height: 220px; }
  .about-grid { grid-template-columns: 1fr; }
  .about-left { border-right: none; border-bottom: 1px solid var(--border); padding: 4rem 5vw; }
  .about-right { padding: 4rem 5vw; }
  .faq-grid { grid-template-columns: 1fr; }
  .faq-col { border-right: none; border-bottom: 1px solid var(--border); padding: 2rem 5vw; }
  .faq-col:last-child { border-bottom: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-left { border-right: none; border-bottom: 1px solid var(--border); padding: 4rem 5vw; }
  .contact-right { padding: 4rem 5vw; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; gap: 1rem; text-align: center; }
  .footer-nav { flex-wrap: wrap; justify-content: center; gap: 1rem; }
  .about-stat-row { grid-template-columns: 1fr; }
  .about-stat { border-right: none; border-bottom: 1px solid var(--border); }
}
@media (max-width: 480px) {
  .big-num { font-size: 3rem; }
  .contact-title { font-size: 3.5rem; }
}
