/* ============================================================
   SiteOne — Boutique edition
   Editorial studio aesthetic: bone paper, near-black ink,
   one molten accent. Restraint over noise.
   ============================================================ */

/* ============ Tokens ============ */
:root {
  --bg: #f2efe8;
  --bg-2: #eae5db;
  --surface: #f8f6f1;
  --ink: #17150f;
  --ink-soft: #625c52;
  --ink-mute: #a49c8f;

  /* single sharp accent — used sparingly */
  --accent: #d8451f;
  --accent-deep: #b23511;
  --accent-soft: rgba(216, 69, 31, 0.10);

  /* legacy aliases kept so existing markup keeps rendering,
     all collapsed onto the monochrome + accent system */
  --coral: var(--accent);
  --coral-soft: var(--accent-soft);
  --yellow: var(--ink);
  --yellow-soft: var(--bg-2);
  --sage: var(--ink);
  --sage-soft: var(--bg-2);
  --sky: var(--ink);
  --sky-soft: var(--bg-2);
  --pink: var(--accent);
  --lavender: var(--ink-soft);

  --rule: rgba(23, 21, 15, 0.16);
  --rule-soft: rgba(23, 21, 15, 0.08);
  --shadow-1: 0 18px 40px -34px rgba(23, 21, 15, 0.55);
  --shadow-2: 0 40px 80px -50px rgba(23, 21, 15, 0.6);

  --radius: 6px;
  --radius-sm: 4px;
  --maxw: 1280px;

  --display: "Archivo", system-ui, sans-serif;
  --body: "Instrument Sans", system-ui, sans-serif;
  --mono: "Space Mono", ui-monospace, monospace;
}

/* ============ Reset ============ */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { -webkit-font-smoothing: antialiased; scroll-behavior: smooth; text-rendering: optimizeLegibility; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }

body {
  font-family: var(--body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.55;
  font-size: 17px;
  overflow-x: hidden;
  /* faint paper grain */
  background-image: radial-gradient(rgba(23,21,15,0.018) 1px, transparent 1px);
  background-size: 4px 4px;
}

::selection { background: var(--ink); color: var(--bg); }

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
}

/* ============ Type ============ */
h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 400;
  margin: 0;
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--ink);
  font-optical-sizing: auto;
}
.body-sans { font-family: var(--body); }

/* eyebrow / micro-label — mono, tracked, technical marker */
.label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
  background: transparent;
  padding: 0 0 14px 0;
  border-radius: 0;
}
.label .dot {
  width: 6px; height: 6px;
  border-radius: 0;
  background: var(--accent);
  transform: rotate(45deg);
}
.label--yellow,
.label--sage,
.label--sky { color: var(--ink-soft); background: transparent; }
.label--yellow .dot,
.label--sage .dot,
.label--sky .dot { background: var(--accent); }

/* ============ NAV ============ */
.nav {
  padding: 26px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(242, 239, 232, 0.82);
  backdrop-filter: blur(16px) saturate(1.1);
  border-bottom: 1px solid transparent;
  transition: border-bottom-color 0.3s ease, padding 0.3s ease;
}
.nav.scrolled { border-bottom-color: var(--rule); padding: 18px 0; }
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px;
}
.brand {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--display);
  font-size: 23px;
  font-weight: 500;
  letter-spacing: -0.02em;
}
/* monogram: sharp ink square, no smile */
.brand-mark {
  width: 34px; height: 34px;
  border-radius: 3px;
  background: var(--ink);
  position: relative;
  box-shadow: none;
  flex-shrink: 0;
  overflow: hidden;
  border-bottom: 3px solid var(--accent);
}
.brand-mark::before {
  content: "NV";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--bg);
  background: none;
  border-radius: 0;
}
.brand-mark::after { content: none; }
/* hide the friendly smile */
.brand-mark > .smile { display: none; }

.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-soft);
  transition: color 0.2s ease;
  position: relative;
  padding: 4px 0;
}
.nav-links a:hover,
.nav-links a.active { color: var(--ink); }
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: var(--accent);
  transition: width 0.25s ease;
  transform: none;
  border-radius: 0;
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-cta {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 11px 20px;
  background: var(--ink);
  color: var(--bg);
  border-radius: 2px;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 0.25s ease, color 0.25s ease;
  box-shadow: none;
}
.nav-cta:hover { background: var(--accent); color: #fff; transform: none; }
.nav-cta svg { width: 14px; height: 14px; transition: transform 0.25s ease; }
.nav-cta:hover svg { transform: translateX(3px); }

/* ============ BUTTONS ============ */
.btn {
  --bg: var(--ink); --fg: var(--surface); --border: var(--ink); --shadow: transparent;
  display: inline-flex; align-items: center; gap: 12px;
  padding: 15px 26px;
  background: var(--bg);
  color: var(--fg);
  border: 1px solid var(--border);
  border-radius: 2px;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: none;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  cursor: pointer;
}
.btn:hover { transform: none; box-shadow: none; }
.btn svg { width: 15px; height: 15px; transition: transform 0.25s ease; }
.btn:hover svg { transform: translateX(4px); }
.btn.primary { --bg: var(--accent); --fg: #fff; --border: var(--accent); }
.btn.primary:hover { --bg: var(--accent-deep); --border: var(--accent-deep); }
.btn.ghost { --bg: transparent; --fg: var(--ink); --border: var(--rule); }
.btn.ghost:hover { --border: var(--ink); background: transparent; }
.btn.yellow { --bg: var(--surface); --fg: var(--ink); --border: var(--surface); }
.btn.yellow:hover { --bg: #fff; --border: #fff; }

/* ============ HERO ============ */
.hero {
  padding: 90px 0 110px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -20%; right: -10%;
  width: 640px; height: 640px;
  border-radius: 999px;
  background: radial-gradient(circle, var(--accent-soft) 0%, transparent 62%);
  z-index: 0;
  pointer-events: none;
}
.hero::after { content: none; }
.hero-inner {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-inner.single { grid-template-columns: 1fr; text-align: center; }
.hero-inner.single .hero-lede,
.hero-inner.single .hero-cta { margin-left: auto; margin-right: auto; }
.hero-inner.single .hero-cta { justify-content: center; }

h1.hero-title {
  font-size: clamp(52px, 7.4vw, 112px);
  line-height: 0.94;
  letter-spacing: -0.035em;
  font-weight: 300;
  margin: 22px 0;
}
h1.hero-title .underline {
  position: relative;
  white-space: nowrap;
  color: var(--ink);
  font-style: italic;
  font-weight: 400;
}
/* hide the hand-drawn squiggle svgs */
h1.hero-title .underline svg { display: none; }
h1.hero-title .pop { color: var(--accent); font-style: italic; }

.hero-lede {
  font-size: 20px;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 520px;
  margin: 0 0 34px;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-trust {
  margin-top: 44px;
  padding-top: 26px;
  border-top: 1px solid var(--rule);
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--ink-soft);
  font-size: 13px;
  font-family: var(--mono);
  letter-spacing: 0.02em;
}
.avatar-stack { display: flex; }
.avatar-stack .a {
  width: 30px; height: 30px;
  border-radius: 999px;
  margin-left: -8px;
  border: 2px solid var(--bg);
  flex-shrink: 0;
  filter: grayscale(1) contrast(1.05);
}
.avatar-stack .a:first-child { margin-left: 0; }
.hero-trust strong { color: var(--ink); font-weight: 600; }
.hero-trust .stars {
  color: var(--accent);
  font-size: 14px;
  letter-spacing: 1px;
  margin-right: 4px;
}

/* hero visual */
.hero-art {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  max-width: 540px;
  margin: 0 auto;
}
.hero-art > svg { width: 100%; height: 100%; }

.float-tag {
  position: absolute;
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: 2px;
  padding: 9px 13px;
  font-family: var(--mono);
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-1);
  z-index: 5;
  animation: none !important;
}
.float-tag svg { width: 15px; height: 15px; flex-shrink: 0; color: var(--accent); }
.float-tag-1 { top: 12%; left: -6%; background: var(--surface); color: var(--ink); }
.float-tag-2 { top: 6%; right: -4%; background: var(--ink); color: var(--bg); }
.float-tag-2 svg { color: var(--bg); }
.float-tag-3 { bottom: 14%; right: -6%; background: var(--surface); }
.float-tag-4 { bottom: 6%; left: -4%; background: var(--accent); color: #fff; border-color: var(--accent); }

/* neutralise old playful motion */
@keyframes bob { 0%,100% { transform: none; } }

/* ============ TRUST BAR ============ */
.trust-bar {
  position: relative;
  z-index: 2;
  background: var(--ink);
  color: var(--bg);
  border-radius: 4px;
  padding: 34px 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin: -60px auto 0;
  box-shadow: var(--shadow-2);
}
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 4px 28px;
  border-left: 1px solid rgba(242, 239, 232, 0.14);
}
.trust-item:first-child { border-left: none; padding-left: 4px; }
.trust-item .ic {
  width: 34px; height: 34px;
  border-radius: 0;
  background: transparent !important;
  border-bottom: 1px solid var(--accent);
  display: grid;
  place-items: start;
  flex-shrink: 0;
}
.trust-item .ic svg { width: 22px; height: 22px; stroke: var(--bg) !important; }
.trust-item h4 {
  color: #fff;
  font-family: var(--display);
  font-size: 19px;
  font-weight: 400;
  margin: 0 0 2px;
  line-height: 1.1;
}
.trust-item p {
  margin: 0;
  color: #9a958a;
  font-size: 12px;
  font-family: var(--mono);
  letter-spacing: 0.02em;
  line-height: 1.4;
}

/* ============ SECTIONS ============ */
section.s { padding: 140px 0; position: relative; }
.s-head { text-align: left; max-width: 900px; margin-bottom: 80px; }
.s-head .label { justify-content: flex-start; }
.s-head h2 {
  font-size: clamp(38px, 5.4vw, 76px);
  line-height: 1.0;
  letter-spacing: -0.03em;
  font-weight: 300;
  max-width: 20ch;
  margin: 4px 0 22px;
}
.s-head h2 .pop { color: var(--accent); font-style: italic; }
.s-head h2 .underline { position: relative; display: inline-block; font-style: italic; }
.s-head h2 .underline svg { display: none; }
.s-head p {
  font-size: 19px;
  color: var(--ink-soft);
  max-width: 580px;
  margin: 0;
  line-height: 1.55;
}

.alt-bg { background: var(--bg-2); }

/* ============ SERVICES ============ */
.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule);
  counter-reset: svc;
}
.svc {
  background: transparent;
  border: none;
  border-right: 1px solid var(--rule);
  border-radius: 0;
  padding: 40px 34px;
  position: relative;
  box-shadow: none;
  transition: background 0.35s ease;
  overflow: hidden;
  counter-increment: svc;
}
.svc:last-child { border-right: none; }
.svc:hover { transform: none; box-shadow: none; background: var(--surface); }
.svc.tilt-l, .svc.tilt-r { transform: none; }
.svc.tilt-l:hover, .svc.tilt-r:hover { transform: none; }
.svc::before {
  content: "0" counter(svc);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--accent);
  display: block;
  margin-bottom: 26px;
}

.svc-illus {
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--bg-2);
  border-radius: var(--radius-sm);
  border: 1px solid var(--rule);
  margin-bottom: 26px;
  display: grid;
  place-items: center;
  overflow: hidden;
  position: relative;
  filter: grayscale(1) contrast(1.03);
}
.svc.svc-build .svc-illus,
.svc.svc-host  .svc-illus,
.svc.svc-fix   .svc-illus { background: var(--bg-2); }
.svc-illus svg { width: 78%; height: 78%; }

.svc h3 {
  font-size: 30px;
  font-weight: 400;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.svc h3 .pop { color: var(--accent); font-style: italic; }
.svc p {
  color: var(--ink-soft);
  font-size: 16px;
  margin: 0 0 22px;
  line-height: 1.55;
}
.svc ul { list-style: none; padding: 0; margin: 0 0 26px; }
.svc ul li {
  padding: 10px 0;
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 15px;
  color: var(--ink);
  border-top: 1px solid var(--rule-soft);
}
.svc ul li:first-child { border-top: none; }
.svc ul li .ck {
  flex-shrink: 0;
  width: 18px; height: 18px;
  border-radius: 0;
  background: transparent;
  color: var(--accent);
  display: grid; place-items: center;
  margin-top: 2px;
}
.svc ul li .ck svg { width: 14px; height: 14px; }
.svc .price-row {
  display: flex; align-items: baseline; gap: 8px;
  font-family: var(--mono);
  color: var(--ink);
  margin-bottom: 22px;
}
.svc .price-row .from { font-size: 11px; color: var(--ink-mute); font-family: var(--mono); text-transform: uppercase; letter-spacing: 0.1em; }
.svc .price-row .n {
  font-size: 30px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
  font-family: var(--display);
}
.svc .price-row .per { font-size: 12px; color: var(--ink-mute); font-family: var(--mono); }
.svc .arrow-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  font-family: var(--mono);
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-top: 1px solid var(--rule);
  padding-top: 22px;
  width: 100%;
  transition: gap 0.25s ease, color 0.2s ease;
}
.svc .arrow-btn:hover { gap: 14px; color: var(--accent); }
.svc .arrow-btn svg { width: 15px; height: 15px; flex-shrink: 0; transition: transform 0.25s ease; }
.svc .arrow-btn:hover svg { transform: translateX(3px); }

/* Deep service section (services.html) */
.deep-svc {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
  margin-bottom: 120px;
  padding-bottom: 120px;
  border-bottom: 1px solid var(--rule);
}
.deep-svc:last-child { margin-bottom: 0; padding-bottom: 0; border-bottom: none; }
.deep-svc.flip > div:first-child { order: 2; }
.deep-svc .illus-box {
  aspect-ratio: 1;
  border-radius: var(--radius);
  border: 1px solid var(--rule);
  box-shadow: none;
  display: grid;
  place-items: center;
  padding: 48px;
  background: var(--bg-2);
  filter: grayscale(1) contrast(1.03);
}
.deep-svc.dvs-host .illus-box,
.deep-svc.dvs-fix .illus-box { background: var(--bg-2); }
.deep-svc .illus-box svg { width: 78%; height: 78%; }
.deep-svc h2 {
  font-size: clamp(38px, 5vw, 62px);
  line-height: 1.0;
  margin-bottom: 22px;
  font-weight: 300;
}
.deep-svc h2 .pop { color: var(--accent); font-style: italic; }
.deep-svc p {
  font-size: 18px;
  color: var(--ink-soft);
  line-height: 1.6;
  margin: 0 0 20px;
  max-width: 520px;
}
.deep-svc ul { list-style: none; padding: 0; margin: 26px 0 34px; max-width: 520px; }
.deep-svc ul li {
  padding: 14px 0;
  border-top: 1px solid var(--rule);
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 16px;
}
.deep-svc ul li:first-child { border-top: none; }
.deep-svc ul li .ck {
  flex-shrink: 0;
  width: 20px; height: 20px;
  border-radius: 0;
  background: transparent;
  color: var(--accent);
  display: grid; place-items: center;
  margin-top: 2px;
}
.deep-svc ul li .ck svg { width: 15px; height: 15px; }
.deep-svc ul li strong { font-weight: 600; color: var(--ink); }

/* ============ PORTFOLIO ============ */
.portfolio {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.work {
  background: transparent;
  border: none;
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
  transition: transform 0.4s cubic-bezier(.2,.7,.2,1);
}
.work:hover { transform: translateY(-6px); box-shadow: none; }
.work-window {
  border: 1px solid var(--rule);
  border-radius: var(--radius-sm);
  background: var(--bg-2);
  aspect-ratio: 4/3;
  position: relative;
  overflow: hidden;
  filter: grayscale(1) contrast(1.02);
  transition: filter 0.4s ease;
}
.work:hover .work-window { filter: grayscale(0) contrast(1); }
.work-bar {
  display: flex; align-items: center; gap: 6px;
  padding: 11px 14px;
  border-bottom: 1px solid var(--rule);
  background: var(--surface);
}
.work-bar span {
  width: 8px; height: 8px;
  border-radius: 999px;
  background: var(--ink);
  opacity: 0.25;
}
.work-bar span:nth-child(1),
.work-bar span:nth-child(2),
.work-bar span:nth-child(3) { background: var(--ink); opacity: 0.25; }
.work-bar .u {
  margin-left: 10px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.02em;
  color: var(--ink-soft);
  background: var(--bg);
  padding: 4px 10px;
  border-radius: 2px;
  flex-grow: 1;
  text-align: left;
}
.work-content {
  position: absolute;
  inset: 38px 0 0 0;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.work-content svg { width: 100%; height: auto; }
.work-content.shot { padding: 0; inset: 38px 0 0 0; display: block; }
.work-content.shot img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.work-meta {
  padding: 18px 2px 4px;
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 12px;
  border-top: 1px solid var(--rule);
  margin-top: 16px;
}
.work-meta .ttl {
  font-family: var(--display);
  font-weight: 400;
  font-size: 20px;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.work-meta .cat {
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-mute);
  background: transparent;
  padding: 0;
  border-radius: 0;
}

/* Category filter chips */
.chips {
  display: flex; flex-wrap: wrap; gap: 8px;
  justify-content: flex-start;
  margin: 0 0 56px;
}
.chip {
  padding: 8px 16px;
  background: transparent;
  border: 1px solid var(--rule);
  border-radius: 2px;
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 400;
  color: var(--ink-soft);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.chip:hover, .chip.active {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}

/* ============ FIX GRID ============ */
.fixgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
}
.fix {
  background: transparent;
  border: none;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  border-radius: 0;
  padding: 34px 32px;
  transition: background 0.3s ease;
  box-shadow: none;
}
.fix:hover { transform: none; box-shadow: none; background: var(--surface); }
.fix-ic {
  width: 44px; height: 44px;
  border-radius: 0;
  border: none;
  border-bottom: 1px solid var(--accent);
  display: grid;
  place-items: start;
  margin-bottom: 22px;
  background: transparent !important;
}
.fix-ic svg { width: 28px; height: 28px; stroke: var(--ink); }

.fix h3 {
  font-size: 22px;
  font-weight: 400;
  margin: 0 0 10px;
  line-height: 1.15;
  letter-spacing: -0.01em;
}
.fix p { color: var(--ink-soft); font-size: 15px; margin: 0; line-height: 1.55; }
.fix .detail {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--rule-soft);
  font-size: 14px;
  color: var(--ink);
}
.fix .detail strong {
  display: block;
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 5px;
  font-weight: 400;
}

/* ============ STEPS ============ */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
  border-top: 1px solid var(--rule);
}
.step-card {
  background: transparent;
  border: none;
  border-right: 1px solid var(--rule);
  border-radius: 0;
  padding: 44px 32px 32px;
  box-shadow: none;
  position: relative;
}
.step-card:last-child { border-right: none; }
.step-num {
  position: static;
  width: auto; height: auto;
  background: transparent;
  color: var(--accent);
  border-radius: 0;
  border: none;
  display: block;
  font-family: var(--mono);
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 0.1em;
  box-shadow: none;
  transform: none !important;
  margin-bottom: 20px;
}
.step-card:nth-child(2) .step-num,
.step-card:nth-child(3) .step-num { background: transparent; color: var(--accent); transform: none; }

.step-illus {
  width: 100%;
  aspect-ratio: 16/10;
  border: 1px solid var(--rule);
  border-radius: var(--radius-sm);
  margin: 8px 0 24px;
  background: var(--bg-2);
  display: grid;
  place-items: center;
  overflow: hidden;
  filter: grayscale(1) contrast(1.03);
}
.step-card:nth-child(n) .step-illus { background: var(--bg-2); }
.step-illus svg { width: 72%; height: 72%; }

.step-card h3 {
  font-size: 25px;
  font-weight: 400;
  margin: 0 0 10px;
  letter-spacing: -0.01em;
}
.step-card p { color: var(--ink-soft); font-size: 15px; margin: 0; line-height: 1.55; }

/* ============ TESTIMONIALS ============ */
.testis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule);
}
.testi {
  background: transparent;
  border: none;
  border-right: 1px solid var(--rule);
  border-radius: 0;
  padding: 40px 34px;
  box-shadow: none;
  display: flex;
  flex-direction: column;
}
.testi:last-child { border-right: none; }
.testi .stars-row {
  color: var(--accent);
  font-size: 13px;
  letter-spacing: 3px;
  margin-bottom: 24px;
}
.testi blockquote {
  margin: 0 0 28px;
  font-family: var(--display);
  font-weight: 300;
  font-size: 23px;
  line-height: 1.36;
  color: var(--ink);
  letter-spacing: -0.015em;
}
.testi cite {
  display: flex;
  align-items: center;
  gap: 12px;
  font-style: normal;
  margin-top: auto;
  border-top: 1px solid var(--rule);
  padding-top: 20px;
}
.testi cite .avp {
  width: 44px; height: 44px;
  border-radius: 999px;
  flex-shrink: 0;
  border: 1px solid var(--rule);
  overflow: hidden;
  filter: grayscale(1) contrast(1.05);
}
.testi cite strong { display: block; font-weight: 600; color: var(--ink); font-size: 15px; }
.testi cite span {
  display: block;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--ink-mute);
}

/* ============ PRICING ============ */
.pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  overflow: hidden;
}
.plan {
  background: transparent;
  border: none;
  border-right: 1px solid var(--rule);
  border-radius: 0;
  padding: 44px 34px 36px;
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: none;
}
.plan:last-child { border-right: none; }
.plan.featured { background: var(--ink); color: var(--bg); transform: none; box-shadow: none; }
.plan-tag {
  position: absolute;
  top: 20px; right: 24px;
  background: var(--accent);
  color: #fff;
  padding: 5px 12px;
  border-radius: 2px;
  border: none;
  font-family: var(--mono);
  font-weight: 400;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  transform: none;
}
.plan h4 { font-size: 24px; font-weight: 400; margin: 0 0 8px; letter-spacing: -0.01em; }
.plan.featured h4 { color: #fff; }
.plan .what {
  font-size: 14px;
  color: var(--ink-soft);
  margin: 0 0 26px;
  font-family: var(--mono);
  letter-spacing: 0.01em;
  line-height: 1.5;
}
.plan.featured .what { color: #9a958a; }
.plan-price {
  display: flex; align-items: baseline; gap: 4px;
  margin-bottom: 26px;
  padding-bottom: 26px;
  border-bottom: 1px solid var(--rule);
  font-family: var(--display);
}
.plan.featured .plan-price { border-bottom-color: rgba(242, 239, 232, 0.16); }
.plan-price .currency { font-size: 24px; color: var(--ink-soft); }
.plan.featured .plan-price .currency { color: #9a958a; }
.plan-price .n { font-size: 58px; font-weight: 300; line-height: 1; letter-spacing: -0.04em; }
.plan.featured .plan-price .n { color: #fff; }
.plan-price .per { margin-left: 6px; font-size: 12px; color: var(--ink-mute); font-family: var(--mono); text-transform: uppercase; letter-spacing: 0.08em; }
.plan.featured .plan-price .per { color: #9a958a; }

.plan ul { list-style: none; margin: 0 0 28px; padding: 0; flex-grow: 1; }
.plan ul li {
  padding: 10px 0;
  font-size: 14px;
  display: flex; align-items: flex-start; gap: 12px;
  border-top: 1px solid var(--rule-soft);
  color: var(--ink);
}
.plan ul li:first-child { border-top: none; }
.plan.featured ul li { color: var(--bg); border-top-color: rgba(242, 239, 232, 0.12); }
.plan ul li .ck {
  flex-shrink: 0;
  width: 16px; height: 16px;
  border-radius: 0;
  background: transparent;
  color: var(--accent);
  display: grid; place-items: center;
  margin-top: 2px;
}
.plan.featured ul li .ck { background: transparent; color: var(--accent); }
.plan ul li .ck svg { width: 12px; height: 12px; }
.plan .btn { width: 100%; justify-content: center; }
.plan.featured .btn { --bg: var(--accent); --fg: #fff; --border: var(--accent); }
.plan.featured .btn:hover { --bg: var(--accent-deep); --border: var(--accent-deep); }

/* Comparison table */
.compare {
  background: transparent;
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: none;
}
.compare table { width: 100%; border-collapse: collapse; }
.compare th, .compare td {
  padding: 18px 22px;
  text-align: left;
  border-bottom: 1px solid var(--rule);
  font-size: 15px;
  vertical-align: middle;
}
.compare th {
  font-family: var(--mono);
  font-weight: 400;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: var(--bg-2);
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
}
.compare th.featured { background: var(--ink); color: #fff; }
.compare td.center { text-align: center; }
.compare tr:last-child td { border-bottom: none; }
.compare .yes { color: var(--accent); font-weight: 700; }
.compare .no { color: var(--ink-mute); }

/* ============ ABOUT ============ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.about-illus {
  position: relative;
  aspect-ratio: 1;
  background: var(--bg-2);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  box-shadow: none;
  overflow: hidden;
  filter: grayscale(1) contrast(1.03);
}
.about-illus::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 20%, var(--accent-soft) 0, transparent 45%);
}
.about-illus svg { position: absolute; bottom: 0; left: 0; width: 100%; }
.about-illus .name-plate {
  position: absolute;
  top: 24px; left: 24px;
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: 2px;
  padding: 7px 14px;
  font-family: var(--mono);
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: none;
  z-index: 3;
}
.about-illus .badge-2 {
  position: absolute;
  bottom: 24px; right: 24px;
  width: 104px; height: 104px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  border: none;
  box-shadow: none;
  display: grid;
  place-items: center;
  text-align: center;
  font-family: var(--display);
  font-weight: 400;
  line-height: 1;
  transform: none;
  z-index: 3;
}
.about-illus .badge-2 small {
  display: block;
  font-family: var(--mono);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 400;
  margin-bottom: 5px;
}
.about-illus .badge-2 .big { font-size: 34px; }

.about-text h2 {
  font-size: clamp(36px, 4.6vw, 60px);
  font-weight: 300;
  margin-bottom: 24px;
  line-height: 1.02;
}
.about-text h2 .pop { color: var(--accent); font-style: italic; }
.about-text p {
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin: 0 0 20px;
  max-width: 540px;
}
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 40px;
  max-width: 560px;
  border-top: 1px solid var(--rule);
}
.stat-card {
  background: transparent;
  border: none;
  border-left: 1px solid var(--rule);
  border-radius: 0;
  padding: 22px 20px;
  box-shadow: none;
}
.stat-card:first-child { border-left: none; padding-left: 0; }
.stat-card .n {
  font-family: var(--display);
  font-weight: 300;
  font-size: 42px;
  line-height: 1;
  color: var(--ink);
  letter-spacing: -0.03em;
}
.stat-card:nth-child(n) .n { color: var(--ink); }
.stat-card .l {
  margin-top: 8px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--ink-mute);
  line-height: 1.4;
  font-weight: 400;
}

/* Timeline */
.timeline { max-width: 760px; margin: 0 auto; position: relative; }
.timeline::before {
  content: "";
  position: absolute;
  top: 10px; bottom: 14px;
  left: 8px;
  width: 1px;
  background: var(--rule);
  border-radius: 0;
}
.tl-item { position: relative; padding-left: 56px; padding-bottom: 44px; }
.tl-item::before {
  content: "";
  position: absolute;
  left: 3px; top: 6px;
  width: 11px; height: 11px;
  border-radius: 0;
  background: var(--accent);
  border: none;
  transform: rotate(45deg);
}
.tl-item:nth-child(n)::before { background: var(--accent); }
.tl-item .year {
  font-family: var(--mono);
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}
.tl-item h3 { font-size: 24px; font-weight: 400; margin: 0 0 8px; letter-spacing: -0.01em; }
.tl-item p { margin: 0; color: var(--ink-soft); font-size: 16px; line-height: 1.6; }

/* ============ FAQ ============ */
.faq { max-width: 900px; margin: 0 auto; }
details.qa {
  background: transparent;
  border: none;
  border-top: 1px solid var(--rule);
  border-radius: 0;
  padding: 26px 4px;
  margin-bottom: 0;
  box-shadow: none;
  transition: none;
}
.faq details.qa:last-of-type { border-bottom: 1px solid var(--rule); }
details.qa[open] { box-shadow: none; }
details.qa summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-family: var(--display);
  font-weight: 400;
  font-size: 22px;
  color: var(--ink);
  letter-spacing: -0.01em;
}
details.qa summary::-webkit-details-marker { display: none; }
details.qa summary .ic {
  flex-shrink: 0;
  width: 26px; height: 26px;
  border-radius: 0;
  background: transparent;
  border: none;
  display: grid;
  place-items: center;
  color: var(--accent);
  transition: transform 0.3s ease;
}
details.qa[open] summary .ic { background: transparent; transform: rotate(45deg); }
details.qa[open] summary .ic svg { color: var(--accent); }
details.qa summary .ic svg { width: 14px; height: 14px; }
details.qa .ans {
  margin-top: 16px;
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.65;
  max-width: 760px;
}

/* ============ CONTACT FORM ============ */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: start;
}
.form-card {
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 44px;
  box-shadow: none;
}
.form-card h3 { font-size: 30px; font-weight: 400; margin: 0 0 8px; letter-spacing: -0.02em; }
.form-card .form-sub { color: var(--ink-soft); font-size: 15px; margin: 0 0 28px; }

/* form success state */
.form-success { text-align: center; padding: 16px 8px 6px; }
.form-success-mark {
  width: 62px; height: 62px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  color: var(--accent);
  display: grid; place-items: center;
  margin: 0 auto 22px;
}
.form-success-mark svg { width: 28px; height: 28px; }
.form-success h3 { font-size: 30px; font-weight: 400; letter-spacing: -0.02em; margin: 0 0 10px; }
.form-success p { color: var(--ink-soft); font-size: 16px; line-height: 1.6; margin: 0 auto 26px; max-width: 42ch; }

.form-row { margin-bottom: 20px; }
.form-row.two { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-row label {
  display: block;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 400;
  color: var(--ink-soft);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.form-row label .req { color: var(--accent); }
.form-row input,
.form-row textarea,
.form-row select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--rule);
  border-radius: 2px;
  background: var(--bg);
  font-family: var(--body);
  font-size: 16px;
  color: var(--ink);
  transition: border-color 0.2s ease, background 0.2s ease;
}
.form-row textarea { resize: vertical; min-height: 140px; line-height: 1.5; }
.form-row select { cursor: pointer; appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path d='M1 1 L 6 6 L 11 1' stroke='%2317150f' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 18px center;
  padding-right: 42px;
}
.form-row input::placeholder,
.form-row textarea::placeholder { color: var(--ink-mute); }
.form-row input:focus,
.form-row textarea:focus,
.form-row select:focus {
  outline: none;
  background: var(--surface);
  border-color: var(--ink);
  box-shadow: none;
  transform: none;
}

.form-checks { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin: 6px 0 24px; }
.form-check {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 15px;
  background: var(--bg);
  border: 1px solid var(--rule);
  border-radius: 2px;
  cursor: pointer;
  transition: border-color 0.2s ease;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.02em;
  font-weight: 400;
}
.form-check:hover { background: var(--bg); border-color: var(--ink-mute); }
.form-check input[type="radio"],
.form-check input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 18px; height: 18px;
  min-width: 18px;
  box-sizing: border-box;
  border: 1.5px solid var(--ink-mute);
  background: var(--surface);
  flex-shrink: 0;
  cursor: pointer;
  margin: 0;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.form-check input[type="radio"] { border-radius: 999px; }
.form-check input[type="checkbox"] { border-radius: 4px; }
/* radio: accent dot filled in the center */
.form-check input[type="radio"]:checked {
  border-color: var(--accent);
  background: var(--surface) radial-gradient(circle, var(--accent) 0 42%, transparent 46%);
}
/* checkbox: accent fill + white check mark */
.form-check input[type="checkbox"]:checked {
  border-color: var(--accent);
  background: var(--accent) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center / 12px 12px no-repeat;
}
.form-check:has(input:checked) { background: var(--accent-soft); border-color: var(--accent); }

.form-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 8px;
  flex-wrap: wrap;
}
.form-foot .note {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.02em;
  color: var(--ink-mute);
  display: flex;
  align-items: center;
  gap: 8px;
}
.form-foot .note svg { width: 14px; height: 14px; color: var(--accent); flex-shrink: 0; }
.form-foot .btn { flex-shrink: 0; }

/* contact info card */
.info-card {
  background: var(--ink);
  color: var(--bg);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: none;
  position: sticky;
  top: 100px;
}
.info-card h3 { font-size: 24px; font-weight: 400; color: #fff; margin-bottom: 8px; }
.info-card > p { margin: 0 0 28px; color: #9a958a; font-size: 15px; line-height: 1.55; }
.info-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  border-top: 1px solid rgba(242, 239, 232, 0.12);
}
.info-row:first-of-type { padding-top: 0; border-top: none; }
.info-row .ic {
  width: 38px; height: 38px;
  border-radius: 0;
  border-bottom: 1px solid var(--accent);
  display: grid; place-items: start;
  flex-shrink: 0;
  background: transparent !important;
  color: var(--bg) !important;
}
.info-row .ic svg { width: 18px; height: 18px; stroke: var(--bg); }
.info-row .l {
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 400;
  color: #9a958a;
  margin-bottom: 2px;
}
.info-row .v { font-family: var(--display); font-size: 19px; font-weight: 400; color: #fff; }
.info-row .v a { color: #fff; transition: color 0.2s ease; }
.info-row .v a:hover { color: var(--accent); }

/* ============ CTA BAND ============ */
.cta-band {
  background: var(--ink);
  color: var(--bg);
  border-radius: 6px;
  padding: 90px 70px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-2);
}
.cta-band::before {
  content: "";
  position: absolute;
  top: -140px; right: -100px;
  width: 460px; height: 460px;
  border-radius: 999px;
  background: var(--accent);
  opacity: 0.28;
  filter: blur(80px);
}
.cta-band::after { content: none; }
.cta-band-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.cta-band-grid.single { grid-template-columns: 1fr; text-align: left; }
.cta-band-grid.single .cta-band-cta { justify-content: flex-start; }
.cta-band .label { color: #9a958a; }
.cta-band h2 {
  font-size: clamp(40px, 5.2vw, 72px);
  color: #fff;
  line-height: 0.98;
  font-weight: 300;
  margin-bottom: 20px;
  letter-spacing: -0.03em;
}
.cta-band h2 .pop { color: var(--accent); font-style: italic; }
.cta-band p { font-size: 18px; color: #b5b0a6; max-width: 480px; line-height: 1.6; margin: 0; }
.cta-band-grid.single p { max-width: 560px; margin: 0; }
.cta-band-cta { display: flex; gap: 14px; flex-wrap: wrap; }

/* ============ FOOTER ============ */
footer { padding: 90px 0 40px; }
.foot {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  border-top: 1px solid var(--rule);
  padding-top: 60px;
  margin-bottom: 40px;
}
.foot-col h5 {
  font-family: var(--mono);
  font-weight: 400;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-mute);
  margin: 0 0 20px;
}
.foot-col a {
  display: block;
  font-size: 15px;
  color: var(--ink-soft);
  padding: 6px 0;
  transition: color 0.2s ease;
}
.foot-col a:hover { color: var(--accent); }
.foot-blurb { font-size: 14px; color: var(--ink-soft); margin: 16px 0 0; max-width: 300px; line-height: 1.6; }
.foot-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 26px;
  border-top: 1px solid var(--rule);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.02em;
  color: var(--ink-mute);
}
.foot-bottom .made { font-family: var(--mono); font-weight: 400; color: var(--ink-soft); font-size: 11px; letter-spacing: 0.02em; }

/* ============ ANIMATIONS ============ */
@keyframes rise {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.rise { animation: rise 0.9s cubic-bezier(.2,.7,.2,1) both; }
.d1 { animation-delay: 0.05s; }
.d2 { animation-delay: 0.16s; }
.d3 { animation-delay: 0.28s; }
.d4 { animation-delay: 0.40s; }
.d5 { animation-delay: 0.52s; }

/* kill legacy playful wiggle */
@keyframes wiggle { 0%,100% { transform: none; } }
.wave:hover { animation: none; }

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-art { max-width: 440px; margin: 0 auto; }
  .trust-bar { grid-template-columns: repeat(2, 1fr); gap: 24px 0; }
  .trust-item:nth-child(3) { border-left: none; padding-left: 4px; }
  .services, .portfolio, .fixgrid, .steps, .testis, .pricing { grid-template-columns: 1fr; }
  .svc, .step-card, .testi, .plan { border-right: none; border-bottom: 1px solid var(--rule); }
  .svc:last-child, .step-card:last-child, .testi:last-child, .plan:last-child { border-bottom: none; }
  .fixgrid { border-left: none; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .deep-svc { grid-template-columns: 1fr; gap: 36px; }
  .deep-svc.flip > div:first-child { order: 0; }
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .info-card { position: static; }
  .cta-band-grid { grid-template-columns: 1fr; gap: 32px; }
  .cta-band { padding: 60px 40px; }
  .nav-links { display: none; }
  section.s { padding: 100px 0; }
  .foot { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .container { padding: 0 22px; }
  .float-tag { font-size: 10px; padding: 7px 11px; }
  .trust-bar { padding: 26px; grid-template-columns: 1fr; gap: 20px; }
  .trust-item { border-left: none !important; padding-left: 4px; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .stat-card { border-left: none; border-top: 1px solid var(--rule); padding-left: 0; }
  .stat-card:first-child { border-top: none; }
  .stat-card:nth-child(3) { grid-column: 1 / -1; }
  .foot { grid-template-columns: 1fr; }
  .form-card { padding: 28px; }
  .cta-band { padding: 48px 26px; }
}
