:root {

  --bg:          #F4EEE2;
  --bg-alt:      #ECE3D2;
  --bg-inset:    #FBF7EE;
  --ink:         #1A1714;
  --ink-muted:   #6B6258;
  --accent:      #9E3B2E;
  --accent-2:    #C8772F;
  --rule:        rgba(26,23,20,0.12);
  --rule-strong: rgba(26,23,20,0.22);

  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body:    "Archivo", system-ui, -apple-system, "Segoe UI", sans-serif;

  --container: 1200px;
  --pad: 1.5rem;
  --header-h: 64px;

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;

  scroll-padding-top: calc(var(--header-h) + 8px);

  overflow-x: hidden;
}

img, svg { max-width: 100%; display: block; }

a { color: inherit; }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 2px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--ink);
  color: var(--bg);
  padding: 0.6rem 1rem;
  z-index: 200;
  font-family: var(--font-body);
}
.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0;
}

p { margin: 0 0 1rem; }
p:last-child { margin-bottom: 0; }

.eyebrow,
.rail-label,
.meta-row dt,
.concept-stamp,
.price-label,
.price-feature-flag,
.fact-label,
.nav-menu a {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--ink-muted);
}

.accent-word {
  color: var(--accent);
  font-style: italic;
  font-weight: 500;
}

.text-link {
  position: relative;
  display: inline-block;
  text-decoration: none;
  font-weight: 500;
  color: var(--ink);
  padding-bottom: 2px;
}
.text-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1.5px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s var(--ease);
}
.text-link:hover::after,
.text-link:focus-visible::after { transform: scaleX(1); }
.text-link:active { transform: translateY(1px); }

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--pad);
}

.rule {
  border: 0;
  height: 1px;
  background: var(--rule);
  margin: 1.75rem 0;
}

.section-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem 2.5rem;
}

.section {
  padding-block: clamp(3.5rem, 8vw, 6rem);
  border-top: 1px solid var(--rule);
}
.section-alt { background: var(--bg-alt); }

.section-alt { border-top: 0; }
.section-alt + .section { border-top: 0; }

.section-air { padding-block: clamp(5rem, 12vw, 9rem); }

.section-tight { padding-block: clamp(3rem, 6vw, 4.5rem); }

.rail { position: relative; display: flex; align-items: baseline; gap: 0.75rem; }
.rail-label { margin: 0; order: 2; }
.rail-num {
  font-family: var(--font-display);
  font-weight: 500;
  font-variation-settings: "opsz" 144, "SOFT" 20, "WONK" 1;
  font-size: clamp(2.2rem, 6vw, 3rem);
  line-height: 1;
  color: var(--accent);
  margin: 0;
  order: 1;
}

.rail-mega .rail-num {
  font-variation-settings: "opsz" 144, "SOFT" 24, "WONK" 1;
  color: var(--accent-2);
}

.section-title {
  font-size: clamp(1.9rem, 3.6vw, 2.9rem);
  font-variation-settings: "opsz" 80, "SOFT" 10, "WONK" 0;
  margin-bottom: 1.25rem;
}

.section-lead {
  max-width: 56ch;
  font-size: 1.15rem;
  color: var(--ink);
  margin-bottom: 2.25rem;
}

.section-body-narrow { max-width: 62ch; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg);

  border-bottom: 1px solid transparent;
  transition: border-color 0.25s var(--ease);
}
.site-header.is-scrolled { border-bottom-color: var(--rule); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
}

.brand {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.5rem;
  letter-spacing: -0.02em;
  text-decoration: none;
  color: var(--ink);
}

.nav { display: flex; align-items: center; }

.nav-menu {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 1.75rem;
  margin: 0;
  padding: 0;
}

.nav-menu a {
  position: relative;
  text-decoration: none;
  padding-bottom: 4px;
  font-size: 0.74rem;
}
.nav-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s var(--ease);
}
.nav-menu a:hover::after,
.nav-menu a:focus-visible::after,
.nav-menu a.is-active::after { transform: scaleX(1); }

.nav-cta a {
  color: var(--ink);
  font-weight: 600;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  background: none;
  border: 0;
  cursor: pointer;
}
.nav-toggle-bar {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  transition: transform 0.25s var(--ease), opacity 0.2s var(--ease);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  padding-block: clamp(3rem, 9vw, 6.5rem) clamp(2.5rem, 6vw, 4rem);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

.eyebrow { margin: 0 0 1.25rem; }

.hero-title {
  margin: 0 0 1.75rem;
}

.hero-display {
  display: block;
  font-weight: 600;
  font-variation-settings: "opsz" 144, "SOFT" 34, "WONK" 1;
  font-size: clamp(3.4rem, 12vw, 9.5rem);
  letter-spacing: -0.035em;
  line-height: 0.92;
}

.hero-subhead {
  display: block;
  font-family: var(--font-display);
  font-weight: 400;
  font-style: italic;
  font-variation-settings: "opsz" 40, "SOFT" 0, "WONK" 0;
  font-size: clamp(1.25rem, 2.4vw, 1.7rem);
  letter-spacing: -0.01em;
  line-height: 1.2;
  color: var(--ink-muted);
  margin-top: 0.9rem;
  max-width: 24ch;
}

.hero-keyword {
  position: relative;
  display: inline-block;
  color: var(--accent);
}
.hero-keyword em { font-style: italic; }
.hero-underline {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.18em;
  width: 100%;
  height: 0.4em;
  color: var(--accent);
  overflow: visible;
}

.hero-underline path {
  stroke-dasharray: 240;
  stroke-dashoffset: 240;
}
.hero-underline.is-drawn path {
  transition: stroke-dashoffset 0.65s var(--ease) 0.5s;
  stroke-dashoffset: 0;
}

.hero-lead {
  max-width: 50ch;
  font-size: 1.2rem;
  color: var(--ink);
  margin-bottom: 0;
}

.hero .rule { max-width: 50ch; margin-left: 0; }

.hero-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.75rem;
  font-size: 1.05rem;
}

.hero-meta {
  align-self: end;
  border-top: 2px solid var(--ink);
  padding-top: 1rem;
}
.meta-block { margin: 0; }
.meta-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.2rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--rule);
}
.meta-row:last-child { border-bottom: 0; }
.meta-row dt { margin: 0; }
.meta-row dd {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.02rem;
  line-height: 1.3;
  color: var(--ink);
}

.meta-row-status dd {
  display: flex;
  align-items: baseline;
  gap: 0.55rem;
}
.status-dot {
  flex: none;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent-2);
  box-shadow: 0 0 0 3px rgba(200, 119, 47, 0.18);
  transform: translateY(-1px);
}

.service-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--rule);
}
.service-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem;
  align-items: baseline;
  padding: 1.6rem 0;
  border-bottom: 1px solid var(--rule);
  transition: border-color 0.25s var(--ease);
}
.service-row:hover { border-bottom-color: var(--rule-strong); }
.service-num {
  font-family: var(--font-display);
  font-variation-settings: "opsz" 100, "SOFT" 10, "WONK" 0;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 400;
  color: var(--accent);
  line-height: 1;
}
.service-text h3 {
  font-size: 1.35rem;
  margin-bottom: 0.35rem;
}
.service-text p {
  color: var(--ink-muted);
  max-width: 54ch;
  margin: 0;
}

.process-band {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  border-top: 1px solid var(--rule);
}
.process-step {
  padding: 1.4rem 0;
  border-bottom: 1px solid var(--rule);
}
.process-num {
  display: block;
  font-family: var(--font-display);
  font-variation-settings: "opsz" 120, "SOFT" 20, "WONK" 1;
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 500;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.process-step h3 { font-size: 1.3rem; margin-bottom: 0.3rem; }
.process-step p { color: var(--ink-muted); margin: 0; max-width: 30ch; }

.work-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.work-tile { display: flex; flex-direction: column; }

.work-art {
  position: relative;
  margin-bottom: 1rem;
}

.browser {
  border: 1px solid var(--rule-strong);
  background: var(--bg-inset);
  overflow: hidden;
  box-shadow: 0 1px 0 var(--rule), 0 18px 30px -24px rgba(26, 23, 20, 0.45);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.work-tile:hover .browser {
  transform: translateY(-4px);
  box-shadow: 0 1px 0 var(--rule), 0 26px 40px -24px rgba(26, 23, 20, 0.5);
}

.browser-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 9px 12px;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--rule);
}
.browser-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--rule-strong);
}
.browser-dot:nth-child(1) { background: #C8772F; }
.browser-dot:nth-child(2) { background: var(--ink-muted); }
.browser-dot:nth-child(3) { background: var(--accent); }
.browser-url {
  margin-left: 8px;
  flex: 1;
  font-family: var(--font-body);
  font-size: 0.66rem;
  letter-spacing: 0.02em;
  color: var(--ink-muted);
  background: var(--bg-inset);
  border: 1px solid var(--rule);
  border-radius: 999px;
  padding: 2px 10px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.browser-view {
  aspect-ratio: 16 / 10;
  padding: 14px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow: hidden;
}

.work-info { display: flex; flex-direction: column; }

.work-tag {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--ink-muted);
  margin: 0 0 0.5rem;
}
.work-tag-no { color: var(--accent); }

.work-name {
  font-size: 1.5rem;
  margin: 0 0 0.4rem;
  position: relative;
  display: inline-block;
  align-self: flex-start;
}
.work-name::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 100%; height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s var(--ease);
}
.work-tile:hover .work-name::after { transform: scaleX(1); }

.work-caption { color: var(--ink-muted); margin: 0; max-width: 46ch; }

.cx-wine-view, .cx-arch-view, .cx-surf-view, .cx-label-view, .cx-bloom-view {
  padding: 0;
  display: block;
  position: relative;
}

.cx-wine-view { display: grid; grid-template-columns: 1.15fr 0.85fr; background: #2c1117; color: #f3e7d9; }
.cx-wine-left { padding: 20px; display: flex; flex-direction: column; justify-content: center; gap: 8px; }
.cx-wine-name { font-family: var(--font-display); font-weight: 600; font-size: clamp(1.4rem, 4.6vw, 2.2rem); line-height: 1; color: #e7563f; }
.cx-wine-sub { font-family: var(--font-body); font-size: 0.64rem; letter-spacing: 0.04em; color: #c9b3a4; }
.cx-wine-btn { margin-top: 8px; align-self: flex-start; font-family: var(--font-body); font-size: 0.56rem; letter-spacing: 0.12em; text-transform: uppercase; color: #f3e7d9; border: 1px solid #7a3b34; padding: 6px 11px; border-radius: 999px; }
.cx-wine-list { padding: 16px 18px; display: flex; flex-direction: column; justify-content: center; gap: 10px; border-left: 1px solid rgba(243,231,217,0.12); }
.cx-wine-row { height: 6px; border-radius: 3px; background: rgba(243,231,217,0.22); }
.cx-wine-row:nth-child(2) { width: 88%; }
.cx-wine-row:nth-child(4) { width: 80%; }
.cx-wine-row:nth-child(5) { width: 64%; }
.cx-wine-row.is-on { background: #e7563f; width: 72%; }

.cx-arch-view { background: #f4f2ec; color: var(--ink); padding: 16px 18px; display: flex; flex-direction: column; gap: 12px; }
.cx-arch-top { display: flex; align-items: center; justify-content: space-between; padding-bottom: 10px; border-bottom: 1px solid rgba(26,23,20,0.18); }
.cx-arch-logo { font-family: var(--font-body); font-weight: 600; letter-spacing: 0.22em; font-size: 0.64rem; }
.cx-arch-menu { display: flex; gap: 6px; }
.cx-arch-menu i { width: 14px; height: 4px; background: rgba(26,23,20,0.3); }
.cx-arch-rows { display: flex; flex-direction: column; }
.cx-arch-row { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 12px; padding: 9px 0; border-bottom: 1px solid rgba(26,23,20,0.12); }
.cx-arch-idx { font-family: var(--font-display); font-weight: 500; font-size: 0.92rem; font-variant-numeric: tabular-nums; }
.cx-arch-line { height: 5px; border-radius: 2px; background: rgba(26,23,20,0.16); }
.cx-arch-yr { width: 26px; height: 5px; border-radius: 2px; background: rgba(26,23,20,0.3); }

.cx-surf-view { background: linear-gradient(180deg, #bfe0e6 0%, #ddeee9 55%, #eaf3ee 100%); color: #123b40; overflow: hidden; }
.cx-surf-sun { position: absolute; top: 16px; right: 18px; width: 42px; height: 42px; border-radius: 50%; background: radial-gradient(circle, #ffe7a8, #ffd25e); box-shadow: 0 0 22px rgba(255,210,94,0.6); }
.cx-surf-copy { position: relative; z-index: 1; padding: 22px 18px; display: flex; flex-direction: column; gap: 7px; }
.cx-surf-name { font-family: var(--font-display); font-weight: 500; font-size: clamp(1.3rem, 4.6vw, 2rem); line-height: 1; }
.cx-surf-sub { font-family: var(--font-body); font-size: 0.6rem; letter-spacing: 0.05em; color: #2c5e62; }
.cx-surf-pill { margin-top: 6px; align-self: flex-start; font-family: var(--font-body); font-size: 0.55rem; letter-spacing: 0.12em; text-transform: uppercase; color: #0c2f33; background: rgba(255,255,255,0.7); padding: 5px 11px; border-radius: 999px; }
.cx-surf-sea { position: absolute; left: 0; right: 0; bottom: 0; height: 34%; background: linear-gradient(180deg, #5fb6bd, #2f8f99); border-top: 2px solid rgba(255,255,255,0.5); }

.cx-label-view { background: #131011; color: #f0ece4; padding: 18px; display: flex; flex-direction: column; gap: 9px; justify-content: center; }
.cx-label-name { font-family: var(--font-body); font-weight: 800; letter-spacing: 0.04em; font-size: clamp(1.2rem, 4.4vw, 1.95rem); }
.cx-label-sub { font-family: var(--font-body); font-size: 0.6rem; letter-spacing: 0.06em; color: #8a837a; }
.cx-eq { display: flex; align-items: flex-end; gap: 4px; height: 26px; margin-top: 6px; }
.cx-eq i { flex: 1; background: #6fe3d2; border-radius: 2px; height: 40%; }
.cx-label-now { display: flex; align-items: center; gap: 9px; margin-top: 8px; }
.cx-label-play { width: 0; height: 0; border-left: 9px solid #6fe3d2; border-top: 6px solid transparent; border-bottom: 6px solid transparent; }
.cx-label-track { flex: 1; height: 5px; border-radius: 3px; background: linear-gradient(90deg, #6fe3d2 38%, rgba(240,236,228,0.16) 38%); }

.cx-bloom-view { background: linear-gradient(160deg, #eef1e3, #f6e9ea); color: #344230; padding: 18px; display: flex; flex-direction: column; justify-content: center; gap: 9px; overflow: hidden; }
.cx-bloom-flower { position: absolute; top: -12px; right: -12px; width: 80px; height: 80px; border-radius: 50%; background: radial-gradient(circle, #e98aa0 0 22%, transparent 23%), conic-gradient(from 0deg, #f0a9b8, #cfe0a8, #f0a9b8, #cfe0a8, #f0a9b8); opacity: 0.9; }
.cx-bloom-copy { position: relative; z-index: 1; display: flex; flex-direction: column; gap: 5px; }
.cx-bloom-name { font-family: var(--font-display); font-weight: 500; font-size: clamp(1.2rem, 4.2vw, 1.8rem); line-height: 1; color: #41502f; }
.cx-bloom-sub { font-family: var(--font-body); font-size: 0.6rem; letter-spacing: 0.05em; color: #6a7358; }
.cx-bloom-chips { display: flex; gap: 7px; margin-top: 10px; }
.cx-bloom-chips span { flex: 1; height: 26px; border-radius: 6px; background: rgba(255,255,255,0.55); border: 1px solid rgba(52,66,48,0.12); }

@media (prefers-reduced-motion: no-preference) {
  .cx-eq i { animation: eq 1.1s ease-in-out infinite; }
  .cx-eq i:nth-child(2) { animation-delay: 0.13s; }
  .cx-eq i:nth-child(3) { animation-delay: 0.26s; }
  .cx-eq i:nth-child(4) { animation-delay: 0.39s; }
  .cx-eq i:nth-child(5) { animation-delay: 0.52s; }
  .cx-eq i:nth-child(6) { animation-delay: 0.65s; }
  .cx-eq i:nth-child(7) { animation-delay: 0.78s; }
  @keyframes eq { 0%, 100% { height: 28%; } 50% { height: 96%; } }

  .cx-surf-sun { animation: sun 6s ease-in-out infinite; }
  @keyframes sun { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-4px); } }
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--rule);
}
.price-col {
  padding: 2rem 0;
  border-bottom: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
}
.price-label { margin: 0 0 0.75rem; }

.price-figure {
  font-family: var(--font-display);
  font-variation-settings: "opsz" 120, "SOFT" 10, "WONK" 0;
  font-weight: 500;
  font-size: clamp(2.6rem, 5vw, 3.4rem);
  line-height: 1;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
  margin: 0 0 1.25rem;
  display: flex;
  align-items: baseline;
  gap: 0.15em;
}
.price-cur { color: var(--accent); }
.price-from,
.price-per {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--ink-muted);
  align-self: flex-end;
  padding-bottom: 0.55rem;
  text-transform: lowercase;
}
.price-figure-text { font-style: italic; font-size: clamp(2.2rem, 4vw, 2.8rem); }

.price-list {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  flex: 1;
}
.price-list li {
  padding: 0.55rem 0;
  border-top: 1px solid var(--rule);
  color: var(--ink-muted);
  font-size: 0.98rem;
}
.price-link { align-self: flex-start; }

.price-col-feature {
  background: var(--ink);
  color: var(--bg);
  padding-inline: 1.5rem;
  border-bottom: 0;
  position: relative;
}
.price-col-feature .price-label { color: rgba(244,238,226,0.7); }
.price-col-feature .price-cur { color: var(--accent-2); }
.price-col-feature .price-per { color: rgba(244,238,226,0.6); }
.price-col-feature .price-list li {
  color: rgba(244,238,226,0.82);
  border-top-color: rgba(244,238,226,0.16);
}
.price-feature-flag {
  color: var(--accent);
  margin: 0 0 0.75rem;
  font-weight: 600;
}

.price-col-feature .price-feature-flag { color: #E89A6B; }
.price-link-invert { color: var(--bg); }
.price-link-invert::after { background: #E89A6B; }

.about-statement p {
  font-family: var(--font-display);
  font-weight: 400;
  font-variation-settings: "opsz" 60, "SOFT" 0, "WONK" 0;
  font-size: clamp(1.4rem, 2.6vw, 1.9rem);
  line-height: 1.35;
  letter-spacing: -0.01em;
  margin-bottom: 1.25rem;
  max-width: 34ch;
}
.about-statement p:last-child { max-width: 38ch; }

.about-statement.has-dropcap > p:first-of-type::first-letter {
  font-family: var(--font-display);
  font-weight: 600;
  font-variation-settings: "opsz" 144, "SOFT" 30, "WONK" 1;
  float: left;
  font-size: 4.6em;
  line-height: 0.72;
  padding: 0.04em 0.12em 0 0;
  margin: 0.02em 0 0;
  color: var(--accent);
}

.about-facts {
  list-style: none;
  margin: 2.5rem 0 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--rule);
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
}
.about-facts li { display: flex; flex-direction: column; gap: 0.25rem; }
.fact-num {
  font-family: var(--font-display);
  font-variation-settings: "opsz" 100;
  font-weight: 500;
  font-size: 2.4rem;
  line-height: 1;
  color: var(--accent);
  font-variant-numeric: tabular-nums;
}
.fact-label { color: var(--ink-muted); }

.contact-form { max-width: 38rem; margin-top: 0.5rem; }

.form-note {
  max-width: 38rem;
  margin-top: 1.25rem;
  font-size: 0.85rem;
  color: var(--ink-muted);
}

.field { margin-bottom: 1.75rem; }
.field label {
  display: block;
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--ink-muted);
  margin-bottom: 0.5rem;
}

.field input,
.field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--ink-muted);
  padding: 0.5rem 0;
  resize: vertical;
  transition: border-color 0.22s var(--ease);
}
.field input::placeholder,
.field textarea::placeholder { color: var(--ink-muted); }
.field input:focus,
.field textarea:focus {
  outline: none;
  border-bottom-color: var(--accent);
}

.field input:focus-visible,
.field textarea:focus-visible {
  outline: none;
  border-bottom-width: 2px;
  border-bottom-color: var(--accent);
}

.field.has-error input,
.field.has-error textarea { border-bottom-color: var(--accent); }
.field-error {
  display: block;
  color: var(--accent);
  font-size: 0.85rem;
  margin-top: 0.4rem;
}

.btn-submit {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--bg);
  background: var(--accent);
  border: 1px solid var(--accent);
  padding: 0.85rem 1.6rem;
  cursor: pointer;
  transition: background-color 0.2s var(--ease), transform 0.08s var(--ease);
}
.btn-submit:hover { background: #882f24; border-color: #882f24; }
.btn-submit:active { transform: translateY(1px); }

.form-status {
  margin-top: 1.25rem;
  min-height: 1.25rem;
  font-size: 0.98rem;
}
.form-status.is-success { color: var(--accent); font-weight: 500; }
.form-status.is-error { color: var(--accent); font-weight: 500; }

.site-footer {
  padding-top: clamp(3rem, 7vw, 5rem);
  padding-bottom: 2.5rem;
  border-top: 1px solid var(--rule);
  background: var(--bg);

  overflow: hidden;
}

.footer-wordmark {
  font-family: var(--font-display);
  font-weight: 600;
  font-variation-settings: "opsz" 144, "SOFT" 30, "WONK" 1;

  font-size: clamp(2.25rem, 11vw, 6.5rem);
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--ink);
  margin: 0 0 1.5rem;
  white-space: nowrap;
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.5rem;
  margin-top: 1.5rem;
}
.footer-email { font-family: var(--font-display); font-size: 1.3rem; margin: 0 0 0.25rem; }
.footer-domain { color: var(--ink-muted); margin: 0; }
.footer-colophon { text-align: left; }
.footer-colophon p {
  letter-spacing: 0.04em;
  font-size: 0.78rem;
  margin: 0 0 0.3rem;
  color: var(--ink-muted);
  font-weight: 500;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.6s var(--ease) var(--reveal-delay, 0s),
    transform 0.6s var(--ease) var(--reveal-delay, 0s);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

.section-title[data-reveal] { transform: translateY(24px); }

.rule-draw {
  opacity: 1;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.7s var(--ease);
}
.rule-draw.is-visible { transform: scaleX(1); }

.rail-mega .rail-num {
  transition: transform 0.7s var(--ease), opacity 0.6s var(--ease);
}
.rail-mega[data-reveal] .rail-num {
  opacity: 0;
  transform: translateY(14px) scale(1.08);
  transform-origin: left bottom;
}
.rail-mega[data-reveal].is-visible .rail-num {
  opacity: 1;
  transform: none;
}

@media (max-width: 719px) {
  .nav-toggle { display: flex; }

  .nav-menu {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--rule);
    padding: 0.5rem var(--pad) 1rem;

    display: none;
  }
  .nav-menu.is-open { display: flex; }
  .nav-menu li { width: 100%; }
  .nav-menu a {
    display: block;
    width: 100%;
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--rule);
    font-size: 0.8rem;
  }
  .nav-menu a::after { display: none; }
  .nav-cta a { color: var(--accent); }
}

@media (min-width: 720px) {
  .hero-grid {
    grid-template-columns: 1fr 0.42fr;
    gap: 3rem;
  }
  .process-band { grid-template-columns: repeat(2, 1fr); }
  .process-step { padding: 1.6rem 1.5rem 1.6rem 0; }
  .work-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
  .work-tile-wide { grid-column: 1 / -1; }

  .work-tile-wide .browser-view { aspect-ratio: 24 / 9; }
  .work-tile-wide .m-cards-3 { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 940px) {

  .section-grid {
    grid-template-columns: 2fr 10fr;
    gap: 2rem 3rem;
  }
  .rail { flex-direction: column; align-items: flex-start; gap: 0.4rem; }
  .rail-label { order: 1; }
  .rail-num { order: 2; font-size: clamp(2.5rem, 4vw, 3.4rem); }

  #services .section-grid { grid-template-columns: 1.4fr 10.6fr; }
  #pricing .section-grid  { grid-template-columns: 1.4fr 10.6fr; }

  .section-flip .section-grid { grid-template-columns: 10fr 2.6fr; }
  .section-flip .rail { grid-column: 2; grid-row: 1; align-items: flex-end; text-align: right; }
  .section-flip .section-body { grid-column: 1; grid-row: 1; }

  .rail-mega .rail-num {
    font-size: clamp(5rem, 9vw, 8.5rem);
    line-height: 0.82;
    letter-spacing: -0.03em;
  }
  .section-flip .rail-mega .rail-num { margin-right: -0.06em; }

  .section-about .section-grid { grid-template-columns: 3fr 9fr; }
  .section-about .rail-mega .rail-num { margin-left: -0.04em; }

  .section-flip .work-tile-wide {
    margin-left: calc(-1 * var(--pad));
  }
  .section-flip .work-tile-wide .work-info {
    margin-left: var(--pad);
  }

  .process-band {
    grid-template-columns: repeat(4, 1fr);
    border-bottom: 1px solid var(--rule);
  }
  .process-step {
    border-bottom: 0;
    border-right: 1px solid var(--rule);
    padding: 0 1.5rem;
  }
  .process-step:first-child { padding-left: 0; }
  .process-step:last-child { border-right: 0; }

  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
    border-bottom: 1px solid var(--rule);
  }
  .price-col {
    border-bottom: 0;
    border-right: 1px solid var(--rule);
    padding: 2rem 1.75rem;
  }
  .price-col:first-child { padding-left: 0; }
  .price-col:last-child { border-right: 0; padding-right: 0; }

  .price-col-feature {
    border-right: 0;
    padding: 2.25rem 1.75rem;
  }
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.site-header, main, .site-footer { position: relative; z-index: 2; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    transition: none !important;
    animation: none !important;
    scroll-behavior: auto !important;
  }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
  .rule-draw { transform: scaleX(1) !important; }
  .rail-mega[data-reveal] .rail-num { opacity: 1 !important; transform: none !important; }
  .hero-underline path { stroke-dashoffset: 0 !important; }
  .marquee-track { animation: none !important; }
}
