/* ============================================================
   JOBSON DIGITAL — styles.css
   Editorial luxury. Flat surfaces. No gradients on UI, no shadows on content.
   ============================================================ */

:root {
  --ink: #0a0a0a;
  --ink-muted: #5a5a5a;
  --ink-faint: #b0b0b0;
  --paper: #f5f3ee;
  --paper-warm: #ede9e0;
  --accent: #c8f04a;
  --accent-dark: #9abf1e;

  --line: rgba(0, 0, 0, 0.1);
  --line-light: rgba(255, 255, 255, 0.1);

  --font-display: 'Bebas Neue', Impact, sans-serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --font-mono: 'DM Mono', 'Courier New', monospace;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  font-weight: 300;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

/* ---------- Custom cursor ---------- */
.cursor {
  position: fixed;
  top: 0; left: 0;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--accent);
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.25s ease, height 0.25s ease, background 0.25s ease;
  display: none;
}
.cursor.hovering { width: 46px; height: 46px; }
.cursor.clicking { width: 32px; height: 32px; }

/* ---------- Skip link ---------- */
.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  z-index: 10000;
  background: var(--ink);
  color: var(--paper);
  padding: 0.75rem 1.25rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-decoration: none;
}
.skip-link:focus { left: 1rem; top: 1rem; }

/* ---------- Shared ---------- */
.tag {
  font-family: var(--font-mono);
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  color: var(--ink-muted);
  text-transform: none;
}
.tag--light { color: var(--accent); }

.eyebrow {
  font-family: var(--font-mono);
  font-weight: 300;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  color: var(--ink-muted);
  margin-bottom: 1.5rem;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.4rem, 6vw, 5rem);
  line-height: 0.95;
  letter-spacing: 0.01em;
  max-width: 22ch;
}
.section-title--light { color: var(--paper); }

.section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 6rem 3rem 3rem;
}
.section-head .tag { padding-bottom: 0.5rem; }
/* Tag-less section head — keep the title right-aligned like the others */
.section-head--end { justify-content: flex-end; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-weight: 400;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.95rem 1.6rem;
  border: 1px solid var(--ink);
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}
.btn--ink { background: var(--ink); color: var(--paper); }
.btn--ink:hover { background: transparent; color: var(--ink); }
.btn--ghost { background: transparent; color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--paper); }
.btn--accent {
  background: var(--accent);
  color: var(--ink);
  border-color: var(--accent);
}
.btn--accent:hover { background: var(--accent-dark); border-color: var(--accent-dark); }

/* ---------- Nav ---------- */
header { position: fixed; top: 0; left: 0; width: 100%; z-index: 1000; }
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 3rem;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.4s ease, border-color 0.4s ease, padding 0.4s ease;
}
.nav.scrolled {
  background: rgba(245, 243, 238, 0.88);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
  padding: 1rem 3rem;
}
.nav__logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  color: var(--ink);
  text-decoration: none;
}
.nav__logo .dot { color: var(--accent-dark); }
.nav__links {
  display: flex;
  gap: 2rem;
  list-style: none;
}
.nav__links a {
  position: relative;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
}
.nav__links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -4px;
  width: 100%; height: 1px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.nav__links a:hover::after { transform: scaleX(1); transform-origin: left; }

/* Mobile menu toggle (hamburger) — hidden on desktop */
.nav__logo { position: relative; z-index: 2; }
.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  background: transparent;
  border: none;
  cursor: pointer;
  position: relative;
  z-index: 2;
}
.nav__toggle-bar {
  display: block;
  width: 26px;
  height: 2px;
  margin: 0 auto;
  background: var(--ink);
  transition: transform 0.3s ease, background 0.3s ease;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 7rem 3rem 4rem;
  overflow: hidden;
}
.hero__ticker {
  position: absolute;
  top: 50%; left: 0;
  transform: translateY(-50%);
  white-space: nowrap;
  pointer-events: none;
  z-index: 0;
}
.hero__ticker span {
  display: inline-block;
  font-family: var(--font-display);
  font-size: clamp(6rem, 18vw, 16rem);
  line-height: 1;
  color: rgba(0, 0, 0, 0.03);
  animation: ticker 38s linear infinite;
}
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.hero__inner { position: relative; z-index: 1; }
.hero__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(4rem, 12vw, 11rem);
  line-height: 0.88;
  letter-spacing: 0.01em;
  margin-bottom: 2.5rem;
}
.hero__title .line { display: block; overflow: hidden; }
.hero__title .line__inner {
  display: block;
  transform: translateY(110%);
}
.hero__title .accent { color: var(--accent-dark); }
.is-loaded .hero__title .line__inner {
  transform: translateY(0);
  transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.is-loaded .hero__title .line:nth-child(1) .line__inner { transition-delay: 0.4s; }
.is-loaded .hero__title .line:nth-child(2) .line__inner { transition-delay: 0.55s; }
.is-loaded .hero__title .line:nth-child(3) .line__inner { transition-delay: 0.7s; }

.hero__foot {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
}
.hero__copy {
  font-weight: 300;
  font-size: 1.05rem;
  max-width: 36ch;
  color: var(--ink);
}
.hero__ctas { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero__scroll {
  position: absolute;
  right: 3rem; bottom: 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  z-index: 1;
}
.hero__scroll-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-muted);
  writing-mode: vertical-rl;
}
.hero__scroll-line {
  width: 1px; height: 60px;
  background: var(--ink-muted);
  transform-origin: top;
  animation: scrollpulse 1.8s ease-in-out infinite;
}
@keyframes scrollpulse {
  0%, 100% { transform: scaleY(0.3); opacity: 0.3; }
  50% { transform: scaleY(1); opacity: 1; }
}

/* ---------- Marquee ---------- */
.marquee {
  background: var(--ink);
  padding: 0.8rem 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee__track {
  display: inline-flex;
  animation: marquee 28s linear infinite;
}
.marquee__track span {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  padding-right: 1rem;
}
.marquee__track em { color: var(--accent); font-style: normal; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- Stats ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stat {
  padding: 3.5rem 3rem;
  border-right: 1px solid var(--line);
}
.stat:last-child { border-right: none; }
.stat__num {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 5rem);
  line-height: 1;
  display: flex;
  align-items: flex-start;
}
.stat__num sup {
  font-size: 0.35em;
  color: var(--accent-dark);
  margin-top: 0.4em;
  margin-left: 0.1em;
}
.stat__bar {
  width: 0;
  height: 2px;
  background: var(--accent-dark);
  margin: 1.25rem 0;
  transition: width 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.stat.visible .stat__bar { width: 100%; }
.stat__label {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  color: var(--ink-muted);
}

/* ---------- Services ---------- */
.services { background: var(--paper); }
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
}
.service-card {
  position: relative;
  background: var(--paper);
  padding: 2.5rem;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  transition: background 0.4s ease, color 0.4s ease;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.service-card:hover { background: var(--ink); color: var(--paper); }
.service-card:hover::before { transform: scaleX(1); }
.service-card__num {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--ink-muted);
  margin-bottom: 2rem;
}
.service-card:hover .service-card__num { color: var(--accent); }
.service-card__icon { color: var(--ink); margin-bottom: 1.25rem; transition: color 0.4s ease; }
.service-card:hover .service-card__icon { color: var(--accent); }
.service-card h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.8rem;
  letter-spacing: 0.02em;
  margin-bottom: 0.6rem;
}
.service-card p {
  font-weight: 300;
  font-size: 0.95rem;
  color: var(--ink-muted);
  flex: 1;
  transition: color 0.4s ease;
}
.service-card:hover p { color: var(--ink-faint); }
.service-card__arrow {
  align-self: flex-end;
  font-size: 1.4rem;
  margin-top: 1rem;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), color 0.4s ease;
}
.service-card:hover .service-card__arrow {
  transform: translate(6px, -6px);
  color: var(--accent);
}

/* ---------- Process ---------- */
.process { background: var(--ink); color: var(--paper); }
.process__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line-light);
}
.process-step {
  position: relative;
  padding: 3rem 2rem 4rem;
  border-right: 1px solid var(--line-light);
  overflow: hidden;
}
.process-step:last-child { border-right: none; }
.process-step__bignum {
  position: absolute;
  top: 1rem; right: 1.25rem;
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: 1;
  color: var(--paper);
  opacity: 0.06;
}
.process-step__label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--accent);
  margin-bottom: 1rem;
}
.process-step h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 2rem;
  letter-spacing: 0.02em;
  margin-bottom: 0.75rem;
}
.process-step p {
  font-weight: 300;
  font-size: 0.95rem;
  color: var(--ink-faint);
  max-width: 28ch;
}

/* ---------- Work ---------- */
.work { background: var(--ink); color: var(--paper); }
.work__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding: 0 3rem 6rem;
}
.work-card {
  display: block;
  text-decoration: none;
  color: var(--paper);
  border: 1px solid var(--line-light);
  padding: 1rem;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease;
}
.work-card:hover { transform: translateY(-4px); border-color: var(--accent); }

.browser {
  border: 1px solid var(--line-light);
  overflow: hidden;
  margin-bottom: 1.25rem;
}
.browser__bar {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 0.8rem;
  background: rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid var(--line-light);
}
.dot-red, .dot-yellow, .dot-green {
  width: 10px; height: 10px; border-radius: 50%;
}
.dot-red { background: #ff5f57; }
.dot-yellow { background: #ffbd2e; }
.dot-green { background: #28c840; }
.browser__url {
  margin-left: 0.6rem;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.45);
}
.browser__body {
  height: 190px;
  padding: 1rem;
  overflow: hidden;
}
/* Real website screenshot inside the browser frame */
.browser__shot {
  display: block;
  width: 100%;
  height: 190px;
  object-fit: cover;
  object-position: top center;
  background: var(--paper-warm);
}

/* CSS-only previews */
.preview__nav { display: flex; gap: 0.4rem; margin-bottom: 1.25rem; }
.preview__nav span { width: 26px; height: 5px; border-radius: 2px; opacity: 0.5; }
.preview__hero {
  font-family: var(--font-display);
  font-size: 1.9rem;
  line-height: 0.95;
  letter-spacing: 0.02em;
  margin-bottom: 1.25rem;
}
.preview__row { display: flex; gap: 0.5rem; }
.preview__row i { flex: 1; height: 40px; border-radius: 3px; display: block; }

.preview--dnd { background: #1B3A6B; color: var(--paper); }
.preview--dnd .preview__nav span { background: #0D7377; }
.preview--dnd .preview__row i { background: #0D7377; }

.preview--miola { background: #f5f0e8; color: #2c2c2a; }
.preview--miola .preview__nav span { background: #2c2c2a; }
.preview--miola .preview__row i { background: #e8dfd0; }

.preview--pet { background: #1a3a2a; color: var(--paper); }
.preview--pet .preview__nav span { background: #2d6a4f; }
.preview--pet .preview__row i { background: #2d6a4f; }

.work-card__meta {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}
.work-card__meta h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.7rem;
  letter-spacing: 0.02em;
}
.work-card__desc {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--ink-faint);
}
.work-card__arrow { font-size: 1.3rem; transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), color 0.3s ease; }
.work-card:hover .work-card__arrow { transform: translate(5px, -5px); color: var(--accent); }
.tags { display: flex; flex-wrap: wrap; gap: 0.5rem; list-style: none; }
.tags li {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink-faint);
  border: 1px solid var(--line-light);
  padding: 0.25rem 0.6rem;
}

/* ---------- Pricing ---------- */
.pricing { background: var(--paper-warm); }
/* Dedicated pricing page: grid sits straight under the subhero, so it needs its own top gap */
.pricing > .pricing__grid:first-child { padding-top: 3.5rem; }
.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding: 0 3rem 6rem;
}
.price-card {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease, box-shadow 0.4s ease;
}
.price-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 0, 0, 0.35);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}
.price-card--featured {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.price-card--featured:hover { box-shadow: 0 24px 50px rgba(0, 0, 0, 0.25); }
.price-card__badge {
  position: absolute;
  top: 1.25rem; right: 1.25rem;
  background: var(--accent);
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.6rem;
}
.price-card__tier {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  color: var(--ink-muted);
  margin-bottom: 1rem;
}
.price-card--featured .price-card__tier { color: var(--accent); }
.price-card__price {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  line-height: 1;
}
.price-card__sub {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--ink-muted);
  margin-top: 0.5rem;
}
.price-card--featured .price-card__sub { color: var(--ink-faint); }
.price-card__divider {
  border: none;
  border-top: 1px solid var(--line);
  margin: 1.75rem 0;
}
.price-card--featured .price-card__divider { border-top-color: var(--line-light); }
.price-card__features { list-style: none; margin-bottom: 2rem; flex: 1; }
.price-card__features li {
  position: relative;
  padding-left: 1.5rem;
  font-weight: 300;
  font-size: 0.95rem;
  margin-bottom: 0.7rem;
}
.price-card__features li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent-dark);
}
.price-card--featured .price-card__features li::before { color: var(--accent); }
.price-card__cta { width: 100%; }

/* ---------- Contact ---------- */
.contact {
  position: relative;
  text-align: center;
  padding: 10rem 3rem;
  overflow: hidden;
}
.contact__ghost {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: clamp(6rem, 20vw, 18rem);
  line-height: 1;
  color: rgba(0, 0, 0, 0.03);
  pointer-events: none;
  white-space: nowrap;
}
.contact__inner { position: relative; z-index: 1; }
.contact__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(3rem, 7vw, 7rem);
  line-height: 0.95;
  letter-spacing: 0.01em;
}
.contact__sub {
  font-weight: 300;
  font-size: 1.05rem;
  max-width: 42ch;
  margin: 1.5rem auto 2.5rem;
  color: var(--ink-muted);
}
.contact__email {
  display: inline-block;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 3.5rem);
  letter-spacing: 0.02em;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 3px solid var(--accent-dark);
  transition: color 0.3s ease, border-color 0.3s ease;
}
.contact__email:hover { color: var(--accent-dark); }

/* ---------- Footer ---------- */
.footer {
  background: var(--ink);
  color: var(--paper);
  padding: 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.footer__logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.05em;
}
.footer__logo .dot { color: var(--accent); }
.footer__links { display: flex; gap: 1.5rem; list-style: none; flex-wrap: wrap; }
.footer__links a {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer__links a:hover { color: var(--accent); }
.footer__copy {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
}

/* ---------- Service card as link ---------- */
a.service-card { text-decoration: none; color: inherit; }

/* ---------- FAQ ---------- */
.faq { background: var(--paper); padding-bottom: 6rem; }
.faq__list {
  border-top: 1px solid var(--line);
  margin: 0 3rem;
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.75rem 0;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  letter-spacing: 0.01em;
  line-height: 1.1;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-family: var(--font-body);
  font-size: 1.75rem;
  font-weight: 300;
  color: var(--accent-dark);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item__body {
  padding: 0 0 1.75rem;
  max-width: 70ch;
}
.faq-item__body p {
  font-weight: 300;
  font-size: 1rem;
  color: var(--ink-muted);
}

/* ---------- Service / interior pages ---------- */
.subhero {
  padding: 11rem 3rem 4rem;
  border-bottom: 1px solid var(--line);
}
.breadcrumb {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  color: var(--ink-muted);
  margin-bottom: 1.75rem;
}
.breadcrumb a { color: var(--ink-muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--ink); }
.breadcrumb span[aria-current] { color: var(--ink); }
.subhero__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(3rem, 9vw, 7rem);
  line-height: 0.9;
  letter-spacing: 0.01em;
  max-width: 18ch;
  margin-bottom: 1.75rem;
}
.subhero__title .accent { color: var(--accent-dark); }
.subhero__lead {
  font-weight: 300;
  font-size: 1.15rem;
  max-width: 52ch;
  color: var(--ink-muted);
  margin-bottom: 2.5rem;
}
.subhero__ctas { display: flex; gap: 1rem; flex-wrap: wrap; }

.svc-section { padding: 5rem 3rem; }
.svc-section--ink { background: var(--ink); color: var(--paper); }
.svc-section__head {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 0.95;
  letter-spacing: 0.01em;
  max-width: 24ch;
  margin-bottom: 2.5rem;
}
.svc-prose { max-width: 65ch; }
.svc-prose p {
  font-weight: 300;
  font-size: 1.05rem;
  color: var(--ink-muted);
  margin-bottom: 1.25rem;
}
.svc-section--ink .svc-prose p { color: var(--ink-faint); }

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-top: 1rem;
}
.feature-grid__item {
  background: var(--paper);
  padding: 2rem;
}
.feature-grid__item h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.5rem;
  letter-spacing: 0.02em;
  margin-bottom: 0.6rem;
}
.feature-grid__item p {
  font-weight: 300;
  font-size: 0.95rem;
  color: var(--ink-muted);
}
.svc-checklist { list-style: none; max-width: 60ch; }
.svc-checklist li {
  position: relative;
  padding-left: 1.75rem;
  font-weight: 300;
  font-size: 1.05rem;
  margin-bottom: 0.9rem;
}
.svc-checklist li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent-dark);
}
.svc-section--ink .svc-checklist li::before { color: var(--accent); }

/* CTA band */
.cta-band {
  background: var(--accent);
  color: var(--ink);
  text-align: center;
  padding: 6rem 3rem;
}
.cta-band h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 0.95;
  letter-spacing: 0.01em;
  margin-bottom: 1.5rem;
}
.cta-band p {
  font-weight: 300;
  font-size: 1.1rem;
  max-width: 46ch;
  margin: 0 auto 2.5rem;
}
.cta-band .btn--ink:hover { background: transparent; color: var(--ink); }

/* 404 */
.notfound {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 1.5rem;
}
.notfound__code {
  font-family: var(--font-display);
  font-size: clamp(6rem, 22vw, 16rem);
  line-height: 0.9;
  color: var(--accent-dark);
}
.notfound__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2rem, 6vw, 4rem);
  letter-spacing: 0.01em;
  margin-bottom: 1rem;
}
.notfound__sub {
  font-weight: 300;
  font-size: 1.05rem;
  color: var(--ink-muted);
  max-width: 40ch;
  margin-bottom: 2.5rem;
}

@media (max-width: 900px) {
  .faq__list { margin: 0 1.5rem; }
  .subhero { padding: 8.5rem 1.5rem 3rem; }
  .svc-section { padding: 3.5rem 1.5rem; }
  .feature-grid { grid-template-columns: 1fr; }
  .cta-band { padding: 4rem 1.5rem; }
}

/* ---------- Legal / policy pages ---------- */
.legal { max-width: 72ch; }
.legal__updated {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--ink-muted);
  margin-bottom: 2.5rem;
}
.legal h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.7rem;
  letter-spacing: 0.02em;
  margin: 2.5rem 0 1rem;
}
.legal p {
  font-weight: 300;
  font-size: 1.02rem;
  color: var(--ink-muted);
  margin-bottom: 1.1rem;
}
.legal ul {
  list-style: none;
  margin: 0 0 1.4rem;
}
.legal li {
  position: relative;
  padding-left: 1.5rem;
  font-weight: 300;
  font-size: 1.02rem;
  color: var(--ink-muted);
  margin-bottom: 0.8rem;
}
.legal li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent-dark);
}
.legal strong { color: var(--ink); font-weight: 500; }
.legal code {
  font-family: var(--font-mono);
  font-size: 0.85em;
  background: var(--paper-warm);
  padding: 0.1em 0.4em;
}
.legal a {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-color: var(--accent-dark);
  text-underline-offset: 3px;
}
.legal a:hover { color: var(--accent-dark); }

/* ---------- Cookie banner ---------- */
.cookie-banner {
  position: fixed;
  left: 1rem; right: 1rem; bottom: 1rem;
  z-index: 9990;
  max-width: 760px;
  margin: 0 auto;
  background: var(--ink);
  color: var(--paper);
  border: 1px solid var(--line-light);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.cookie-banner__text {
  flex: 1;
  min-width: 240px;
  margin: 0;
  font-weight: 300;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--ink-faint);
}
.cookie-banner__text a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cookie-banner__actions {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}
.cookie-banner .btn { padding: 0.7rem 1.3rem; }
.cookie-banner__decline {
  background: transparent;
  color: var(--paper);
  border-color: var(--line-light);
}
.cookie-banner__decline:hover { background: var(--paper); color: var(--ink); }

@media (max-width: 600px) {
  .cookie-banner { flex-direction: column; align-items: stretch; }
  .cookie-banner__actions { justify-content: flex-end; }
}

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ---------- Focus styles ---------- */
a:focus-visible,
button:focus-visible,
.btn:focus-visible {
  outline: 2px solid var(--accent-dark);
  outline-offset: 3px;
}

/* ---------- Responsive ---------- */
@media (min-width: 901px) {
  body { cursor: none; }
  a, button, .btn { cursor: none; }
  .cursor { display: block; }
}

@media (max-width: 900px) {
  .nav__toggle { display: flex; }
  /* Full-screen overlay menu */
  .nav__links {
    position: fixed;
    inset: 0;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin: 0;
    background: var(--ink);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.4s ease, visibility 0.4s ease;
  }
  .nav--open .nav__links {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .nav__links a {
    font-family: var(--font-display);
    font-size: 2.25rem;
    letter-spacing: 0.03em;
    text-transform: none;
    color: var(--paper);
  }
  .nav__links a::after { background: var(--accent); }
  .nav--open .nav__logo { color: var(--paper); }
  .nav--open .nav__toggle-bar { background: var(--paper); }
  .nav--open .nav__toggle-bar:nth-child(1) { transform: translateY(3.5px) rotate(45deg); }
  .nav--open .nav__toggle-bar:nth-child(2) { transform: translateY(-3.5px) rotate(-45deg); }
  /* CTA tucked into the overlay */
  .nav__cta { display: none; }
  .nav--open .nav__cta {
    display: inline-flex;
    position: fixed;
    left: 50%;
    bottom: 3rem;
    transform: translateX(-50%);
    z-index: 2;
  }
  body.menu-open { overflow: hidden; }
  /* Lift the whole header (and its overlay) above the cookie banner/noise when open */
  body.menu-open header { z-index: 10000; }
  /* When scrolled, .nav gets backdrop-filter — which makes it the containing block for the
     fixed overlay and collapses it to the nav's height. Drop it while the menu is open so the
     overlay fills the viewport. */
  body.menu-open .nav,
  body.menu-open .nav.scrolled {
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }
  .nav, .nav.scrolled { padding: 1rem 1.5rem; }
  .hero { padding: 7rem 1.5rem 4rem; min-height: auto; }
  .hero__scroll { display: none; }
  .section-head { padding: 4rem 1.5rem 2rem; }
  .stats { grid-template-columns: 1fr; }
  .stat { border-right: none; border-bottom: 1px solid var(--line); }
  .stat:last-child { border-bottom: none; }
  .services__grid { grid-template-columns: 1fr; }
  .process__grid { grid-template-columns: 1fr; }
  .process-step { border-right: none; border-bottom: 1px solid var(--line-light); }
  .process-step:last-child { border-bottom: none; }
  .work__grid { grid-template-columns: 1fr; padding: 0 1.5rem 4rem; }
  .pricing__grid { grid-template-columns: 1fr; padding: 0 1.5rem 4rem; }
  .contact { padding: 6rem 1.5rem; }
  .footer { flex-direction: column; text-align: center; padding: 2.5rem 1.5rem; }
}

@media (min-width: 901px) and (max-width: 1100px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .hero__title .line__inner { transform: translateY(0); }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- Recurring price suffix + section intros (care/hosting) ---------- */
.price-card__per{
  font-family:var(--font-mono);
  font-size:1rem;
  font-weight:400;
  color:var(--ink-muted);
  letter-spacing:.02em;
}
.price-card--featured .price-card__per{ color:var(--ink-faint); }

.section-intro{
  font-family:var(--font-body);
  font-weight:300;
  font-size:1rem;
  color:var(--ink-muted);
  max-width:60ch;
  padding:0 3rem 2.5rem;
  margin-top:-1.5rem;
}

.pricing-note{
  font-family:var(--font-mono);
  font-size:.78rem;
  line-height:1.7;
  color:var(--ink-muted);
  max-width:78ch;
  padding:0 3rem 6rem;
  margin-top:-3rem;
}
.pricing-note a{ color:var(--ink); }

@media (max-width:900px){
  .section-intro,.pricing-note{ padding-left:1.5rem; padding-right:1.5rem; }
}

/* ---------- Contact form ---------- */
.contact-form {
  max-width: 620px;
  margin: 3.5rem auto 0;
  text-align: left;
}
.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.contact-form__field { display: block; margin-bottom: 1.25rem; }
.contact-form__label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 0.5rem;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1rem;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 0;
  padding: 0.85rem 1rem;
  transition: border-color 0.3s ease;
  -webkit-appearance: none;
  appearance: none;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: var(--ink-faint); }
.contact-form input:focus,
.contact-form textarea:focus { outline: none; border-color: var(--ink); }
.contact-form textarea { resize: vertical; min-height: 130px; }
/* Honeypot — kept out of view and off the accessibility tree */
.contact-form__hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.contact-form__submit { margin-top: 0.5rem; }
.contact-form__status {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  line-height: 1.5;
  margin-top: 1rem;
  min-height: 1.2em;
}
.contact-form__status.is-pending { color: var(--ink-muted); }
.contact-form__status.is-ok { color: var(--accent-dark); }
.contact-form__status.is-error { color: #c0392b; }

@media (max-width: 600px) {
  .contact-form__row { grid-template-columns: 1fr; gap: 0; }
}

/* ---------- Mobile polish ---------- */
@media (max-width: 600px) {
  /* Full-width, thumb-friendly primary actions */
  .hero__ctas, .subhero__ctas { width: 100%; gap: 0.75rem; }
  .hero__ctas .btn, .subhero__ctas .btn { flex: 1 1 auto; }
  /* Roomier footer tap targets */
  .footer__links { gap: 0.5rem 1.4rem; }
  .footer__links a { padding: 0.35rem 0; }
}
