/* DigitalPartners: warm paper, graphite, terracotta. No third-party font requests. */
:root {
  --paper: #f6f4ee;
  --ink: #272223;
  --muted: #6b6364;
  --accent: #a4452e;
  --line: #dbd2d3;
  --surface: #eeeee6;
  --dark: #2a2425;
  --serif: Georgia,"Times New Roman",serif;
  --sans: "Inter",-apple-system,BlinkMacSystemFont,"Segoe UI",Arial,sans-serif;
  --mono: "SFMono-Regular",Consolas,"Liberation Mono",monospace;
  --ease: cubic-bezier(.16,1,.3,1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  line-height: 1.6;
}

body:has(dialog[open]) {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,input,select,textarea {
  font: inherit;
  color: inherit;
}

button {
  cursor: pointer;
}

button:disabled {
  cursor: wait;
  opacity: .65;
}

button {
  border-radius: 0;
}

input,select,textarea {
  border-radius: 0;
}

h1,h2,h3,h4,p {
  margin: 0;
}

h1,h2,h3,h4 {
  line-height: 1.1;
}

h1,h2,h3 {
  font-weight: 650;
  letter-spacing: -.055em;
}

h1 {
  font-size: clamp(44px,5.1vw,74px);
}

h2 {
  font-size: clamp(34px,3.65vw,53px);
}

h3 {
  font-size: 24px;
  letter-spacing: -.035em;
}

em {
  font-family: var(--serif);
  font-weight: 400;
  color: var(--accent);
  letter-spacing: -.06em;
}

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

svg.icon {
  flex: none;
  width: 20px;
  height: 20px;
  vertical-align: middle;
}

button,a,input,textarea,select,summary,[tabindex] {
  -webkit-tap-highlight-color: transparent;
}

button:focus-visible,a:focus-visible,input:focus-visible,select:focus-visible,textarea:focus-visible,summary:focus-visible,[tabindex]:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 5px;
}

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

[hidden] {
  display: none !important;
}

ul,ol {
  padding: 0;
  margin: 0;
  list-style: none;
}

.container {
  width: calc(100% - 112px);
  max-width: 1320px;
  margin-inline: auto;
}

.section {
  padding-block: 100px;
}

.eyebrow {
  display: flex;
  gap: 13px;
  align-items: center;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: .06em;
  line-height: 1.5;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 25px;
}

.section-index {
  color: #7b7173;
}

.mono {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .035em;
}

.muted {
  color: var(--muted);
}

.small {
  font-size: 13px;
  line-height: 1.6;
}

.sr-only {
  position: absolute !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 200;
  padding: 12px 20px;
  background: var(--ink);
  color: white;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: none;
}

main:focus {
  outline: none;
}

.section-heading {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 48px;
}

.section-heading .eyebrow {
  margin-bottom: 22px;
}

.section-heading-aside {
  max-width: 355px;
  justify-self: end;
  padding-bottom: 4px;
}

.section-heading-aside p,.section-heading>p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

.section-heading-aside .text-link {
  margin-top: 20px;
}

.button {
  min-height: 52px;
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  padding: 14px 20px;
  border: 1px solid transparent;
  font-size: 13px;
  font-weight: 550;
  line-height: 1.5;
  transition: background-color .18s,color .18s,border-color .18s;
}

.button .icon {
  width: 18px;
  height: 18px;
  transition: transform .2s var(--ease);
}

.button:hover .icon {
  transform: translateX(4px);
}

.button-dark {
  background: var(--ink);
  color: var(--paper);
}

.button-dark:hover {
  background: var(--accent);
}

.button-cream {
  background: var(--paper);
  color: var(--ink);
}

.button-cream:hover {
  background: #e4dccc;
}

.button-outline {
  border-color: #b8abad;
  background: transparent;
}

.button-outline:hover {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-size: 13px;
  line-height: 1.5;
  padding-block: 11px;
  border-bottom: 1px solid #96898b;
  transition: color .2s,border-color .2s;
}

.text-link .icon {
  width: 17px;
  height: 17px;
  transition: transform .2s;
}

.text-link:hover {
  color: var(--accent);
  border-color: var(--accent);
}

.text-link:hover .icon {
  transform: translate(2px,-2px);
}

.text-button {
  border: 0;
  background: none;
  padding: 9px 0;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 550;
}

.icon-button {
  border: 1px solid var(--line);
  background: transparent;
  display: inline-grid;
  place-items: center;
  min-width: 44px;
  min-height: 44px;
  padding: 8px;
}

.icon-button:hover {
  background: var(--surface);
}

/* Navigation */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(246,244,238,.95);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.header-inner {
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.wordmark {
  display: inline-flex;
  align-items: baseline;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -1.15px;
  line-height: 1;
}

.brand-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  background: var(--accent);
  margin-left: 3px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 27px;
  margin-left: auto;
}

.desktop-nav a {
  font-size: 12px;
  line-height: 1.5;
  padding: 12px 0;
  position: relative;
  white-space: nowrap;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s;
}

.desktop-nav a:hover::after,.desktop-nav a[aria-current]::after {
  transform: scaleX(1);
}

.desktop-nav a[aria-current] {
  color: var(--accent);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 42px;
  border: 1px solid #beb1b3;
  padding: 9px 15px;
  font-size: 12px;
}

.nav-cta:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--paper);
}

.nav-cta .icon {
  width: 16px;
  height: 16px;
}

.menu-toggle {
  display: none;
  min-height: 44px;
  min-width: 44px;
  background: none;
  border: 0;
}

.mobile-menu {
  padding: 26px;
  border: 0;
  background: var(--paper);
  color: var(--ink);
  width: 100%;
  max-width: 560px;
  height: 100dvh;
  max-height: 100dvh;
  margin: 0 0 0 auto;
}

.mobile-menu::backdrop {
  background: rgba(24,20,21,.55);
}

.menu-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 38px;
}

.mobile-menu nav>a:not(.button) {
  display: flex;
  gap: 20px;
  align-items: center;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
  font-size: 25px;
  letter-spacing: -.04em;
}

.mobile-menu nav>a .icon {
  margin-left: auto;
}

.mobile-menu nav .button {
  margin-top: 35px;
  width: 100%;
}

.menu-bottom {
  font-family: var(--mono);
  font-size: 12px;
  position: absolute;
  bottom: 32px;
  color: var(--muted);
}

/* Hero */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 62px;
  padding-top: 92px;
  padding-bottom: 78px;
  align-items: center;
}

.hero-copy .eyebrow {
  margin-bottom: 30px;
  font-size: 10px;
}

.tiny-cross {
  font-family: var(--serif);
  font-size: 26px;
  line-height: 1;
  margin-right: 1px;
}

.hero h1 {
  font-size: clamp(42px,4.65vw,68px);
  line-height: 1.07;
  letter-spacing: -.061em;
  font-weight: 650;
}

.hero h1 em {
  color: var(--accent);
}

.hero-copy>p {
  max-width: 455px;
  font-size: 16px;
  line-height: 1.85;
  color: var(--muted);
  margin-top: 30px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 31px;
  flex-wrap: wrap;
}

.hero-actions .button {
  min-height: 52px;
  gap: 23px;
}

.hero-actions .text-link {
  border: 0;
  gap: 8px;
  font-size: 12px;
}

.hero-benefits {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 27px;
  font-size: 11px;
  color: var(--muted);
}

.hero-benefits>span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero-benefits .icon {
  width: 14px;
  height: 14px;
  color: #6d5055;
}

.hero-showcase {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  position: relative;
  min-width: 0;
  background: #e9e8df;
  border: 1px solid #dfd5d7;
  min-height: 475px;
  animation: fade-up .6s var(--ease);
}

.showcase-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding: 22px 24px;
  position: relative;
  z-index: 2;
}

.showcase-top>.mono {
  font-size: 9px;
  color: #6d5d60;
}

.concept-label {
  display: inline-flex;
  align-items: center;
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: .08em;
  line-height: 1.3;
  border: 1px solid #bcafb1;
  color: #68575a;
  padding: 5px 7px;
  white-space: nowrap;
}

.hero-stage {
  flex: 1;
  position: relative;
  background-image: linear-gradient(#cababd35 1px,transparent 1px),linear-gradient(90deg,#cababd35 1px,transparent 1px);
  background-size: 52px 52px;
  min-height: 360px;
  display: grid;
  align-items: center;
}

.hero-view {
  padding: 10px 34px 35px 22px;
  position: relative;
  animation: fade-in .2s var(--ease);
  min-height: 340px;
  display: grid;
  align-items: center;
}

.browser {
  background: #f8f7f1;
  border: 1px solid #b0a0a3;
  border-radius: 6px 6px 0 0;
  overflow: hidden;
  min-width: 0;
}

.hero-browser {
  transform: rotate(-2deg);
  box-shadow: 0 16px 28px #3c303220;
  position: relative;
  margin-right: 18px;
}

.browser-bar {
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 12px;
  background: #f4f3ec;
  border-bottom: 1px solid #d6c9cb;
  gap: 12px;
}

.browser-bar>span {
  font-family: var(--mono);
  font-size: 7px;
  letter-spacing: .08em;
  color: #6c5c5f;
}

.browser-bar>.icon {
  width: 10px;
  height: 10px;
  color: #928083;
}

.browser-dots {
  display: flex;
  gap: 4px;
}

.browser-dots i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #bdaeb0;
}

.hero-browser .mini-site-hero {
  height: 244px;
}

.phone-frame {
  position: absolute;
  right: 15px;
  bottom: 6px;
  width: 116px;
  height: 220px;
  border: 5px solid #3c3133;
  border-radius: 19px;
  background: #ece0e2;
  transform: rotate(4deg);
  overflow: hidden;
  box-shadow: 0 16px 24px #2d1e2024;
}

.phone-speaker {
  position: absolute;
  left: 35%;
  top: 3px;
  width: 30%;
  height: 7px;
  border-radius: 20px;
  background: #3c3133;
  z-index: 3;
}

.phone-site {
  height: 100%;
}

.phone-site .mini-site-nav {
  height: 34px;
  padding: 11px 8px 5px;
}

.phone-site .mini-site-nav>b {
  font-size: 8px;
}

.phone-site .mini-site-nav>div {
  display: none;
}

.phone-site .mini-site-hero {
  height: 160px;
  background-position: 48% bottom;
  padding: 14px 9px;
}

.phone-site .mini-site-title {
  font-size: 15px;
  line-height: 1.2;
  margin-top: 8px;
}

.phone-site .mini-site-label {
  font-size: 3px;
  letter-spacing: .08em;
}

.phone-site .mini-site-button {
  font-size: 5px;
  padding: 5px 7px;
  gap: 4px;
  margin-top: 8px;
}

.phone-site .mini-site-button .icon {
  width: 7px;
  height: 7px;
}

.phone-site .mini-site-counter {
  font-size: 5px;
  right: 9px;
  bottom: 9px;
}

.phone-site .mini-site-bottom {
  padding: 6px 5px;
  gap: 4px;
}

.phone-site .mini-site-bottom span {
  font-size: 3px;
}

.annotation {
  position: absolute;
  left: 50px;
  bottom: -7px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 13px;
  line-height: 1.3;
  color: #716063;
  transform: rotate(-5deg);
  display: flex;
  gap: 10px;
}

.annotation>span {
  font-size: 35px;
  line-height: 1;
}

.showcase-controls {
  margin-top: auto;
  display: flex;
  align-items: center;
  border-top: 1px solid #d5c7c9;
  background: #e8e8dc;
  min-height: 52px;
  padding: 0 19px;
  gap: 6px;
}

.showcase-controls>button {
  display: flex;
  align-items: center;
  gap: 9px;
  position: relative;
  min-height: 52px;
  background: transparent;
  border: 0;
  font-size: 11px;
  padding: 12px 9px;
  color: #807274;
}

.showcase-controls>button>span {
  font-family: var(--mono);
  font-size: 8px;
}

.showcase-controls>button[aria-pressed=true] {
  color: #382b2d;
}

.showcase-controls>button[aria-pressed=true]::after {
  content: "";
  height: 2px;
  background: var(--accent);
  position: absolute;
  bottom: -1px;
  left: 10px;
  right: 10px;
}

.showcase-controls>a {
  display: grid;
  place-items: center;
  margin-left: auto;
  width: 30px;
  height: 40px;
}

.showcase-controls>a .icon {
  width: 16px;
  height: 16px;
}

.hero-rule {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--line);
  padding-block: 17px;
  font-family: var(--mono);
  font-size: 9px;
  color: #7d7173;
  letter-spacing: .045em;
}

.hero-rule>a {
  font-size: 20px;
  padding: 0 10px;
  color: var(--accent);
}

/* The actual miniature concept interfaces */
.mini-website {
  color: #403234;
  background: #eee3e5;
}

.mini-site-nav {
  height: 43px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
}

.mini-site-nav>b {
  font-size: 13px;
  letter-spacing: -.08em;
  font-weight: 700;
}

.mini-site-nav>b span {
  font-family: var(--serif);
  font-style: italic;
  margin-inline: 2px;
  font-weight: 400;
}

.mini-site-nav>div {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 6px;
}

.mini-nav-cta {
  display: flex;
  align-items: center;
  gap: 4px;
  border: 1px solid #a69194;
  padding: 4px 6px;
}

.mini-nav-cta .icon {
  width: 9px;
  height: 9px;
}

.mini-site-hero {
  height: 300px;
  position: relative;
  padding: 26px 24px;
  background: linear-gradient(180deg,#2815186e 0%,#22141610 65%),url("/assets/form-fur-hero.webp") center bottom/cover;
  color: #fcf9ed;
  overflow: hidden;
}

.mini-site-label {
  font-family: var(--mono);
  font-size: 6px;
  letter-spacing: .12em;
}

.mini-site-title {
  font-family: var(--serif);
  font-size: 31px;
  letter-spacing: -.05em;
  line-height: 1.07;
  margin-top: 12px;
  font-weight: 400;
  text-shadow: 0 1px 8px #301d2015;
}

.mini-site-title em {
  color: #f6f3df;
  letter-spacing: -.045em;
}

.mini-site-button {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  background: #f3f0dd;
  color: #423033;
  font-size: 7px;
  padding: 8px 10px;
  margin-top: 16px;
}

.mini-site-button .icon {
  width: 10px;
  height: 10px;
}

.mini-site-counter {
  position: absolute;
  bottom: 18px;
  right: 20px;
  font-family: var(--mono);
  font-size: 7px;
  letter-spacing: .08em;
}

.mini-site-bottom {
  display: flex;
  justify-content: space-between;
  padding: 14px 21px;
  gap: 15px;
}

.mini-site-bottom span {
  font-family: var(--mono);
  font-size: 6px;
  letter-spacing: .05em;
}

.large-site .mini-site-nav {
  height: 62px;
  padding-inline: 36px;
}

.large-site .mini-site-nav>b {
  font-size: 20px;
}

.large-site .mini-site-nav>div {
  font-size: 10px;
  gap: 25px;
}

.large-site .mini-site-hero {
  height: 520px;
  padding: 40px 38px;
}

.large-site .mini-site-label {
  font-size: 10px;
}

.large-site .mini-site-title {
  font-size: 56px;
  margin-top: 23px;
}

.large-site .mini-site-button {
  font-size: 12px;
  padding: 14px 18px;
  margin-top: 25px;
}

.large-site .mini-site-button .icon {
  width: 16px;
  height: 16px;
}

.large-site .mini-site-counter {
  font-size: 11px;
}

.large-site .mini-site-bottom {
  padding: 22px 37px;
}

.large-site .mini-site-bottom span {
  font-size: 9px;
}

.mini-ui-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}

.mini-brand {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 27px;
  letter-spacing: -1px;
}

.mini-brand .brand-dot {
  width: 5px;
  height: 5px;
  margin-left: 1px;
}

.mini-status {
  font-size: 7px;
  border: 1px solid #d9cdcf;
  padding: 4px 7px;
  color: #7b696c;
}

.mini-eyebrow {
  display: block;
  font-family: var(--mono);
  font-size: 7px;
  letter-spacing: .08em;
  color: #836e72;
}

.mini-booking {
  background: #faf9f2;
  color: #3f2f32;
  padding: 21px 24px;
}

.mini-booking-body {
  padding: 20px 0 0;
}

.mini-booking h3 {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 400;
  margin-top: 9px;
  letter-spacing: -.05em;
}

.mini-booking h3 em {
  color: #70575b;
  letter-spacing: -.05em;
}

.mini-appointment {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 0;
  margin-top: 8px;
  border-bottom: 1px solid #e4d9db;
}

.mini-appointment>.icon {
  width: 19px;
  height: 19px;
  color: #7e5d62;
}

.mini-appointment>div {
  display: grid;
  gap: 4px;
  font-size: 11px;
}

.mini-appointment>div>span {
  font-size: 8px;
  color: #807073;
}

.mini-ui-arrow {
  margin-left: auto;
}

.mini-dates {
  display: flex;
  gap: 7px;
  justify-content: space-between;
  margin-top: 14px;
}

.mini-dates>div {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  border: 1px solid #e2d4d6;
  padding: 10px 2px;
}

.mini-dates small {
  font-size: 6px;
}

.mini-dates b {
  font-size: 13px;
}

.mini-dates .selected {
  background: #775359;
  border-color: #775359;
  color: #fcfcf4;
}

.mini-times {
  display: flex;
  gap: 8px;
  margin-top: 9px;
}

.mini-times>span {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  gap: 5px;
  border: 1px solid #e2d4d6;
  padding: 7px 0;
  font-size: 8px;
}

.mini-times .selected {
  border-color: #967a7f;
  color: #603c42;
  background: #ecdfe1;
}

.mini-times .icon {
  width: 9px;
  height: 9px;
}

.mini-booking-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-top: 17px;
  font-size: 8px;
}

.mini-booking-footer>span {
  color: #8a7c7e;
}

.mini-booking-footer b {
  display: flex;
  align-items: center;
  gap: 8px;
}

.mini-booking-footer .icon {
  width: 13px;
  height: 13px;
}

.hero-view[data-hero-panel=booking] {
  padding: 8px 48px 25px;
}

.hero-view[data-hero-panel=booking] .hero-browser {
  max-width: 330px;
  margin-inline: auto;
  width: 100%;
  transform: rotate(1deg);
}

.hero-view[data-hero-panel=booking] .mini-booking {
  padding: 12px 22px;
}

.hero-view[data-hero-panel=booking] .mini-booking-body {
  padding-top: 8px;
}

.hero-view[data-hero-panel=booking] .mini-booking h3 {
  font-size: 25px;
}

.mini-portal {
  display: flex;
  background: #f9f2f3;
  color: #413436;
  min-height: 310px;
}

.mini-portal-sidebar {
  width: 44px;
  flex: none;
  background: #ebdfe1;
  border-right: 1px solid #e0d2d4;
  padding: 16px 8px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
}

.portal-symbol {
  font-family: var(--serif);
  font-size: 25px;
  font-weight: bold;
  line-height: 1;
  margin-bottom: 10px;
}

.mini-portal-sidebar>span:not(.portal-symbol) {
  width: 28px;
  height: 27px;
  display: grid;
  place-items: center;
  color: #a08f92;
}

.mini-portal-sidebar .icon {
  width: 13px;
  height: 13px;
}

.mini-portal-sidebar .side-active {
  background: #d8c3c6;
  color: #72444c !important;
}

.mini-portal-sidebar>i {
  font-size: 8px;
  font-style: normal;
  display: grid;
  place-items: center;
  border-radius: 100%;
  width: 22px;
  height: 22px;
  background: #d9c8cb;
  margin-top: auto;
}

.mini-portal-main {
  flex: 1;
  padding: 19px 20px;
  min-width: 0;
}

.mini-portal .mini-ui-header {
  font-size: 7px;
  letter-spacing: .04em;
  margin-bottom: 21px;
}

.mini-portal-main h3 {
  font-size: 21px;
  margin-top: 8px;
}

.mini-portal-project {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 22px;
}

.mini-project-image {
  background: url("/assets/form-fur-hero.webp") center/cover;
  width: 45px;
  height: 47px;
}

.mini-portal-project>div {
  display: grid;
  gap: 5px;
}

.mini-portal-project small {
  font-size: 5px;
  color: #9e8e91;
}

.mini-portal-project b {
  font-size: 11px;
}

.mini-portal-project>div>span {
  font-size: 7px;
  color: #8a7579;
}

.mini-pip {
  width: 6px;
  height: 6px;
  background: #8a5f66;
  border-radius: 50%;
  margin-left: auto;
}

.mini-progress {
  display: flex;
  gap: 4px;
  margin-top: 18px;
}

.mini-progress i {
  height: 3px;
  flex: 1;
  background: #e6d7da;
}

.mini-progress i:nth-child(-n/**/+2) {
  background: #9a6b73;
}

.mini-portal-columns {
  display: flex;
  gap: 20px;
  margin-top: 22px;
}

.mini-portal-columns>div {
  flex: 1;
  display: grid;
  gap: 6px;
}

.mini-portal-columns small {
  font-size: 6px;
  color: #958184;
}

.mini-portal-columns b {
  font-size: 10px;
  font-weight: 600;
}

.mini-portal-columns span {
  font-size: 6px;
  color: #968487;
}

.mini-portal-columns .icon {
  width: 8px;
  height: 8px;
}

.mini-message {
  display: flex;
  gap: 7px;
  align-items: center;
  border-top: 1px solid #e6d5d8;
  margin-top: 22px;
  padding-top: 13px;
}

.mini-message .avatar {
  width: 25px;
  height: 25px;
  font-size: 7px;
}

.mini-message>div:last-child {
  display: grid;
  gap: 4px;
}

.mini-message b {
  font-size: 7px;
  font-weight: 500;
}

.mini-message span {
  font-size: 6px;
  color: #9b8488;
}

.hero-view[data-hero-panel=portal] {
  padding: 12px 25px 30px;
}

.hero-view[data-hero-panel=portal] .hero-browser {
  margin-right: 0;
  transform: rotate(-1deg);
}

.mini-workflow {
  padding: 25px;
  color: #554044;
  background: #f9f2f3;
}

.mini-workflow>.mini-ui-header {
  font-size: 16px;
  margin-bottom: 30px;
}

.mini-workflow h3 {
  font-size: 31px;
  margin-bottom: 28px;
}

.mini-workflow h3 em {
  color: #89666c;
}

.flow-columns {
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: 9px;
}

.flow-columns>div>span {
  font-size: 10px;
  font-weight: bold;
}

.flow-item {
  border: 1px solid #e3d5d7;
  padding: 10px 9px;
  margin-top: 10px;
  background: white;
  min-height: 87px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.flow-tag {
  font-size: 5px;
  font-style: normal;
  color: #977f83;
}

.flow-item b {
  font-size: 8px;
  font-weight: 600;
  line-height: 1.4;
}

.flow-item small {
  font-size: 5px;
  color: #937b7f;
}

.flow-item small .icon {
  width: 8px;
  height: 8px;
}

.mini-search {
  padding: 30px;
  background: #fdfdf7;
  color: #4c373b;
  min-height: 300px;
}

.mini-search-query {
  border: 1px solid #e1ced1;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 15px;
  border-radius: 30px;
  font-size: 11px;
}

.mini-search-query>.icon {
  width: 14px;
  height: 14px;
  color: #9b7b80;
}

.search-tabs {
  display: flex;
  gap: 20px;
  font-size: 9px;
  border-bottom: 1px solid #e6d5d8;
  padding: 18px 8px 11px;
}

.search-tabs b {
  font-weight: 500;
  color: #906970;
}

.search-tabs span {
  color: #ab969a;
}

.search-result {
  padding: 20px 8px 0;
}

.search-result>span {
  display: block;
  font-size: 6px;
  color: #987e82;
}

.search-result>small {
  display: block;
  font-size: 8px;
  padding-top: 13px;
}

.search-result h3 {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -.02em;
  line-height: 1.3;
  margin-top: 9px;
  color: #684a4f;
}

.search-result p {
  font-size: 8px;
  line-height: 1.6;
  margin-top: 9px;
  color: #967e82;
}

.search-result>div {
  display: flex;
  gap: 20px;
  font-size: 7px;
  margin-top: 12px;
  color: #7a585e;
}

.search-note {
  display: flex;
  gap: 15px;
  align-items: center;
  border-top: 1px solid #e6d5d8;
  padding: 20px 8px 0;
  margin-top: 20px;
}

.search-note>.icon {
  width: 25px;
  height: 25px;
  color: #916970;
}

.search-note p {
  font-size: 12px;
  line-height: 1.6;
}

.search-note b {
  font-weight: 500;
}

/* Project presentation */
.projects-section {
  padding-top: 84px;
}

.project-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 27px 32px;
  align-items: start;
}

.project-featured {
  grid-row: span 2;
}

.project-art {
  position: relative;
  background: #dfd4d6;
  overflow: hidden;
  isolation: isolate;
}

.project-featured .project-art {
  height: 504px;
  padding: 57px 32px;
}

.project-featured .browser {
  transform: rotate(-4deg);
  box-shadow: 0 15px 25px #33252720;
  transition: transform .5s var(--ease);
  margin-top: 5px;
}

.project-featured:hover .browser {
  transform: rotate(-3deg) scale(1.02);
}

.project-featured .mini-site-hero {
  height: 250px;
}

.project-booking .project-art {
  height: 203px;
  padding: 22px 55px 0;
  background: #e8e0d3;
}

.project-booking .mini-booking {
  transform: rotate(4deg);
  width: 88%;
  min-width: 240px;
  max-width: 330px;
  margin: auto;
  box-shadow: 0 8px 30px #6d543a12;
  transition: transform .45s var(--ease);
}

.project-booking .mini-booking .mini-booking-body {
  padding-top: 10px;
}

.project-booking .mini-booking h3 {
  font-size: 24px;
}

.project-booking .mini-appointment {
  margin-top: 2px;
}

.project-booking:hover .mini-booking {
  transform: rotate(3deg) scale(1.02);
}

.project-portal .project-art {
  height: 205px;
  padding: 23px 22px 0;
  background: #e4d6d8;
}

.project-portal .mini-portal {
  min-height: 260px;
  transform: rotate(-3deg);
  box-shadow: 0 8px 30px #4b303510;
  transition: transform .45s var(--ease);
}

.project-portal:hover .mini-portal {
  transform: rotate(-2deg) scale(1.02);
}

.project-caption {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 12px;
  padding-top: 15px;
}

.project-caption .mono {
  font-size: 9px;
  letter-spacing: .02em;
}

.project-caption h3 {
  font-size: 22px;
  margin-top: 6px;
}

.project-number {
  font-family: var(--serif);
  font-style: italic;
  color: #99878a;
  font-size: 21px;
  line-height: 1;
}

.project-open {
  position: absolute;
  right: 16px;
  bottom: 17px;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  background: #f8f7ee;
  border-radius: 50%;
  box-shadow: 0 2px 8px #21151715;
  transition: background .2s,transform .2s;
  z-index: 3;
}

.project-open .icon {
  width: 17px;
  height: 17px;
}

.project-card:hover .project-open {
  background: var(--accent);
  color: white;
  transform: translate(2px,-2px);
}

.section-footnote {
  font-size: 11px;
  color: #867679;
  margin-top: 25px;
  line-height: 1.65;
}

.project-detail-visual {
  max-width: 1170px;
}

.project-detail-visual .browser {
  border-radius: 8px 8px 0 0;
}

.project-detail-visual .browser-bar {
  height: 38px;
}

.project-detail-visual .browser-bar>span {
  font-size: 9px;
}

.project-detail-visual .browser-dots i {
  width: 6px;
  height: 6px;
}

.project-story {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 100px;
  border-bottom: 1px solid var(--line);
}

.project-story aside h2 {
  font-size: 33px;
}

.project-story aside>p {
  margin-top: 30px;
  max-width: 290px;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.tag-list>span {
  border: 1px solid var(--line);
  font-size: 11px;
  padding: 6px 10px;
}

.project-story>div>div+div {
  margin-top: 32px;
}

.project-story h3 {
  font-size: 22px;
  margin-bottom: 13px;
}

.project-story p {
  color: var(--muted);
  line-height: 1.85;
}

/* Services */
.services-section {
  background: #efefe7;
  border-block: 1px solid var(--line);
}

.services-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: start;
}

.service-list {
  border-top: 1px solid #cfc0c2;
}

.service-item {
  border-bottom: 1px solid #cfc0c2;
  position: relative;
}

.service-item::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -1px;
  width: 2px;
  background: var(--accent);
  opacity: 0;
  transition: opacity .2s;
}

.service-item.is-active::before {
  opacity: 1;
}

.service-select {
  width: 100%;
  display: flex;
  gap: 25px;
  align-items: center;
  text-align: left;
  padding: 22px 13px 22px 18px;
  border: 0;
  background: transparent;
  color: #8b7d7f;
  min-height: 86px;
  transition: color .2s,background .2s;
}

.service-select>.service-no {
  font-family: var(--mono);
  font-size: 10px;
}

.service-select>span:nth-child(2) {
  flex: 1;
  min-width: 0;
}

.service-select b {
  font-size: 24px;
  font-weight: 550;
  letter-spacing: -.045em;
  line-height: 1.2;
}

.service-select small {
  display: block;
  font-size: 11px;
  color: #928083;
  margin-top: 5px;
}

.service-select>.icon {
  width: 18px;
  height: 18px;
  transition: transform .2s;
  color: #a9989b;
}

.service-item.is-active .service-select {
  background: #eadfe1;
  color: var(--ink);
}

.service-item.is-active .service-select>.icon {
  color: var(--accent);
}

.service-select:hover {
  color: var(--ink);
  background: #ebe2e3;
}

.service-panel {
  padding-top: 0;
}

.service-panel>[data-service-panel] {
  animation: fade-in .22s ease;
}

.service-preview {
  padding: 32px;
  background: #e4d7d9;
  min-height: 334px;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.service-preview>.mini-website {
  width: 100%;
  box-shadow: 0 8px 20px #4f2d330e;
}

.service-preview .mini-site-hero {
  height: 248px;
}

.service-preview>.mini-booking {
  width: min(100%,330px);
  box-shadow: 0 8px 20px #4f2d330e;
}

.service-preview>.mini-portal {
  width: 100%;
  box-shadow: 0 8px 20px #4f2d330e;
}

.service-preview>.mini-workflow,.service-preview>.mini-search {
  width: 100%;
  box-shadow: 0 8px 20px #4f2d330e;
}

.service-panel-caption {
  padding-top: 25px;
}

.service-panel-caption .eyebrow {
  font-size: 9px;
  margin-bottom: 12px;
  color: #7f666a;
}

.service-panel-caption p {
  font-size: 13px;
  line-height: 1.8;
  color: var(--muted);
}

.service-panel-caption .text-link {
  margin-top: 12px;
  font-size: 12px;
}

.service-detail-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 70px;
  padding-bottom: 75px;
  align-items: start;
}

.service-detail-grid>aside {
  padding: 15px 0;
}

.service-detail-grid h2 {
  font-size: 35px;
}

.service-detail-grid .eyebrow {
  margin-bottom: 20px;
}

.service-detail-visual {
  padding: 35px;
  background: #e7dbdd;
  position: sticky;
  top: 110px;
}

.service-detail-visual .large-site .mini-site-hero {
  height: 380px;
}

.service-detail-visual .large-site .mini-site-title {
  font-size: 35px;
}

.service-detail-visual .large-site .mini-site-nav {
  padding: 0 20px;
  height: 40px;
}

.service-detail-visual .large-site .mini-site-nav>b {
  font-size: 14px;
}

.service-detail-visual .large-site .mini-site-nav>div {
  font-size: 7px;
  gap: 12px;
}

.service-detail-visual .large-site .mini-site-label {
  font-size: 7px;
}

.service-detail-visual .large-site .mini-site-hero {
  padding: 25px 22px;
}

.service-detail-visual .large-site .mini-site-bottom {
  padding: 14px;
}

.service-detail-visual .large-site .mini-site-bottom span {
  font-size: 6px;
}

.feature-list {
  margin-top: 25px;
  display: grid;
  gap: 16px;
}

.feature-list li {
  display: flex;
  gap: 13px;
  align-items: start;
  font-size: 14px;
}

.feature-list .icon {
  color: var(--accent);
  width: 16px;
  height: 16px;
  margin-top: 3px;
}

.service-cost {
  display: grid;
  gap: 8px;
  border-top: 1px solid var(--line);
  margin-top: 29px;
  padding-top: 24px;
}

.service-cost>span {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--muted);
}

.service-cost>b {
  font-size: 25px;
  letter-spacing: -.04em;
}

.service-cost>small,.service-cost>p {
  font-size: 12px;
  color: var(--muted);
}

.service-cost+.button {
  margin-top: 24px;
}

.service-next {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  border-block: 1px solid var(--line);
}

.service-next>div:last-child {
  padding-top: 20px;
  color: var(--muted);
  line-height: 1.8;
}

.service-next .text-link {
  margin-top: 20px;
  color: var(--ink);
}

/* Demonstration with real client-side state */
.booking-section {
  background: var(--dark);
  color: var(--paper);
}

.demo-section-grid {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: 65px;
  align-items: center;
}

.demo-section-copy .eyebrow {
  color: #bebdac;
  font-size: 10px;
}

.demo-section-copy .section-index {
  color: #9f8c8f;
}

.demo-section-copy h2 {
  font-size: 57px;
  line-height: 1.07;
}

.demo-section-copy h2 em {
  color: #c8c7b1;
}

.demo-section-copy>p {
  font-size: 16px;
  line-height: 1.85;
  max-width: 290px;
  margin-top: 24px;
}

.demo-section-copy>.subtle-light {
  font-size: 13px;
  color: #b5a4a7;
  margin-top: 18px;
  line-height: 1.85;
}

.demo-benefit {
  display: flex;
  gap: 17px;
  border-top: 1px solid #514043;
  margin-top: 23px;
  padding-top: 16px;
  font-size: 12px;
  color: #c7b8ba;
}

.demo-benefit+.demo-benefit {
  margin-top: 14px;
}

.demo-benefit>span {
  font-family: var(--mono);
  font-size: 9px;
  color: #9c8488;
}

.light-link {
  color: #d4c4c7;
  border-color: #7d666a;
  margin-top: 30px;
  font-size: 12px;
}

.light-link:hover {
  color: white;
  border-color: white;
}

.demo-app {
  background: #f9f9f0;
  color: #402d30;
  border: 1px solid #dccdd0;
  min-width: 0;
  box-shadow: 0 15px 40px #160b0d0a;
}

.demo-toolbar {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
  padding: 17px 24px;
  border-bottom: 1px solid #e0d1d3;
  min-height: 68px;
}

.demo-brand {
  font-family: var(--serif);
  font-size: 28px;
  letter-spacing: -.08em;
  line-height: 1;
  font-weight: 550;
}

.demo-brand .brand-dot {
  width: 5px;
  height: 5px;
}

.demo-view-tabs {
  display: flex;
  align-items: center;
  border: 1px solid #dfcccf;
  background: #f0e6e8;
  padding: 3px;
}

.demo-view-tabs>button {
  border: 0;
  padding: 7px 11px;
  background: transparent;
  color: #7f6569;
  font-size: 10px;
  min-height: 32px;
}

.demo-view-tabs>button[aria-pressed=true] {
  color: #462b30;
  background: #fdfdf5;
  box-shadow: 0 1px 4px #50222a12;
}

.demo-toolbar .icon-button {
  border: 0;
  color: #845e64;
  min-width: 36px;
  min-height: 36px;
  padding: 5px;
}

.demo-toolbar .icon-button>.icon {
  width: 17px;
  height: 17px;
}

.demo-content {
  padding: 25px 30px;
  min-height: 460px;
}

.demo-noscript {
  padding: 60px 10px;
  max-width: 400px;
}

.demo-noscript p {
  margin-top: 20px;
}

.demo-step-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 27px;
  gap: 18px;
}

.demo-step-top .eyebrow {
  font-size: 8px;
  margin: 0;
  color: #916f75;
}

.demo-step-indicator {
  display: flex;
  gap: 4px;
}

.demo-step-indicator>span {
  width: 19px;
  height: 3px;
  background: #e3d2d5;
}

.demo-step-indicator>span.current {
  background: #8d5e66;
}

.demo-content h3 {
  font-size: 28px;
  letter-spacing: -.04em;
  line-height: 1.1;
}

.demo-subtitle {
  font-size: 11px;
  color: #937b7f;
  margin-top: 10px;
}

.demo-service-options {
  display: grid;
  gap: 9px;
  margin-top: 25px;
}

.demo-service-option {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid #e2ccd0;
  padding: 13px 15px;
  background: transparent;
  text-align: left;
  width: 100%;
  min-height: 67px;
}

.demo-radio {
  width: 14px;
  height: 14px;
  border: 1px solid #c4a3a8;
  border-radius: 50%;
  flex: none;
  display: grid;
  place-items: center;
}

.demo-service-option[aria-pressed=true] {
  border-color: #916068;
  background: #f1e3e5;
}

.demo-service-option[aria-pressed=true] .demo-radio {
  background: #8b5760;
  border-color: #8b5760;
}

.demo-service-option[aria-pressed=true] .demo-radio::after {
  content: "";
  width: 4px;
  height: 4px;
  background: #ffffff;
  border-radius: 50%;
}

.demo-service-option>span:nth-child(2) {
  flex: 1;
  display: grid;
  gap: 3px;
}

.demo-service-option b {
  font-size: 12px;
  line-height: 1.4;
  font-weight: 550;
}

.demo-service-option small {
  font-size: 10px;
  color: #8f7176;
  line-height: 1.4;
}

.demo-service-option>span:last-child {
  font-family: var(--mono);
  font-size: 9px;
  color: #895f66;
}

.demo-actionbar {
  margin-top: 23px;
  padding-top: 18px;
  border-top: 1px solid #e5d3d6;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.demo-actionbar>.small {
  font-size: 10px;
  color: #96747a;
}

.demo-button {
  border: 1px solid #7d464f;
  color: #fffdf4;
  background: #7d464f;
  min-height: 41px;
  padding: 10px 15px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  font-size: 11px;
}

.demo-button:hover {
  background: #64373f;
}

.demo-button>.icon {
  width: 15px;
  height: 15px;
}

.demo-back {
  border: 0;
  background: transparent;
  color: #8c656b;
  font-size: 11px;
  padding: 10px 0;
  min-height: 40px;
}

.demo-back:hover {
  color: #4c292f;
}

.demo-bottom {
  border-top: 1px solid #e0d1d3;
  font-family: var(--mono);
  font-size: 7px;
  letter-spacing: .05em;
  display: flex;
  align-items: center;
  gap: 7px;
  color: #977b80;
  padding: 12px 22px;
}

.demo-bottom>span:last-child {
  margin-left: auto;
  letter-spacing: 0;
  font-family: var(--sans);
  font-size: 8px;
}

.demo-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #9b747b;
}

.demo-dates {
  display: flex;
  gap: 8px;
  margin-top: 20px;
}

.demo-date {
  background: transparent;
  border: 1px solid #e1c9cd;
  padding: 9px 4px;
  flex: 1;
  display: grid;
  gap: 4px;
  place-items: center;
  min-width: 0;
  min-height: 65px;
}

.demo-date>span {
  font-size: 8px;
  color: #977a7f;
}

.demo-date>b {
  font-size: 18px;
  font-weight: 500;
}

.demo-date[aria-pressed=true] {
  background: #88525b;
  color: #fcf5f6;
  border-color: #88525b;
}

.demo-date[aria-pressed=true]>span {
  color: #eedcdf;
}

.demo-month {
  font-size: 10px;
  color: #8c6a70;
  margin-top: 15px;
}

.demo-times {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 8px;
  margin-top: 18px;
}

.demo-time {
  background: transparent;
  border: 1px solid #e1c9cd;
  font-size: 11px;
  min-height: 38px;
  padding: 6px;
}

.demo-time[aria-pressed=true] {
  background: #eddadd;
  color: #663840;
  border-color: #976b72;
}

.demo-time:hover,.demo-date:hover {
  border-color: #8d5a63;
}

.demo-summary {
  margin-top: 22px;
  border-top: 1px solid #e3cbcf;
}

.demo-summary>div {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  padding: 13px 0;
  border-bottom: 1px solid #e3cbcf;
  font-size: 12px;
}

.demo-summary dt {
  color: #98767c;
}

.demo-summary dd {
  margin: 0;
  text-align: right;
}

.demo-message {
  padding: 14px;
  background: #f1e3e5;
  margin-top: 20px;
  font-size: 11px;
  color: #8b656b;
}

.demo-success-icon {
  width: 47px;
  height: 47px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #ebd7da;
  color: #814c55;
  margin-bottom: 21px;
}

.demo-success-icon>.icon {
  width: 25px;
  height: 25px;
}

.demo-company-empty {
  margin-top: 30px;
  padding: 23px;
  background: #f1e4e6;
  display: grid;
  gap: 15px;
  color: #8e6c72;
  font-size: 12px;
}

.demo-company-booking {
  border: 1px solid #e0c8cc;
  margin-top: 25px;
  padding: 20px;
  background: #fdfdf7;
  display: flex;
  gap: 19px;
  align-items: start;
}

.company-date {
  background: #edd9dc;
  min-width: 48px;
  display: grid;
  place-items: center;
  padding: 10px 7px;
  gap: 4px;
}

.company-date b {
  font-size: 21px;
  line-height: 1;
}

.company-date small {
  font-size: 8px;
}

.company-details {
  flex: 1;
  min-width: 0;
}

.company-details h4 {
  font-size: 13px;
  line-height: 1.4;
  font-weight: 600;
}

.company-details p {
  font-size: 10px;
  color: #96777c;
  margin-top: 6px;
}

.company-status {
  font-size: 8px;
  background: #f2e3e6;
  color: #905861;
  display: inline-flex;
  padding: 4px 6px;
  margin-top: 12px;
}

.demo-company-note {
  font-size: 11px;
  color: #98767c;
  margin-top: 24px;
  line-height: 1.8;
}

.demo-company-booking .text-button {
  font-size: 10px;
}

.project-detail-visual>.demo-app {
  max-width: 850px;
  margin: auto;
}

.project-detail-visual.visual-booking {
  background: #e6d7da;
  padding: 45px;
}

/* Process, pricing and team */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4,minmax(0,1fr));
  gap: 28px;
}

.process-step-top {
  display: flex;
  gap: 18px;
  align-items: center;
  margin-bottom: 24px;
}

.process-step-top>span {
  font-family: var(--mono);
  font-size: 10px;
  color: #91767a;
}

.process-step-top>i {
  height: 1px;
  background: #d1bfc2;
  flex: 1;
  position: relative;
}

.process-step-top>i::before {
  content: "";
  position: absolute;
  width: 4px;
  height: 4px;
  top: -1px;
  left: 0;
  border-radius: 50%;
  background: #a17e84;
}

.artifact {
  height: 127px;
  background: #eee3e5;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 25px;
}

.process-step h3 {
  font-size: 22px;
}

.process-step>p {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.85;
  margin-top: 12px;
  min-height: 88px;
}

.step-deliver {
  display: flex;
  gap: 7px;
  font-size: 9px;
  align-items: center;
  border-top: 1px solid var(--line);
  padding-top: 15px;
  margin-top: 16px;
  color: #785e62;
}

.step-deliver>.icon {
  width: 13px;
  height: 13px;
}

.artifact-brief {
  width: 130px;
  background: #f6f6ed;
  padding: 12px 15px;
  box-shadow: 2px 5px 10px #401d230e;
  transform: rotate(-6deg);
  display: grid;
  gap: 8px;
}

.artifact-brief>span {
  font-family: var(--mono);
  font-size: 5px;
  letter-spacing: .04em;
  color: #90676e;
}

.artifact-brief>b {
  font-size: 18px;
  line-height: 1.1;
  font-weight: 500;
  letter-spacing: -.04em;
}

.artifact-brief>i {
  font-family: var(--serif);
  font-size: 9px;
  color: #906c72;
  font-weight: 400;
}

.artifact-plan {
  width: 135px;
  padding: 14px;
  background: #f8f8ee;
  transform: rotate(4deg);
  box-shadow: 2px 5px 10px #401d230e;
}

.artifact-plan>span {
  font-family: var(--mono);
  font-size: 5px;
  color: #976e75;
}

.artifact-plan>div {
  margin-top: 12px;
  display: grid;
  gap: 6px;
}

.artifact-plan i {
  background: #decacd;
  height: 2px;
  width: 100%;
  display: block;
}

.artifact-plan i:nth-child(2) {
  width: 75%;
}

.artifact-plan i:nth-child(3) {
  width: 84%;
}

.artifact-plan>b {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 14px;
  font-size: 7px;
  font-weight: 500;
}

.artifact-plan .icon {
  width: 10px;
  height: 10px;
  color: #925962;
}

.artifact-build {
  width: 147px;
  border: 1px solid #cbb7ba;
  border-radius: 3px 3px 0 0;
  background: #f9f9f0;
  transform: rotate(-3deg);
}

.artifact-build>span {
  display: flex;
  gap: 3px;
  padding: 8px;
  border-bottom: 1px solid #dcc8cb;
}

.artifact-build>span>i {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #bea2a7;
}

.artifact-build>div {
  display: flex;
  gap: 10px;
  padding: 12px;
}

.artifact-build>div>i {
  background: url("/assets/form-fur-hero.webp") center/cover;
  width: 47px;
  height: 46px;
}

.artifact-build>div>div {
  flex: 1;
  display: grid;
  align-content: start;
  gap: 6px;
  padding-top: 6px;
}

.artifact-build b {
  background: #dec5c9;
  height: 3px;
  width: 100%;
}

.artifact-build b:nth-child(2) {
  width: 75%;
}

.artifact-build b:nth-child(3) {
  width: 45%;
  height: 10px;
  background: #9e7a80;
  margin-top: 4px;
}

.artifact-check {
  padding: 18px;
  background: #f8f8ee;
  transform: rotate(3deg);
  box-shadow: 2px 5px 10px #401d230e;
  display: grid;
  gap: 10px;
}

.artifact-check>span {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 7px;
  color: #724d53;
}

.artifact-check .icon {
  width: 10px;
  height: 10px;
}

.step-you {
  padding-top: 20px;
  margin-top: 20px;
  border-top: 1px solid var(--line);
}

.step-you>b {
  font-size: 10px;
  font-family: var(--mono);
  font-weight: 400;
  color: var(--accent);
  text-transform: uppercase;
}

.step-you>p {
  font-size: 12px;
  line-height: 1.8;
  margin-top: 7px;
  color: var(--muted);
}

.pricing-section {
  background: #eee5e7;
  border-block: 1px solid var(--line);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  border: 1px solid #d5c3c6;
}

.price-card {
  display: flex;
  flex-direction: column;
  padding: 32px 31px;
  background: #f7f7ed;
}

.price-card+.price-card {
  border-left: 1px solid #d5c3c6;
}

.price-card .eyebrow {
  font-size: 8px;
  color: #896c71;
  margin-bottom: 22px;
}

.price-card h3 {
  font-size: 28px;
}

.price-amount {
  margin-top: 25px;
  min-height: 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
}

.price-amount>span {
  font-size: 10px;
  line-height: 1.2;
  margin-bottom: 7px;
  color: #8e6f74;
}

.price-amount>b {
  font-size: 40px;
  line-height: 1.05;
  letter-spacing: -.065em;
  font-weight: 550;
}

.price-amount>small {
  font-size: 9px;
  color: #8f787c;
  margin-top: 10px;
}

.price-card:last-child .price-amount>b {
  font-size: 30px;
  line-height: 1.2;
}

.price-card>p {
  font-size: 12px;
  color: #887074;
  line-height: 1.85;
  margin-top: 15px;
  min-height: 68px;
}

.price-card>ul {
  margin-top: 27px;
  padding-top: 23px;
  border-top: 1px solid #e1cfd2;
  display: grid;
  gap: 12px;
  flex: 1;
}

.price-card li {
  display: flex;
  gap: 10px;
  font-size: 11px;
  line-height: 1.5;
  align-items: start;
  color: #7a6064;
}

.price-card li .icon {
  width: 13px;
  height: 13px;
  margin-top: 2px;
  color: #8c565f;
}

.price-timing {
  font-size: 9px;
  color: #937479;
  display: block;
  margin-top: 26px;
}

.price-card .button {
  margin-top: 14px;
  width: 100%;
  font-size: 11px;
  min-height: 44px;
  padding: 11px 15px;
  gap: 12px;
}

.price-featured {
  background: #3d2d30;
  color: #f6f6ec;
  border-color: #3d2d30 !important;
}

.price-featured .eyebrow {
  color: #c39fa5;
}

.price-featured .price-amount>small,.price-featured .price-amount>span,.price-featured>p,.price-featured li,.price-featured .price-timing {
  color: #c1a6aa;
}

.price-featured li .icon {
  color: #c999a1;
}

.price-featured>ul {
  border-color: #614449;
}

.price-disclosure {
  display: flex;
  gap: 14px;
  margin-top: 23px;
  max-width: 820px;
}

.price-disclosure>.icon {
  width: 16px;
  height: 16px;
  color: #8c666c;
  margin-top: 2px;
}

.price-disclosure>p {
  color: #897074;
  font-size: 11px;
  line-height: 1.9;
}

.price-disclosure b {
  color: #624c50;
  font-weight: 600;
}

.team-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.team-intro>p {
  font-size: 14px;
  line-height: 1.9;
  color: var(--muted);
  max-width: 440px;
  margin-top: 24px;
}

.team-intro>p+p {
  font-size: 12px;
  margin-top: 16px;
}

.team-intro>.text-link {
  margin-top: 20px;
}

.team-people {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  min-width: 0;
}

.person {
  min-width: 0;
}

.person-monogram {
  aspect-ratio: 1/1.14;
  background: #dfdfd2;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #dcd0d2;
}

.person-1 .person-monogram {
  background: #e5ddd0;
  border-color: #e1d7c9;
}

.person-monogram>span {
  font-family: var(--serif);
  font-size: clamp(55px,7.5vw,111px);
  font-weight: 400;
  font-style: italic;
  letter-spacing: -.105em;
  line-height: 1;
  color: #705459;
  transform: translateX(-5px);
}

.person-1 .person-monogram>span {
  color: #9b7d5d;
}

.person-monogram::before {
  content: "";
  position: absolute;
  width: 80%;
  height: 80%;
  border: 1px solid #b7a1a548;
  transform: rotate(12deg);
}

.person-1 .person-monogram::before {
  border-color: #b5a99050;
  transform: rotate(-12deg);
}

.person-monogram>i {
  font-style: normal;
  position: absolute;
  bottom: 13px;
  right: 14px;
  font-size: 21px;
  color: #a58b8f;
}

.person-1 .person-monogram>i {
  color: #b2a28c;
}

.person-info {
  padding-top: 15px;
}

.person-info>h3 {
  font-size: 18px;
  line-height: 1.3;
  letter-spacing: -.035em;
}

.person-info>span {
  display: block;
  font-family: var(--mono);
  font-size: 7px;
  letter-spacing: .03em;
  color: #917c7f;
  margin-top: 6px;
}

.team-caption {
  grid-column: 1/-1;
  font-size: 10px;
  color: #937a7e;
  border-top: 1px solid var(--line);
  padding-top: 17px;
  margin-top: 10px;
}

/* Questions and editorial content */
.faq-section {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 95px;
  border-top: 1px solid var(--line);
}

.faq-section>div:first-child>p {
  font-size: 13px;
  line-height: 1.8;
  max-width: 275px;
  color: var(--muted);
  margin-top: 22px;
}

.faq-section>div:first-child>.text-link {
  margin-top: 22px;
}

.faq-list {
  border-top: 1px solid #d4c0c3;
}

.faq-item {
  border-bottom: 1px solid #d4c0c3;
}

.faq-item>summary {
  display: flex;
  gap: 19px;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.5;
  list-style: none;
}

.faq-item>summary::-webkit-details-marker {
  display: none;
}

.faq-item>summary::marker {
  content: "";
}

.faq-item>summary>span:nth-child(2) {
  flex: 1;
}

.faq-no {
  font-family: var(--mono);
  font-size: 9px;
  color: #99797e;
}

.faq-item>summary>.icon {
  width: 15px;
  height: 15px;
  color: #936f75;
  transition: transform .2s;
}

.faq-item[open]>summary>.icon {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 36px 23px;
}

.faq-answer p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.85;
}

.faq-item[open] .faq-answer {
  animation: fade-up .25s var(--ease);
}

.article-section {
  background: #f0e7e9;
  border-top: 1px solid var(--line);
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: 35px;
}

.article-card {
  border-top: 1px solid #c8b1b5;
  position: relative;
  padding: 20px 0 45px;
  display: flex;
  flex-direction: column;
}

.article-meta {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  font-family: var(--mono);
  font-size: 8px;
  color: #937278;
}

.article-meta>span:first-child {
  text-transform: uppercase;
  color: #795259;
}

.article-card h3 {
  font-size: 25px;
  line-height: 1.2;
  letter-spacing: -.045em;
  margin-top: 23px;
  max-width: 280px;
  font-weight: 550;
}

.article-card>p {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.8;
  margin-top: 15px;
  max-width: 300px;
  margin-bottom: 25px;
}

.article-read {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 11px;
  margin-top: auto;
  transition: color .2s;
}

.article-read>.icon {
  width: 13px;
  height: 13px;
  transition: transform .2s;
}

.article-index {
  position: absolute;
  bottom: 0;
  right: 0;
  font-size: 19px;
  line-height: 1;
  color: #c5b0b4;
  font-style: italic;
  font-family: var(--serif);
}

.article-card:hover .article-read {
  color: var(--accent);
}

.article-card:hover .article-read>.icon {
  transform: translate(3px,-3px);
}

.article-layout {
  display: grid;
  grid-template-columns: .6fr 1.4fr;
  gap: 100px;
  padding-bottom: 100px;
  align-items: start;
}

.article-layout>aside {
  border-top: 1px solid var(--line);
  padding-top: 22px;
  position: sticky;
  top: 110px;
}

.article-layout>aside .eyebrow {
  font-size: 9px;
  margin-bottom: 15px;
}

.article-layout>aside>p {
  color: var(--muted);
  font-size: 12px;
}

.article-layout aside nav {
  display: grid;
  margin-top: 25px;
  margin-bottom: 25px;
}

.article-layout aside nav a {
  font-size: 12px;
  color: var(--muted);
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}

.article-layout aside nav a:hover {
  color: var(--accent);
}

.article-body {
  max-width: 690px;
}

.article-body section+section {
  margin-top: 38px;
}

.article-body h2 {
  font-size: 28px;
  letter-spacing: -.04em;
  line-height: 1.25;
  margin-bottom: 18px;
}

.article-body p {
  font-size: 16px;
  line-height: 1.9;
  color: var(--muted);
}

.article-bottom {
  margin-top: 60px;
  padding: 30px;
  background: var(--surface);
  border: 1px solid var(--line);
}

.article-bottom h3 {
  font-size: 24px;
}

.article-bottom p {
  font-size: 14px;
  margin-top: 14px;
}

.article-bottom .button {
  margin-top: 20px;
}

.article-sources {
  margin-top: 40px;
  padding-top: 25px;
  border-top: 1px solid var(--line);
}

.article-sources h3 {
  font-size: 18px;
}

.article-sources a {
  display: flex;
  gap: 10px;
  align-items: center;
  color: var(--accent);
  font-size: 12px;
  margin-top: 18px;
}

.article-sources .icon {
  width: 14px;
  height: 14px;
}

/* Closing section */
.final-cta {
  background: var(--dark);
  color: var(--paper);
  padding: 90px 0;
}

.cta-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 100px;
  align-items: end;
}

.cta-grid .eyebrow {
  font-size: 9px;
  color: #b3979c;
  margin-bottom: 24px;
}

.final-cta h2 {
  font-size: clamp(45px,5.3vw,75px);
  line-height: 1.07;
}

.final-cta h2 em {
  color: #c8b3b6;
}

.cta-copy {
  max-width: 355px;
  justify-self: end;
  padding-bottom: 4px;
}

.cta-copy>p {
  font-size: 16px;
  line-height: 1.85;
  color: #c5b0b4;
}

.cta-copy>.button {
  margin-top: 27px;
  font-size: 12px;
  min-width: 250px;
}

.cta-fine {
  display: block;
  font-size: 9px;
  color: #a98a8f;
  margin-top: 17px;
}

.site-footer {
  background: var(--dark);
  color: #bf9fa4;
}

.footer-bottom {
  border-top: 1px solid #563b3f;
  display: flex;
  align-items: center;
  gap: 30px;
  min-height: 99px;
  font-size: 9px;
}

.footer-bottom>.wordmark {
  font-size: 21px;
  color: var(--paper);
}

.footer-note {
  margin-right: auto;
  color: #9c7b81;
}

.footer-bottom>a:not(.wordmark) {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.footer-bottom .brand-dot {
  width: 5px;
  height: 5px;
}

/* Subpages */
.page-hero {
  padding-top: 83px;
  padding-bottom: 67px;
}

.page-hero>.eyebrow {
  font-size: 10px;
  margin-bottom: 25px;
}

.page-hero h1 {
  max-width: 1000px;
  line-height: 1.08;
  letter-spacing: -.06em;
}

.page-lead {
  max-width: 620px;
  margin-top: 26px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.9;
}

.page-hero+.services-section,.page-hero+.pricing-section {
  padding-top: 70px;
}

.page-hero+.projects-section {
  padding-top: 22px;
}

.page-hero+.team-section {
  padding-top: 30px;
}

.page-hero+.article-section {
  padding-top: 68px;
}

.page-hero+.process-section {
  padding-top: 27px;
}

.not-found-actions {
  display: flex;
  gap: 30px;
  padding-bottom: 120px;
  align-items: center;
}

.table-scroll {
  overflow: auto;
  margin-top: 35px;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  min-width: 600px;
}

.comparison-table th,.comparison-table td {
  padding: 17px 15px;
  border-bottom: 1px solid var(--line);
  font-size: 12px;
}

.comparison-table thead th {
  font-size: 17px;
  font-weight: 550;
  background: var(--surface);
}

.comparison-table tbody th {
  font-weight: 500;
}

.comparison-table td {
  color: var(--muted);
  min-width: 125px;
}

.comparison-table tr>:first-child {
  padding-left: 20px;
  width: 30%;
}

.additional-prices {
  margin-top: 45px;
}

.additional-prices>div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  border-bottom: 1px solid var(--line);
  padding: 17px 0;
}

.additional-prices a {
  font-size: 15px;
  display: inline-flex;
  gap: 15px;
  align-items: center;
}

.additional-prices a>.icon {
  width: 15px;
  height: 15px;
  color: var(--accent);
}

.additional-prices>div>span {
  font-size: 12px;
  color: var(--muted);
}

.aftercare {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 100px;
  border-top: 1px solid var(--line);
}

.aftercare-row {
  border-top: 1px solid var(--line);
  padding: 23px 0;
  display: flex;
  gap: 20px;
  align-items: start;
}

.aftercare-row>span {
  font-size: 10px;
  font-family: var(--mono);
  color: #98747a;
  padding-top: 3px;
}

.aftercare-row>div {
  flex: 1;
}

.aftercare-row h3 {
  font-size: 21px;
}

.aftercare-row p {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.85;
  margin-top: 12px;
}

.aftercare-row>.icon {
  width: 18px;
  height: 18px;
  color: #99757b;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 40px;
}

.value-grid article {
  border-top: 1px solid var(--line);
  padding-top: 23px;
}

.value-grid h3 {
  font-size: 23px;
  line-height: 1.2;
}

.value-grid p {
  font-size: 14px;
  line-height: 1.85;
  color: var(--muted);
  margin-top: 16px;
}

.values-section {
  border-top: 1px solid var(--line);
}

.privacy-content {
  max-width: 800px;
  padding-bottom: 100px;
}

.privacy-content h2 {
  font-size: 26px;
  letter-spacing: -.04em;
  margin-top: 38px;
}

.privacy-content p {
  font-size: 15px;
  line-height: 1.85;
  margin-top: 16px;
  color: var(--muted);
}

/* Before and after */
.comparison {
  border: 1px solid #d5c0c4;
  --split: 50%;
}

.comparison-stage {
  height: 620px;
  position: relative;
  overflow: hidden;
  background: #eee0e2;
}

.comparison-layer {
  position: absolute;
  inset: 0;
}

.comparison-before {
  clip-path: inset(0 calc(100% - var(--split)) 0 0);
}

.comparison-after .browser {
  border: none;
  border-radius: 0;
}

.comparison-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--split);
  width: 2px;
  background: var(--paper);
  box-shadow: 0 0 2px #35202450;
  pointer-events: none;
}

.comparison-line>span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  background: var(--paper);
  color: #663840;
  border: 1px solid #b99298;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%,-50%);
  font-size: 20px;
}

.comparison-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 23px;
  gap: 24px;
  border-top: 1px solid #d5c0c4;
}

.comparison-controls>input {
  flex: 1;
  min-width: 0;
  accent-color: var(--accent);
  max-width: 500px;
}

.comparison-controls>button {
  font-size: 12px;
  white-space: nowrap;
}

.old-website {
  height: 100%;
  background: #ffffff;
  font-family: Arial,sans-serif;
}

.old-bar {
  background: #3c526b;
  color: white;
  padding: 23px 50px;
  font-weight: bold;
  font-size: 24px;
}

.old-nav {
  background: #e5e8eb;
  color: #43596e;
  padding: 11px 50px;
  font-size: 11px;
}

.old-body {
  padding: 35px 50px;
  max-width: 800px;
}

.old-body h3 {
  font-family: Arial;
  font-size: 28px;
  letter-spacing: -.015em;
  font-weight: bold;
  color: #44586a;
}

.old-body p {
  font-size: 13px;
  color: #70757c;
  line-height: 1.9;
  margin-top: 17px;
}

.old-picture {
  width: 270px;
  height: 180px;
  background: url("/assets/form-fur-hero.webp") center/cover;
  margin-top: 20px;
}

/* Real form */
.contact-layout {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 90px;
  padding-bottom: 100px;
}

.contact-form-wrap {
  min-width: 0;
}

.contact-tabs {
  display: flex;
  border-bottom: 1px solid var(--line);
  margin-bottom: 30px;
}

.contact-tabs>button {
  background: transparent;
  border: 0;
  border-bottom: 2px solid transparent;
  padding: 15px 5px 15px 0;
  margin-right: 27px;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #938083;
  min-height: 51px;
}

.contact-tabs>button[aria-pressed=true] {
  color: var(--ink);
  border-bottom-color: var(--accent);
}

.contact-tabs .icon {
  width: 16px;
  height: 16px;
}

.form-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-heading h2 {
  font-size: 27px;
  letter-spacing: -.04em;
  line-height: 1.2;
}

.form-heading p {
  margin-top: 8px;
  font-size: 13px;
  color: var(--muted);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 23px 24px;
  margin-top: 26px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}

.field>label {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
}

.field>label>span:not(.optional) {
  color: var(--accent);
}

.optional {
  font-size: 9px;
  color: #947f83;
  margin-left: 6px;
}

.field input,.field select,.field textarea {
  border: 1px solid #d2bcc0;
  padding: 12px 13px;
  min-width: 0;
  background: #fcfcf5;
  min-height: 47px;
  font-size: 13px;
  width: 100%;
  outline-offset: 2px;
  transition: border-color .15s;
}

.field input::placeholder,.field textarea::placeholder {
  color: #977d81;
  opacity: 1;
}

.field input:focus,.field select:focus,.field textarea:focus {
  border-color: var(--accent);
}

.field textarea {
  resize: vertical;
  min-height: 110px;
  line-height: 1.8;
}

.field [aria-invalid=true] {
  border-color: #aa472e;
}

.field-error {
  color: #aa472e;
  font-size: 11px;
  line-height: 1.5;
}

.field-error:empty {
  display: none;
}

.interest-fieldset {
  border: 0;
  margin: 26px 0 0;
  padding: 0;
}

.interest-fieldset legend {
  padding: 0;
  font-size: 12px;
}

.interest-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 13px;
}

.interest-chips>label {
  position: relative;
  cursor: pointer;
}

.interest-chips input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.interest-chips span {
  display: block;
  padding: 9px 13px;
  border: 1px solid #d2bcc0;
  font-size: 11px;
  min-height: 36px;
  transition: background .2s,color .2s;
}

.interest-chips input:checked+span {
  background: #eadcde;
  color: #64383f;
  border-color: #9b737a;
}

.interest-chips input:focus-visible+span {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}

.meeting-preferences {
  margin-top: 25px;
  padding: 2px 18px 16px;
  border: 1px solid var(--line);
  background: #f0e6e8;
}

.meeting-preferences .form-grid {
  margin-top: 17px;
}

.meeting-preferences .small {
  font-size: 10px;
  margin-top: 12px;
}

.interest-fieldset~.field {
  margin-top: 26px;
}

.form-privacy {
  font-size: 10px;
  line-height: 1.85;
  color: #957e82;
  margin-top: 17px;
}

.form-privacy a {
  text-decoration: underline;
  text-underline-offset: 3px;
  color: #7c585e;
}

.form-submit {
  margin-top: 22px;
}

.local-disclosure {
  font-size: 10px;
  line-height: 1.8;
  color: #8f787c;
  max-width: 490px;
  margin-top: 18px;
  border-top: 1px solid var(--line);
  padding-top: 14px;
}

.form-status {
  padding: 16px;
  border: 1px solid #cfacb2;
  background: #f0dfe2;
  color: #6c3a42;
  font-size: 13px;
  margin-top: 20px;
  line-height: 1.8;
  overflow-wrap: anywhere;
}

.form-status.error {
  background: #f5eae2;
  border-color: #d9b6a2;
  color: #914b31;
}

.form-status h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.contact-aside {
  background: #ece1e3;
  border: 1px solid var(--line);
  padding: 35px;
  height: fit-content;
  position: sticky;
  top: 115px;
}

.contact-aside>.eyebrow {
  font-size: 9px;
}

.contact-aside h2 {
  font-size: 32px;
  line-height: 1.15;
}

.contact-aside>p {
  font-size: 13px;
  line-height: 1.9;
  color: var(--muted);
  margin-top: 22px;
}

.contact-facts {
  display: grid;
  gap: 17px;
  margin-top: 26px;
  font-size: 11px;
}

.contact-facts>span {
  display: flex;
  gap: 11px;
  align-items: center;
  color: #89666c;
}

.contact-facts .icon {
  width: 16px;
  height: 16px;
}

.contact-people {
  border-top: 1px solid #dac5c9;
  padding-top: 26px;
  margin-top: 30px;
  display: grid;
  gap: 21px;
}

.contact-people>div {
  display: flex;
  gap: 13px;
  align-items: center;
}

.avatar {
  width: 38px;
  height: 38px;
  border: 1px solid #cbb0b4;
  display: inline-grid;
  place-items: center;
  font-size: 13px;
  font-family: var(--serif);
  font-style: italic;
  background: #e6d5d8;
  color: #80535a;
  flex: none;
}

.contact-people b {
  font-weight: 500;
  font-size: 13px;
  line-height: 1.3;
}

.contact-people small {
  display: block;
  font-size: 10px;
  color: #9b7b80;
  margin-top: 3px;
}

.contact-direct {
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid #dac5c9;
}

.contact-direct .eyebrow {
  font-size: 8px;
  margin-bottom: 10px;
  color: #98787d;
}

.contact-direct>p {
  font-size: 12px;
  line-height: 1.8;
  color: #7e565d;
}

/* Functional portal */
.portal-demo {
  background: #fcf4f5;
  border: 1px solid #ddc6ca;
  display: grid;
  grid-template-columns: 180px minmax(0,1fr);
  min-height: 540px;
  color: #4b2f34;
}

.portal-nav {
  background: #eddadd;
  border-right: 1px solid #dfc7cb;
  padding: 30px 18px;
  display: flex;
  flex-direction: column;
}

.portal-nav>b {
  font-family: var(--serif);
  font-size: 43px;
  padding-left: 10px;
  line-height: 1;
}

.portal-nav>b>span {
  color: #9d7078;
}

.portal-nav>div {
  margin-top: 40px;
  display: grid;
  gap: 8px;
}

.portal-nav button {
  background: transparent;
  border: 0;
  padding: 12px 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  text-align: left;
  font-size: 12px;
  color: #9b737a;
}

.portal-nav button .icon {
  width: 16px;
  height: 16px;
}

.portal-nav button[aria-pressed=true] {
  background: #e1c6cb;
  color: #79424b;
}

.portal-nav>span {
  margin-top: auto;
  padding: 45px 10px 0;
  font-family: var(--mono);
  font-size: 8px;
  color: #9d767d;
  line-height: 1.8;
}

.portal-body {
  padding: 35px 40px;
  min-width: 0;
}

.portal-body-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.portal-body-top .eyebrow {
  font-size: 9px;
  margin: 0;
  color: #9f777e;
}

.portal-body>h2 {
  font-size: 33px;
  margin-top: 22px;
}

.portal-body>p {
  font-size: 12px;
  margin-top: 13px;
  color: #9a7178;
}

.portal-banner {
  display: grid;
  grid-template-columns: 1fr .55fr;
  background: #f0e2e4;
  border: 1px solid #e4cfd3;
  margin-top: 32px;
  min-height: 174px;
}

.portal-banner>div:first-child {
  padding: 24px;
}

.portal-banner span {
  font-size: 8px;
  font-family: var(--mono);
  color: #a1757c;
}

.portal-banner h3 {
  font-size: 24px;
  margin-top: 13px;
  max-width: 250px;
}

.portal-banner p {
  font-size: 11px;
  line-height: 1.8;
  color: #9d767d;
  margin-top: 13px;
}

.portal-illustration {
  background: url("/assets/form-fur-hero.webp") 50%/cover;
  min-height: 170px;
}

.portal-phases {
  display: flex;
  gap: 10px;
  margin-top: 27px;
}

.portal-phases>div {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
  border-top: 3px solid #e7d3d6;
  padding-top: 11px;
  font-size: 9px;
  color: #b08e94;
}

.portal-phases>div.done {
  border-top-color: #a66c76;
  color: #79464e;
}

.portal-phases span {
  font-family: var(--mono);
  font-size: 8px;
}

.portal-action-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 28px;
  border-top: 1px solid #e7d2d6;
  padding-top: 15px;
}

.portal-action-row>span {
  display: flex;
  gap: 8px;
  align-items: center;
  color: #9b656e;
  font-size: 10px;
}

.portal-action-row .text-button {
  font-size: 10px;
  color: #844d56;
}

.portal-action-row .icon {
  width: 15px;
  height: 15px;
}

.portal-files {
  margin-top: 30px;
  border-top: 1px solid #e5cdd1;
}

.portal-files button {
  display: flex;
  gap: 17px;
  align-items: center;
  width: 100%;
  border: 0;
  border-bottom: 1px solid #e5cdd1;
  background: transparent;
  text-align: left;
  padding: 20px 0;
}

.portal-files button:hover {
  background: #f5e9eb;
}

.portal-files button>.icon {
  width: 20px;
  height: 20px;
  color: #a4777f;
}

.portal-files button>.icon:last-child {
  margin-left: auto;
  width: 15px;
  height: 15px;
}

.portal-files button>span {
  display: grid;
  gap: 6px;
}

.portal-files button b {
  font-size: 13px;
  font-weight: 500;
}

.portal-files button small {
  font-size: 10px;
  color: #9f7b81;
}

.portal-files+.small {
  font-size: 10px;
  margin-top: 25px;
}

.portal-activity {
  margin-top: 30px;
}

.portal-activity li {
  display: flex;
  gap: 17px;
  align-items: start;
  padding: 17px 0;
  border-bottom: 1px solid #e7d2d6;
}

.portal-activity li>span {
  background: #eedcdf;
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  color: #a8737c;
}

.portal-activity .icon {
  width: 14px;
  height: 14px;
}

.portal-activity h3 {
  font-size: 14px;
  letter-spacing: -.02em;
}

.portal-activity p {
  font-size: 11px;
  line-height: 1.8;
  color: #9e7279;
  margin-top: 7px;
}

.document-dialog {
  border: 1px solid #d9bbc0;
  padding: 44px;
  max-width: 580px;
  width: calc(100% - 40px);
  background: #fcf1f3;
  color: #5f383f;
}

.document-dialog::backdrop {
  background: #381d22aa;
}

.document-dialog .eyebrow {
  font-size: 9px;
  margin-top: 15px;
  color: #a67b82;
}

.document-dialog h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

.dialog-close {
  position: absolute;
  right: 12px;
  top: 12px;
}

.document-dialog [data-document-body] {
  font-size: 14px;
  line-height: 1.85;
}

.document-dialog [data-document-body] h3 {
  font-size: 18px;
  margin-top: 22px;
  margin-bottom: 10px;
}

.document-dialog>.small {
  font-size: 10px;
  padding-top: 20px;
  margin-top: 25px;
  border-top: 1px solid #e2c9cd;
  color: #a77981;
}

/* Motion: non-blocking, once per section; all content remains usable without JS. */
@keyframes fade-up {
  from {
    opacity: .2;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fade-in {
  from {
    opacity: .35;
  }
  to {
    opacity: 1;
  }
}

.is-revealed {
  animation: fade-up .5s var(--ease) both;
}

.demo-content>[data-step] {
  animation: fade-in .2s ease;
}

a,button,summary {
  touch-action: manipulation;
}

@media (min-width:1500px) {
  .hero {
    gap: 85px;
  }
  .hero-showcase {
    min-height: 500px;
  }
  .hero-view {
    padding-inline: 32px 44px;
  }
  .hero-browser .mini-site-hero {
    height: 270px;
  }
  .phone-frame {
    width: 129px;
    height: 245px;
    right: 22px;
  }
  .phone-site .mini-site-hero {
    height: 185px;
  }
  .phone-site .mini-site-title {
    font-size: 17px;
  }
  .hero h1 {
    font-size: 72px;
  }
}

@media (max-width:1180px) {
  .container {
    width: calc(100% - 72px);
  }
  .header-inner {
    gap: 25px;
  }
  .desktop-nav {
    gap: 18px;
  }
  .desktop-nav a {
    font-size: 11px;
  }
  .nav-cta {
    font-size: 11px;
    padding-inline: 12px;
    gap: 10px;
  }
  .wordmark {
    font-size: 21px;
  }
  .hero {
    gap: 30px;
    padding-top: 70px;
  }
  .hero h1 {
    font-size: clamp(38px,4.6vw,58px);
  }
  .hero-copy>p {
    font-size: 14px;
  }
  .hero-actions {
    gap: 15px;
  }
  .hero-actions .button {
    font-size: 11px;
    gap: 15px;
    padding-inline: 14px;
  }
  .hero-actions .text-link {
    font-size: 10px;
  }
  .hero-benefits {
    gap: 13px;
    font-size: 9px;
  }
  .hero-showcase {
    min-height: 440px;
  }
  .showcase-top {
    padding-inline: 18px;
  }
  .showcase-top>.mono {
    font-size: 8px;
  }
  .hero-browser .mini-site-hero {
    height: 218px;
  }
  .hero-view {
    padding-left: 19px;
    padding-right: 24px;
  }
  .phone-frame {
    right: 8px;
    width: 102px;
    height: 205px;
  }
  .phone-site .mini-site-hero {
    height: 149px;
  }
  .phone-site .mini-site-title {
    font-size: 14px;
  }
  .hero-stage {
    min-height: 330px;
  }
  .showcase-controls {
    padding: 0 8px;
    gap: 1px;
  }
  .showcase-controls>button {
    gap: 5px;
    padding-inline: 8px;
    font-size: 10px;
  }
  .showcase-controls>button>span {
    font-size: 7px;
  }
  .showcase-controls>a {
    width: 25px;
  }
  .section {
    padding-block: 82px;
  }
  .section-heading {
    gap: 55px;
  }
  .project-featured .project-art {
    padding-inline: 25px;
    height: 480px;
  }
  .project-booking .project-art {
    padding-inline: 25px;
    height: 191px;
  }
  .project-portal .project-art {
    height: 195px;
  }
  .services-layout {
    gap: 40px;
  }
  .service-select b {
    font-size: 22px;
  }
  .service-select {
    gap: 20px;
    padding-block: 20px;
  }
  .service-preview {
    padding: 23px;
  }
  .demo-section-grid {
    gap: 40px;
    grid-template-columns: .65fr 1.35fr;
  }
  .demo-section-copy h2 {
    font-size: 49px;
  }
  .demo-content {
    padding: 25px 23px;
  }
  .demo-toolbar {
    gap: 12px;
    padding-inline: 21px;
  }
  .demo-view-tabs>button {
    font-size: 9px;
    padding-inline: 8px;
  }
  .process-grid {
    gap: 20px;
  }
  .process-step h3 {
    font-size: 21px;
  }
  .process-step>p {
    font-size: 11px;
    min-height: 95px;
  }
  .price-card {
    padding-inline: 23px;
  }
  .team-section {
    gap: 65px;
  }
  .faq-section {
    gap: 65px;
  }
  .article-card h3 {
    font-size: 23px;
  }
  .cta-grid {
    gap: 60px;
  }
  .contact-layout {
    gap: 55px;
  }
  .contact-aside {
    padding: 29px;
  }
  .service-detail-grid {
    gap: 45px;
  }
  .service-detail-visual {
    padding: 22px;
  }
  .portal-body {
    padding: 30px;
  }
  .portal-demo {
    grid-template-columns: 155px minmax(0,1fr);
  }
}

@media (max-width:1000px) {
  .desktop-nav {
    display: none;
  }
  .menu-toggle {
    display: grid;
    place-items: center;
  }
  .nav-cta {
    margin-left: auto;
  }
  .header-inner {
    height: 74px;
  }
  .hero {
    gap: 30px;
    align-items: start;
  }
  .hero h1 {
    font-size: 45px;
  }
  .hero-showcase {
    min-height: 420px;
  }
  .hero-actions {
    align-items: start;
    gap: 8px;
  }
  .hero-actions .button {
    font-size: 12px;
  }
  .hero-copy>p {
    font-size: 13px;
  }
  .hero-benefits {
    flex-wrap: wrap;
    margin-top: 18px;
    gap: 8px 20px;
  }
  .hero-benefits>span {
    font-size: 10px;
  }
  .hero-view {
    min-height: 290px;
    padding: 15px 23px 35px 15px;
  }
  .hero-stage {
    min-height: 306px;
  }
  .showcase-top {
    padding-inline: 14px;
    padding-top: 16px;
  }
  .showcase-top>.mono {
    font-size: 7px;
  }
  .showcase-top .concept-label {
    font-size: 6px;
  }
  .hero-browser .mini-site-nav {
    padding-inline: 12px;
  }
  .hero-browser .mini-site-nav>div {
    gap: 7px;
  }
  .hero-browser .mini-site-hero {
    height: 202px;
    padding-inline: 17px;
  }
  .hero-browser .mini-site-title {
    font-size: 25px;
  }
  .hero-browser .mini-site-bottom {
    padding-inline: 13px;
  }
  .hero-browser .mini-site-bottom>span {
    font-size: 5px;
  }
  .annotation {
    left: 25px;
    bottom: 2px;
    font-size: 12px;
  }
  .phone-frame {
    width: 93px;
    height: 189px;
    bottom: 22px;
    right: 5px;
  }
  .phone-site .mini-site-title {
    font-size: 13px;
  }
  .phone-site .mini-site-hero {
    height: 139px;
  }
  .phone-site .mini-site-nav {
    height: 30px;
  }
  .phone-site .mini-site-bottom {
    padding: 5px 3px;
  }
  .showcase-controls>button {
    font-size: 9px;
    gap: 4px;
    padding-inline: 6px;
  }
  .showcase-controls>button>span {
    font-size: 6px;
  }
  .section-heading {
    gap: 30px;
  }
  .project-grid {
    grid-template-columns: 1.1fr 1fr;
    gap: 23px;
  }
  .project-featured .project-art {
    height: 462px;
    padding: 58px 22px;
  }
  .project-featured .mini-site-hero {
    height: 245px;
  }
  .project-booking .project-art {
    height: 184px;
    padding-inline: 20px;
  }
  .project-portal .project-art {
    height: 188px;
    padding-inline: 12px;
  }
  .project-caption h3 {
    font-size: 20px;
  }
  .project-caption .mono {
    font-size: 8px;
  }
  .project-booking .mini-booking {
    min-width: 210px;
    padding-inline: 20px;
  }
  .mini-portal-main {
    padding-inline: 15px;
  }
  .mini-portal-main h3 {
    font-size: 19px;
  }
  .mini-portal-sidebar {
    width: 37px;
  }
  .services-layout {
    gap: 27px;
  }
  .service-select {
    gap: 15px;
    padding-left: 11px;
  }
  .service-select b {
    font-size: 20px;
  }
  .service-select small {
    font-size: 10px;
  }
  .service-panel-caption p {
    font-size: 12px;
  }
  .service-preview {
    padding: 18px;
  }
  .service-preview .mini-site-title {
    font-size: 27px;
  }
  .demo-section-grid {
    grid-template-columns: 1fr;
    gap: 37px;
  }
  .demo-section-copy {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 35px;
    align-items: start;
  }
  .demo-section-copy .eyebrow {
    grid-column: 1/-1;
  }
  .demo-section-copy h2 {
    grid-row: span 3;
    font-size: 51px;
  }
  .demo-section-copy>p {
    margin-top: 0;
    max-width: none;
    font-size: 15px;
  }
  .demo-section-copy>.subtle-light {
    margin-top: 16px;
  }
  .demo-section-copy .demo-benefit {
    display: none;
  }
  .demo-section-copy .text-link {
    margin-top: 16px;
    justify-self: start;
  }
  .demo-app {
    max-width: 800px;
    width: 100%;
    margin: auto;
  }
  .demo-content {
    min-height: 435px;
    padding: 28px 36px;
  }
  .demo-toolbar {
    padding-inline: 30px;
  }
  .demo-view-tabs>button {
    font-size: 11px;
    padding-inline: 17px;
  }
  .demo-bottom {
    font-size: 8px;
    padding: 13px 30px;
  }
  .demo-bottom>span:last-child {
    font-size: 10px;
  }
  .demo-service-option {
    min-height: 63px;
  }
  .process-grid {
    grid-template-columns: repeat(2,1fr);
    gap: 38px;
  }
  .process-step>p {
    font-size: 13px;
    min-height: 0;
  }
  .step-deliver {
    font-size: 11px;
  }
  .artifact {
    height: 140px;
  }
  .process-step h3 {
    font-size: 24px;
  }
  .price-card {
    padding: 26px 19px;
  }
  .price-card h3 {
    font-size: 26px;
  }
  .price-amount>b {
    font-size: 33px;
  }
  .price-card:last-child .price-amount>b {
    font-size: 27px;
  }
  .price-card>p {
    font-size: 11px;
    min-height: 80px;
  }
  .price-card li {
    font-size: 10px;
    gap: 7px;
  }
  .price-card>.eyebrow {
    font-size: 7px;
    min-height: 22px;
  }
  .price-card .button {
    font-size: 10px;
    gap: 8px;
    padding-inline: 10px;
  }
  .price-card .button>.icon {
    width: 15px;
    height: 15px;
  }
  .team-section {
    gap: 40px;
  }
  .team-intro>p {
    font-size: 13px;
  }
  .person-info>h3 {
    font-size: 16px;
  }
  .person-info>span {
    font-size: 6px;
  }
  .faq-section {
    gap: 35px;
    grid-template-columns: 1fr 1.2fr;
  }
  .faq-item>summary {
    font-size: 12px;
    gap: 13px;
  }
  .faq-answer {
    padding-inline: 26px;
  }
  .faq-answer p {
    font-size: 12px;
  }
  .article-grid {
    gap: 23px;
  }
  .article-card h3 {
    font-size: 23px;
  }
  .article-card>p {
    font-size: 11px;
  }
  .article-meta {
    font-size: 7px;
  }
  .cta-grid {
    gap: 40px;
  }
  .final-cta h2 {
    font-size: 56px;
  }
  .cta-copy>p {
    font-size: 14px;
  }
  .footer-note {
    display: none;
  }
  .footer-bottom>.wordmark {
    margin-right: auto;
  }
  .page-hero h1 {
    font-size: 58px;
  }
  .page-lead {
    font-size: 16px;
  }
  .project-story {
    gap: 60px;
  }
  .project-story p {
    font-size: 14px;
  }
  .service-detail-grid {
    gap: 30px;
    grid-template-columns: 1fr 1fr;
  }
  .service-detail-visual .large-site .mini-site-title {
    font-size: 29px;
  }
  .service-detail-visual .large-site .mini-site-nav>div {
    display: none;
  }
  .service-detail-visual .large-site .mini-site-hero {
    height: 340px;
  }
  .service-detail-grid h2 {
    font-size: 33px;
  }
  .feature-list li {
    font-size: 12px;
  }
  .service-cost>b {
    font-size: 22px;
  }
  .service-next,.aftercare {
    gap: 60px;
  }
  .aftercare h2 {
    font-size: 41px;
  }
  .article-layout {
    gap: 60px;
  }
  .contact-layout {
    gap: 35px;
    grid-template-columns: 1.25fr .75fr;
  }
  .contact-aside {
    padding: 24px;
  }
  .contact-aside h2 {
    font-size: 27px;
  }
  .contact-facts {
    font-size: 10px;
  }
  .contact-tabs>button {
    font-size: 11px;
    margin-right: 18px;
    gap: 8px;
  }
  .form-grid {
    gap: 18px;
  }
  .contact-aside .contact-facts .icon {
    width: 14px;
    height: 14px;
  }
  .portal-demo {
    grid-template-columns: 140px minmax(0,1fr);
  }
  .portal-body {
    padding: 27px;
  }
  .portal-banner>div:first-child {
    padding: 18px;
  }
  .portal-banner h3 {
    font-size: 22px;
  }
  .portal-action-row {
    align-items: start;
    flex-direction: column;
    gap: 8px;
  }
  .portal-action-row .text-button {
    align-self: end;
  }
  .comparison-stage {
    height: 550px;
  }
  .comparison-after .large-site .mini-site-hero {
    height: 450px;
  }
  .old-body {
    padding: 30px;
  }
  .old-bar {
    padding-inline: 30px;
  }
  .old-nav {
    padding-inline: 30px;
  }
}

@media (max-width:760px) {
  .container {
    width: calc(100% - 40px);
  }
  .header-inner {
    height: 68px;
    gap: 18px;
  }
  .wordmark {
    font-size: 22px;
  }
  .nav-cta {
    font-size: 11px;
    min-height: 37px;
    padding: 8px 10px;
    gap: 7px;
  }
  .nav-cta>.icon {
    width: 14px;
    height: 14px;
  }
  .menu-toggle {
    min-width: 34px;
    padding: 5px;
  }
  .section {
    padding-block: 63px;
  }
  .hero {
    grid-template-columns: 1fr;
    gap: 34px;
    padding-top: 43px;
    padding-bottom: 36px;
  }
  .hero-copy .eyebrow {
    font-size: 9px;
    gap: 10px;
    margin-bottom: 22px;
  }
  .tiny-cross {
    font-size: 23px;
  }
  .hero h1 {
    font-size: clamp(40px,7.8vw,58px);
    line-height: 1.05;
    letter-spacing: -.056em;
  }
  .hero-copy>p {
    font-size: 15px;
    line-height: 1.85;
    max-width: 510px;
    margin-top: 23px;
  }
  .hero-actions {
    gap: 18px;
    align-items: center;
    margin-top: 26px;
  }
  .hero-actions .button {
    font-size: 12px;
    min-height: 48px;
    padding: 12px 17px;
    gap: 25px;
  }
  .hero-actions .text-link {
    font-size: 11px;
    gap: 5px;
  }
  .hero-benefits {
    margin-top: 20px;
    gap: 20px;
  }
  .hero-benefits>span {
    font-size: 10px;
  }
  .hero-showcase {
    min-height: 429px;
    max-width: 550px;
    justify-self: stretch;
    width: 100%;
  }
  .showcase-top {
    padding: 17px 20px 8px;
  }
  .showcase-top>.mono {
    font-size: 8px;
  }
  .showcase-top .concept-label {
    font-size: 7px;
  }
  .hero-stage {
    min-height: 328px;
    background-size: 43px 43px;
  }
  .hero-view {
    min-height: 312px;
    padding: 10px 46px 25px 24px;
  }
  .hero-browser .mini-site-nav {
    height: 37px;
    padding-inline: 14px;
  }
  .hero-browser .mini-site-nav>b {
    font-size: 12px;
  }
  .hero-browser .mini-site-nav>div {
    font-size: 5px;
    gap: 9px;
  }
  .hero-browser .mini-site-hero {
    height: 218px;
    padding: 23px 18px;
  }
  .hero-browser .mini-site-title {
    font-size: 27px;
  }
  .hero-browser .mini-site-bottom {
    padding: 13px 14px;
  }
  .hero-browser .mini-site-bottom>span {
    font-size: 5px;
  }
  .hero-browser {
    margin-right: 12px;
    transform: rotate(-2deg);
  }
  .phone-frame {
    width: 109px;
    height: 211px;
    right: 16px;
    bottom: 4px;
    border-width: 4px;
    border-radius: 15px;
  }
  .phone-site .mini-site-nav {
    height: 32px;
  }
  .phone-site .mini-site-hero {
    height: 158px;
    padding: 14px 8px;
  }
  .phone-site .mini-site-title {
    font-size: 15px;
  }
  .phone-site .mini-site-label {
    font-size: 3px;
  }
  .phone-site .mini-site-nav>b {
    font-size: 8px;
  }
  .phone-site .mini-site-bottom {
    padding: 6px 4px;
  }
  .phone-site .mini-site-button {
    font-size: 5px;
  }
  .annotation {
    left: 30px;
    bottom: -12px;
    font-size: 13px;
  }
  .annotation>span {
    font-size: 32px;
  }
  .showcase-controls {
    min-height: 53px;
    padding-inline: 16px;
    gap: 8px;
  }
  .showcase-controls>button {
    min-height: 53px;
    font-size: 10px;
    gap: 7px;
    padding-inline: 6px;
  }
  .showcase-controls>button>span {
    font-size: 7px;
  }
  .showcase-controls>a {
    width: 29px;
  }
  .hero-rule {
    padding-block: 15px;
    font-size: 7px;
    gap: 20px;
  }
  .hero-rule>span:nth-child(2) {
    display: none;
  }
  .hero-rule>a {
    font-size: 18px;
  }
  .section-heading {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-bottom: 30px;
  }
  .section-heading-aside {
    max-width: 420px;
    justify-self: start;
  }
  .section-heading .eyebrow {
    margin-bottom: 18px;
  }
  .section-heading-aside p,.section-heading>p {
    font-size: 14px;
    line-height: 1.85;
  }
  .section-heading-aside .text-link {
    margin-top: 12px;
  }
  .eyebrow {
    font-size: 9px;
    gap: 12px;
    margin-bottom: 20px;
  }
  h2 {
    font-size: 41px;
    letter-spacing: -.055em;
    line-height: 1.08;
  }
  .text-link {
    font-size: 12px;
  }
  .project-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .project-featured {
    grid-row: auto;
  }
  .project-featured .project-art {
    height: 350px;
    padding: 33px 30px;
  }
  .project-featured .mini-site-hero {
    height: 207px;
    padding: 22px;
  }
  .project-featured .mini-site-title {
    font-size: 27px;
  }
  .project-featured .mini-site-bottom {
    padding: 12px 15px;
  }
  .project-featured .mini-site-bottom span {
    font-size: 5px;
  }
  .project-featured .mini-site-nav {
    padding-inline: 14px;
    height: 38px;
  }
  .project-featured .mini-site-nav>div {
    gap: 9px;
    font-size: 5px;
  }
  .project-booking .project-art {
    height: 258px;
    padding: 29px 40px 0;
  }
  .project-booking .mini-booking {
    max-width: 290px;
    min-width: 0;
    width: 100%;
    padding: 17px 21px;
  }
  .project-booking .mini-booking h3 {
    font-size: 28px;
  }
  .project-booking .mini-booking-body {
    padding-top: 14px;
  }
  .project-portal .project-art {
    height: 258px;
    padding: 28px 24px 0;
  }
  .project-portal .mini-portal {
    max-width: 440px;
    margin: auto;
    min-height: 280px;
  }
  .mini-portal-main h3 {
    font-size: 22px;
  }
  .mini-portal-sidebar {
    width: 41px;
  }
  .project-caption {
    padding-top: 13px;
  }
  .project-caption h3 {
    font-size: 23px;
    margin-top: 6px;
  }
  .project-caption .mono {
    font-size: 9px;
  }
  .section-footnote {
    font-size: 10px;
    line-height: 1.85;
    margin-top: 22px;
  }
  .services-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .service-select {
    min-height: 77px;
    padding: 18px 13px 18px 15px;
    gap: 20px;
  }
  .service-select b {
    font-size: 23px;
  }
  .service-select small {
    font-size: 11px;
  }
  .service-no {
    font-size: 10px;
  }
  .service-preview {
    padding: 28px;
    min-height: 270px;
  }
  .service-preview .mini-site-hero {
    height: 236px;
  }
  .service-preview .mini-site-nav>div {
    gap: 9px;
    font-size: 5px;
  }
  .service-preview .mini-site-nav {
    padding-inline: 15px;
  }
  .service-preview .mini-site-bottom {
    padding: 13px;
  }
  .service-panel-caption {
    padding-top: 22px;
  }
  .service-panel-caption p {
    font-size: 13px;
  }
  .service-panel-caption .eyebrow {
    font-size: 9px;
  }
  .demo-section-grid {
    gap: 30px;
  }
  .demo-section-copy {
    display: block;
  }
  .demo-section-copy h2 {
    font-size: 47px;
  }
  .demo-section-copy .eyebrow {
    font-size: 9px;
  }
  .demo-section-copy>p {
    margin-top: 21px;
    font-size: 15px;
    max-width: 350px;
  }
  .demo-section-copy>.subtle-light {
    font-size: 12px;
    margin-top: 14px;
  }
  .demo-section-copy .text-link {
    margin-top: 20px;
    font-size: 11px;
  }
  .demo-toolbar {
    padding: 15px 15px;
    gap: 9px;
    min-height: 64px;
  }
  .demo-brand {
    font-size: 25px;
  }
  .demo-brand .brand-dot {
    width: 4px;
    height: 4px;
  }
  .demo-view-tabs {
    padding: 2px;
  }
  .demo-view-tabs>button {
    font-size: 9px;
    padding: 6px 8px;
    min-height: 30px;
  }
  .demo-toolbar .icon-button {
    min-height: 32px;
    min-width: 30px;
  }
  .demo-toolbar .icon-button>.icon {
    width: 15px;
    height: 15px;
  }
  .demo-content {
    padding: 22px 20px;
    min-height: 449px;
  }
  .demo-step-top {
    margin-bottom: 23px;
  }
  .demo-content h3 {
    font-size: 28px;
  }
  .demo-subtitle {
    font-size: 11px;
    line-height: 1.8;
  }
  .demo-service-options {
    margin-top: 22px;
    gap: 8px;
  }
  .demo-service-option {
    min-height: 64px;
    padding: 11px 12px;
    gap: 10px;
  }
  .demo-service-option b {
    font-size: 12px;
  }
  .demo-service-option small {
    font-size: 9px;
  }
  .demo-service-option>span:last-child {
    font-size: 8px;
  }
  .demo-radio {
    width: 13px;
    height: 13px;
  }
  .demo-bottom {
    padding: 12px 15px;
    gap: 6px;
    font-size: 6px;
    flex-wrap: wrap;
  }
  .demo-bottom>span:last-child {
    font-size: 8px;
  }
  .demo-actionbar {
    margin-top: 22px;
    gap: 10px;
  }
  .demo-button {
    font-size: 10px;
    gap: 15px;
    min-height: 43px;
    padding: 10px 12px;
  }
  .demo-dates {
    gap: 5px;
  }
  .demo-date {
    min-height: 60px;
    padding-inline: 2px;
  }
  .demo-date>span {
    font-size: 7px;
  }
  .demo-date>b {
    font-size: 18px;
  }
  .demo-time {
    min-height: 40px;
  }
  .demo-summary>div {
    font-size: 11px;
  }
  .demo-company-booking {
    padding: 15px;
    gap: 13px;
    flex-wrap: wrap;
  }
  .company-details {
    min-width: 150px;
  }
  .demo-company-booking>.text-button {
    margin-left: 61px;
    padding-block: 2px;
  }
  .process-grid {
    gap: 27px 22px;
  }
  .process-step h3 {
    font-size: 21px;
  }
  .process-step>p {
    font-size: 12px;
    line-height: 1.85;
  }
  .artifact {
    height: 125px;
    margin-bottom: 20px;
  }
  .step-deliver {
    font-size: 9px;
    line-height: 1.7;
    gap: 5px;
    align-items: start;
  }
  .step-deliver>.icon {
    margin-top: 3px;
    width: 12px;
    height: 12px;
  }
  .artifact-brief {
    width: 112px;
    padding: 12px;
  }
  .artifact-brief>b {
    font-size: 16px;
  }
  .artifact-plan {
    width: 117px;
    padding: 12px;
  }
  .artifact-build {
    width: 121px;
  }
  .artifact-build>div {
    gap: 7px;
    padding: 9px;
  }
  .artifact-build>div>i {
    width: 39px;
    height: 45px;
  }
  .artifact-check {
    padding: 12px;
    gap: 9px;
  }
  .artifact-check>span {
    font-size: 6px;
  }
  .artifact-check .icon {
    width: 9px;
    height: 9px;
  }
  .price-card {
    padding: 30px;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
    border: 0;
    gap: 17px;
  }
  .price-card+.price-card {
    border: 1px solid #d5c3c6;
  }
  .price-card {
    border: 1px solid #d5c3c6;
  }
  .price-card .eyebrow {
    font-size: 9px;
    margin-bottom: 18px;
    min-height: 0;
  }
  .price-card h3 {
    font-size: 30px;
  }
  .price-amount {
    margin-top: 20px;
    min-height: 0;
  }
  .price-amount>b {
    font-size: 46px;
  }
  .price-amount>small {
    font-size: 10px;
  }
  .price-amount>span {
    font-size: 11px;
  }
  .price-card>p {
    font-size: 13px;
    min-height: 0;
    margin-top: 23px;
    max-width: 420px;
  }
  .price-card>ul {
    margin-top: 25px;
    padding-top: 22px;
    gap: 13px;
  }
  .price-card li {
    font-size: 12px;
    gap: 10px;
  }
  .price-card li .icon {
    width: 14px;
    height: 14px;
  }
  .price-card .button {
    font-size: 12px;
    min-height: 48px;
    padding: 12px 17px;
  }
  .price-card:last-child .price-amount>b {
    font-size: 35px;
  }
  .price-timing {
    font-size: 10px;
  }
  .price-disclosure {
    gap: 10px;
  }
  .price-disclosure>p {
    font-size: 10px;
  }
  .team-section {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .team-intro>p {
    font-size: 14px;
    line-height: 1.85;
  }
  .team-intro>p+p {
    font-size: 13px;
  }
  .team-people {
    gap: 14px;
    max-width: 600px;
  }
  .person-monogram {
    aspect-ratio: 1/.97;
  }
  .person-monogram>span {
    font-size: clamp(58px,14vw,100px);
  }
  .person-info>h3 {
    font-size: 18px;
  }
  .person-info>span {
    font-size: 7px;
  }
  .team-caption {
    margin-top: 8px;
    padding-top: 15px;
    font-size: 10px;
  }
  .faq-section {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .faq-section>div:first-child>p {
    font-size: 14px;
    max-width: 340px;
    margin-top: 20px;
  }
  .faq-section>div:first-child>.text-link {
    margin-top: 17px;
  }
  .faq-item>summary {
    font-size: 13px;
    gap: 17px;
    padding: 23px 0;
  }
  .faq-answer {
    padding: 0 23px 24px;
  }
  .faq-answer p {
    font-size: 13px;
  }
  .article-grid {
    grid-template-columns: 1fr;
    gap: 29px;
  }
  .article-card {
    padding: 20px 0 23px;
  }
  .article-meta {
    font-size: 9px;
  }
  .article-card h3 {
    font-size: 28px;
    max-width: 450px;
    margin-top: 20px;
  }
  .article-card>p {
    font-size: 13px;
    max-width: 450px;
    margin-top: 14px;
    margin-bottom: 21px;
  }
  .article-read {
    font-size: 12px;
  }
  .article-index {
    bottom: 20px;
    font-size: 25px;
  }
  .cta-grid {
    grid-template-columns: 1fr;
    gap: 27px;
  }
  .final-cta {
    padding-block: 62px;
  }
  .final-cta h2 {
    font-size: 53px;
  }
  .cta-copy {
    justify-self: start;
    max-width: 400px;
  }
  .cta-copy>p {
    font-size: 14px;
  }
  .cta-copy>.button {
    min-width: 250px;
    font-size: 12px;
    margin-top: 22px;
  }
  .cta-fine {
    font-size: 9px;
    line-height: 1.7;
  }
  .footer-bottom {
    padding-block: 26px;
    display: grid;
    grid-template-columns: 1fr auto;
    min-height: 100px;
    gap: 24px 20px;
  }
  .footer-bottom>.wordmark {
    font-size: 21px;
    margin-right: 0;
  }
  .footer-bottom>a:not(.wordmark) {
    font-size: 10px;
  }
  .footer-bottom>span:last-child {
    grid-column: 1/-1;
    font-size: 9px;
    color: #9b787e;
  }
  .page-hero {
    padding-top: 46px;
    padding-bottom: 43px;
  }
  .page-hero>.eyebrow {
    font-size: 9px;
    margin-bottom: 20px;
  }
  .page-hero h1 {
    font-size: clamp(41px,7.7vw,58px);
    line-height: 1.07;
  }
  .page-lead {
    font-size: 15px;
    line-height: 1.85;
    margin-top: 22px;
  }
  .page-hero+.services-section,.page-hero+.pricing-section {
    padding-top: 45px;
  }
  .page-hero+.projects-section {
    padding-top: 15px;
  }
  .page-hero+.team-section {
    padding-top: 10px;
  }
  .page-hero+.article-section {
    padding-top: 50px;
  }
  .page-hero+.process-section {
    padding-top: 15px;
  }
  .project-story {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .project-story aside h2 {
    font-size: 29px;
  }
  .project-story aside>p {
    max-width: 420px;
  }
  .project-story h3 {
    font-size: 22px;
  }
  .project-story p {
    font-size: 14px;
    line-height: 1.85;
  }
  .project-detail-visual.visual-booking {
    padding: 15px;
    width: calc(100% - 20px);
  }
  .project-detail-visual .large-site .mini-site-nav {
    height: 42px;
    padding-inline: 15px;
  }
  .project-detail-visual .large-site .mini-site-nav>b {
    font-size: 14px;
  }
  .project-detail-visual .large-site .mini-site-nav>div {
    font-size: 6px;
    gap: 11px;
  }
  .project-detail-visual .large-site .mini-site-hero {
    height: 350px;
    padding: 29px 20px;
  }
  .project-detail-visual .large-site .mini-site-title {
    font-size: 34px;
  }
  .project-detail-visual .large-site .mini-site-label {
    font-size: 7px;
  }
  .project-detail-visual .large-site .mini-site-button {
    font-size: 9px;
    padding: 10px 12px;
    gap: 20px;
  }
  .project-detail-visual .large-site .mini-site-bottom {
    padding: 15px;
  }
  .project-detail-visual .large-site .mini-site-bottom span {
    font-size: 6px;
  }
  .project-detail-visual .browser-bar>span {
    font-size: 7px;
  }
  .project-detail-visual .browser-bar {
    height: 30px;
  }
  .service-detail-grid {
    grid-template-columns: 1fr;
    gap: 33px;
    padding-bottom: 45px;
  }
  .service-detail-visual {
    position: static;
    padding: 24px;
  }
  .service-detail-grid>aside {
    padding: 0;
  }
  .service-detail-grid h2 {
    font-size: 37px;
  }
  .service-detail-grid>.service-detail-visual .large-site .mini-site-hero {
    height: 295px;
  }
  .service-detail-grid>.service-detail-visual .large-site .mini-site-title {
    font-size: 29px;
  }
  .feature-list li {
    font-size: 14px;
  }
  .service-cost>b {
    font-size: 26px;
  }
  .service-next,.aftercare {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .service-next>div:last-child {
    padding-top: 0;
    font-size: 14px;
  }
  .service-next .text-link {
    margin-top: 17px;
  }
  .aftercare h2 {
    font-size: 40px;
  }
  .aftercare-row {
    gap: 18px;
  }
  .aftercare-row p {
    font-size: 13px;
  }
  .additional-prices>div {
    gap: 20px;
    align-items: start;
  }
  .additional-prices a {
    font-size: 13px;
    gap: 9px;
  }
  .additional-prices>div>span {
    font-size: 11px;
    text-align: right;
    max-width: 160px;
  }
  .value-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .value-grid h3 {
    font-size: 25px;
  }
  .value-grid p {
    font-size: 14px;
  }
  .article-layout {
    grid-template-columns: 1fr;
    gap: 35px;
    padding-bottom: 63px;
  }
  .article-layout>aside {
    position: static;
    padding-top: 20px;
  }
  .article-layout>aside .eyebrow {
    font-size: 9px;
  }
  .article-layout>aside nav {
    margin-top: 18px;
    display: none;
  }
  .article-layout>aside .text-link {
    margin-top: 10px;
  }
  .article-body h2 {
    font-size: 27px;
  }
  .article-body p {
    font-size: 15px;
    line-height: 1.9;
  }
  .article-body section+section {
    margin-top: 31px;
  }
  .article-bottom {
    padding: 23px;
    margin-top: 37px;
  }
  .privacy-content h2 {
    font-size: 25px;
  }
  .privacy-content p {
    font-size: 14px;
  }
  .comparison-stage {
    height: 380px;
  }
  .comparison-after .large-site .mini-site-nav {
    height: 37px;
    padding-inline: 12px;
  }
  .comparison-after .large-site .mini-site-nav>b {
    font-size: 13px;
  }
  .comparison-after .large-site .mini-site-nav>div {
    font-size: 5px;
    gap: 8px;
  }
  .comparison-after .large-site .mini-site-hero {
    height: 296px;
    padding: 23px 18px;
  }
  .comparison-after .large-site .mini-site-title {
    font-size: 31px;
  }
  .comparison-after .large-site .mini-site-label {
    font-size: 6px;
  }
  .comparison-after .large-site .mini-site-button {
    font-size: 8px;
    padding: 8px 10px;
    margin-top: 17px;
    gap: 11px;
  }
  .comparison-after .large-site .mini-site-bottom {
    padding: 15px 12px;
  }
  .comparison-after .large-site .mini-site-bottom>span {
    font-size: 5px;
  }
  .comparison-after .large-site .mini-site-counter {
    font-size: 7px;
  }
  .comparison-controls {
    gap: 13px;
    padding: 13px;
  }
  .comparison-controls>button {
    font-size: 10px;
  }
  .comparison-line>span {
    width: 30px;
    height: 30px;
    font-size: 17px;
  }
  .old-bar {
    font-size: 18px;
    padding: 17px 21px;
  }
  .old-nav {
    font-size: 7px;
    padding: 10px 20px;
  }
  .old-body {
    padding: 24px 21px;
  }
  .old-body h3 {
    font-size: 20px;
    line-height: 1.2;
  }
  .old-body p {
    font-size: 10px;
    margin-top: 13px;
  }
  .old-picture {
    width: 175px;
    height: 112px;
    margin-top: 15px;
  }
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 37px;
    padding-bottom: 63px;
  }
  .contact-aside {
    position: static;
    padding: 28px;
  }
  .contact-aside h2 {
    font-size: 33px;
  }
  .contact-aside>p {
    font-size: 14px;
  }
  .contact-facts {
    font-size: 12px;
  }
  .contact-facts .icon {
    width: 18px;
    height: 18px;
  }
  .contact-tabs {
    margin-bottom: 26px;
  }
  .contact-tabs>button {
    font-size: 12px;
    margin-right: 24px;
    gap: 9px;
  }
  .form-heading h2 {
    font-size: 27px;
  }
  .form-heading p {
    font-size: 13px;
  }
  .form-grid {
    gap: 21px 16px;
  }
  .field>label {
    font-size: 12px;
  }
  .field input,.field select,.field textarea {
    font-size: 14px;
    min-height: 47px;
    padding: 12px;
  }
  .optional {
    font-size: 8px;
    margin-left: 3px;
  }
  .interest-chips {
    gap: 7px;
  }
  .interest-chips span {
    font-size: 11px;
    padding: 10px 12px;
    min-height: 39px;
  }
  .meeting-preferences {
    padding-inline: 13px;
  }
  .meeting-preferences .form-grid {
    gap: 13px;
  }
  .meeting-preferences .field>label {
    font-size: 11px;
  }
  .meeting-preferences input,.meeting-preferences select {
    font-size: 12px;
    padding: 10px;
  }
  .local-disclosure {
    font-size: 10px;
  }
  .portal-demo {
    display: block;
    min-height: 500px;
  }
  .portal-nav {
    padding: 16px 18px;
    border-right: 0;
    border-bottom: 1px solid #dfc7cb;
    display: flex;
    flex-direction: row;
    gap: 15px;
    align-items: center;
  }
  .portal-nav>b {
    font-size: 32px;
    padding: 0;
  }
  .portal-nav>div {
    margin: 0;
    display: flex;
    gap: 3px;
    margin-left: auto;
  }
  .portal-nav button {
    font-size: 9px;
    padding: 9px 8px;
    gap: 5px;
    min-height: 36px;
  }
  .portal-nav button .icon {
    width: 12px;
    height: 12px;
  }
  .portal-nav>span {
    display: none;
  }
  .portal-body {
    padding: 23px 19px;
  }
  .portal-body>h2 {
    font-size: 29px;
    margin-top: 18px;
  }
  .portal-body>p {
    font-size: 11px;
  }
  .portal-body-top .eyebrow {
    font-size: 8px;
  }
  .portal-body-top>.concept-label {
    font-size: 7px;
  }
  .portal-banner {
    grid-template-columns: 1fr .55fr;
    margin-top: 25px;
    min-height: 183px;
  }
  .portal-banner>div:first-child {
    padding: 18px 15px;
  }
  .portal-banner span {
    font-size: 6px;
  }
  .portal-banner h3 {
    font-size: 21px;
    line-height: 1.15;
  }
  .portal-banner p {
    font-size: 10px;
    line-height: 1.7;
  }
  .portal-phases {
    gap: 7px;
    margin-top: 23px;
  }
  .portal-phases>div {
    font-size: 8px;
  }
  .portal-action-row>span {
    font-size: 10px;
    line-height: 1.7;
  }
  .portal-files button {
    gap: 12px;
  }
  .portal-files button>b {
    font-size: 12px;
  }
  .portal-files button small {
    font-size: 9px;
  }
  .document-dialog {
    padding: 34px 22px;
  }
  .document-dialog h2 {
    font-size: 27px;
  }
  .document-dialog .eyebrow {
    margin-top: 22px;
  }
  .document-dialog [data-document-body] {
    font-size: 13px;
  }
  .not-found-actions {
    padding-bottom: 65px;
    gap: 20px;
    flex-wrap: wrap;
  }
}

@media (max-width:390px) {
  .container {
    width: calc(100% - 32px);
  }
  .header-inner {
    gap: 12px;
  }
  .wordmark {
    font-size: 20px;
  }
  .nav-cta {
    font-size: 10px;
    padding: 7px 9px;
    gap: 5px;
  }
  .nav-cta>.icon {
    width: 12px;
    height: 12px;
  }
  .hero h1 {
    font-size: 40px;
  }
  .hero-actions {
    gap: 11px;
  }
  .hero-actions .button {
    font-size: 11px;
    padding-inline: 13px;
    gap: 13px;
  }
  .hero-actions .text-link {
    font-size: 10px;
  }
  .hero-benefits {
    gap: 12px;
  }
  .hero-benefits>span {
    font-size: 9px;
  }
  .hero-view {
    padding-inline: 19px 36px;
  }
  .hero-browser .mini-site-title {
    font-size: 25px;
  }
  .hero-browser .mini-site-hero {
    height: 215px;
  }
  .phone-frame {
    width: 97px;
    height: 198px;
    right: 9px;
    bottom: 12px;
  }
  .phone-site .mini-site-hero {
    height: 147px;
  }
  .phone-site .mini-site-title {
    font-size: 13px;
  }
  .showcase-controls {
    gap: 3px;
    padding-inline: 9px;
  }
  .showcase-controls>button {
    font-size: 9px;
  }
  .hero-showcase {
    min-height: 412px;
  }
  .hero-stage {
    min-height: 310px;
  }
  .annotation {
    bottom: -1px;
    font-size: 11px;
  }
  .project-featured .project-art {
    padding: 35px 22px;
    height: 336px;
  }
  .project-featured .mini-site-hero {
    height: 210px;
  }
  .project-booking .project-art {
    padding-inline: 29px;
  }
  .project-portal .project-art {
    padding-inline: 18px;
  }
  .project-caption h3 {
    font-size: 21px;
  }
  .service-select b {
    font-size: 21px;
  }
  .service-preview {
    padding: 20px;
  }
  .demo-toolbar {
    padding-inline: 12px;
    gap: 7px;
  }
  .demo-view-tabs>button {
    font-size: 8px;
    padding-inline: 7px;
  }
  .demo-toolbar .icon-button {
    min-width: 28px;
  }
  .demo-content {
    padding-inline: 17px;
  }
  .demo-brand {
    font-size: 23px;
  }
  .demo-bottom>span:last-child {
    font-size: 7px;
  }
  .demo-service-option b {
    font-size: 11px;
  }
  .demo-service-option small {
    font-size: 8px;
  }
  .demo-service-option>span:last-child {
    font-size: 7px;
  }
  .demo-dates {
    gap: 4px;
  }
  .demo-date>span {
    font-size: 6px;
  }
  .demo-date>b {
    font-size: 17px;
  }
  .demo-button {
    font-size: 9px;
  }
  .process-grid {
    gap: 26px 17px;
  }
  .process-step h3 {
    font-size: 20px;
  }
  .artifact-brief {
    width: 106px;
  }
  .artifact-plan {
    width: 108px;
  }
  .artifact-build {
    width: 113px;
  }
  .artifact-check {
    padding: 10px;
  }
  .artifact-check>span {
    font-size: 5.5px;
    gap: 6px;
  }
  .person-info>h3 {
    font-size: 16px;
  }
  .person-info>span {
    font-size: 6px;
  }
  .contact-tabs>button {
    font-size: 11px;
    margin-right: 17px;
    gap: 6px;
  }
  .contact-tabs .icon {
    width: 14px;
    height: 14px;
  }
  .form-grid {
    gap: 18px 12px;
  }
  .optional {
    font-size: 7px;
    margin-left: 1px;
  }
  .field input,.field textarea {
    font-size: 13px;
    padding-inline: 10px;
  }
  .meeting-preferences .field>label {
    font-size: 10px;
  }
  .meeting-preferences .optional {
    font-size: 7px;
  }
  .portal-nav {
    padding-inline: 14px;
    gap: 8px;
  }
  .portal-nav button {
    font-size: 8px;
    padding-inline: 7px;
  }
  .portal-nav button .icon {
    width: 11px;
    height: 11px;
  }
  .portal-body {
    padding-inline: 16px;
  }
  .portal-banner {
    grid-template-columns: 1fr .45fr;
  }
  .portal-banner h3 {
    font-size: 19px;
  }
  .portal-phases>div {
    font-size: 7px;
  }
}

@media (prefers-reduced-motion:reduce) {
  html {
    scroll-behavior: auto;
  }
  *,*::before,*::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
  .hero-browser,.project-featured .browser,.project-booking .mini-booking,.project-portal .mini-portal {
    transition: none;
  }
  .is-revealed {
    opacity: 1;
    transform: none;
  }
}

@media print {
  .site-header,.hero-showcase,.mobile-menu,.final-cta,.site-footer,.demo-app,.contact-form-wrap,.comparison-controls {
    display: none !important;
  }
  .container {
    width: 100%;
  }
  .section {
    padding: 25px 0;
  }
  body {
    font-size: 12pt;
    color: black;
    background: white;
  }
  a {
    text-decoration: underline;
  }
  h1 {
    font-size: 28pt;
  }
  h2 {
    font-size: 22pt;
  }
  .page-hero {
    padding: 20px 0;
  }
  .project-grid,.services-layout,.article-grid,.pricing-grid {
    display: block;
  }
  .project-card,.price-card {
    break-inside: avoid;
    margin-bottom: 25px;
  }
}

/* Actual interactive controls stay readable even when the surrounding concept artwork is miniature. */
.demo-view-tabs>button {
  font-size: 12px;
  min-height: 40px;
}

.demo-service-option b {
  font-size: 15px;
}

.demo-service-option small {
  font-size: 12px;
}

.demo-service-option>span:last-child {
  font-size: 10px;
}

.demo-date>span {
  font-size: 10px;
}

.demo-time {
  font-size: 14px;
  min-height: 44px;
}

.demo-button {
  font-size: 13px;
  min-height: 44px;
}

.demo-back {
  font-size: 13px;
  min-height: 44px;
}

.demo-bottom>span:last-child {
  font-size: 10px;
}

.portal-nav button {
  font-size: 13px;
  min-height: 44px;
}

.portal-files button>b {
  font-size: 14px;
}

.portal-files button small {
  font-size: 11px;
}

.interest-chips span {
  min-height: 44px;
  font-size: 12px;
}

.field input,.field select,.field textarea {
  font-size: 16px;
}

.field>label {
  font-size: 13px;
}

.form-privacy,.local-disclosure {
  font-size: 12px;
  line-height: 1.75;
}

.optional {
  font-size: 10px;
}

.contact-tabs>button {
  min-height: 48px;
}

@media (max-width:760px) {
  .demo-service-option {
    gap: 10px;
    padding: 12px 10px;
  }
  .demo-service-option b {
    font-size: 14px;
  }
  .demo-service-option small {
    font-size: 11px;
    line-height: 1.5;
  }
  .demo-service-option>span:last-child {
    font-size: 9px;
  }
  .demo-view-tabs>button {
    font-size: 11px;
    padding-inline: 9px;
  }
  .demo-toolbar {
    gap: 7px;
    padding-inline: 12px;
  }
  .demo-brand {
    font-size: 23px;
  }
  .demo-toolbar .icon-button {
    min-width: 32px;
  }
  .demo-button {
    font-size: 12px;
    gap: 10px;
  }
  .demo-actionbar>.small {
    font-size: 10px;
    max-width: 125px;
  }
  .demo-bottom>span:last-child {
    font-size: 9px;
  }
  .demo-date>span {
    font-size: 9px;
  }
  .demo-date>b {
    font-size: 21px;
  }
  .portal-nav button {
    font-size: 11px;
    padding-inline: 7px;
    gap: 4px;
  }
  .portal-nav button .icon {
    display: none;
  }
  .portal-files button>b {
    font-size: 13px;
  }
  .portal-phases>div {
    font-size: 10px;
  }
  .contact-tabs>button {
    font-size: 12px;
    margin-right: 16px;
  }
  .field input,.field select,.field textarea {
    font-size: 16px;
  }
  .meeting-preferences input,.meeting-preferences select {
    font-size: 14px;
  }
  .field>label,.meeting-preferences .field>label {
    font-size: 12px;
  }
  .optional,.meeting-preferences .optional {
    font-size: 10px;
  }
  .contact-facts {
    font-size: 13px;
  }
  .form-privacy,.local-disclosure {
    font-size: 11px;
  }
  .service-select small {
    font-size: 12px;
  }
}

@media (max-width:360px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
  .demo-toolbar {
    flex-wrap: wrap;
  }
  .demo-view-tabs {
    margin-left: auto;
  }
  .demo-toolbar>.icon-button {
    display: none;
  }
  .demo-actionbar>.small {
    display: none;
  }
  .portal-nav {
    gap: 5px;
  }
  .portal-nav button {
    font-size: 10px;
  }
  .hero-actions {
    flex-wrap: wrap;
    align-items: flex-start;
  }
  .hero-benefits {
    flex-wrap: wrap;
  }
  .hero h1 {
    font-size: 36px;
  }
  .demo-content {
    padding-inline: 12px;
  }
  .demo-service-option {
    gap: 8px;
  }
  .demo-service-option b {
    font-size: 13px;
  }
  .demo-service-option small {
    font-size: 10px;
  }
  .demo-radio {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
  }
}

