/* Customer Flow Studio — site styles
   Palette and shapes follow the approved "Open House" logo:
   deep teal C-doorway, coral → orange → pink door leaf, warm cream.
   The doorway (big rounded left side, squared right side) is the
   recurring frame; the door gradient is the "thread" of the customer path. */

@font-face {
  font-family: "Fraunces";
  src: url("../fonts/fraunces-var.woff2") format("woff2");
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Instrument Sans";
  src: url("../fonts/instrument-sans-var.woff2") format("woff2");
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}

:root {
  /* Brand */
  --teal: #006b5e;
  --teal-700: #005a4f;
  --teal-800: #004a41;
  --teal-900: #0a3831;
  --teal-950: #062822;
  --teal-50: #eaf3ee;
  --teal-100: #d5e8de;
  --coral: #ff6257;
  --orange: #ff862e;
  --pink: #f2378b;
  --door: linear-gradient(180deg, #ff862e 0%, #ff7d3a 30%, #ff6257 58%, #f6447d 82%, #f2378b 100%);
  --thread: linear-gradient(90deg, #ff862e, #ff6257 55%, #f2378b);
  --thread-v: linear-gradient(180deg, #ff862e, #ff6257 55%, #f2378b);

  /* Neutrals */
  --cream: #fff7eb;
  --paper: #fffcf7;
  --sand: #f6ead8;
  --sand-2: #efdfc6;
  --white: #fff;
  --ink: #0f2d28;
  --muted: #4a5e59;
  --line: rgba(0, 74, 65, 0.13);
  --line-strong: rgba(0, 74, 65, 0.26);
  --on-dark: #fff7eb;
  --on-dark-muted: #c9dcd3;
  --line-dark: rgba(255, 247, 235, 0.16);

  --focus: #0b2b26;
  --field-border: #7a8f8a; /* ≥3:1 against white, for form controls */

  /* Type */
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Instrument Sans", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  /* Layout */
  --container: 1240px;
  --gutter: clamp(16px, 4.4vw, 48px);
  --section: clamp(80px, 11vw, 152px);
  --radius: 14px;
  --radius-lg: 24px;
  --door-r: clamp(56px, 9vw, 120px);
  --shadow-sm: 0 1px 0 rgba(6, 40, 34, 0.04), 0 8px 18px -12px rgba(6, 40, 34, 0.3);
  --shadow: 0 1px 0 rgba(6, 40, 34, 0.04), 0 24px 48px -28px rgba(6, 40, 34, 0.45);
  --shadow-lg: 0 2px 0 rgba(6, 40, 34, 0.03), 0 40px 80px -40px rgba(6, 40, 34, 0.55);
  --header-h: 76px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* Base ------------------------------------------------------------------ */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: clamp(1rem, 0.96rem + 0.18vw, 1.0625rem);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
}

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

img {
  height: auto;
}

[hidden] {
  display: none !important;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: var(--font-display);
  font-optical-sizing: auto;
  font-weight: 500;
  line-height: 1.06;
  letter-spacing: -0.02em;
  color: var(--teal);
  text-wrap: balance;
}

p,
ul,
ol,
dl,
dd,
figure {
  margin: 0;
}

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

p {
  text-wrap: pretty;
}

a {
  color: var(--teal);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

a:hover {
  text-decoration-thickness: 2px;
}

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
  border-radius: 6px;
}

strong {
  font-weight: 650;
}

::selection {
  background: rgba(255, 98, 87, 0.28);
  color: var(--ink);
}

.container {
  width: 100%;
  max-width: calc(var(--container) + var(--gutter) * 2);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -100px;
  z-index: 200;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--teal-900);
  color: var(--on-dark);
  font-weight: 600;
  text-decoration: none;
}

.skip-link:focus {
  top: 12px;
}

main:focus {
  outline: none;
}

/* Development placeholders ------------------------------------------------ */

.dev-banner {
  background: #1d1a17;
  color: #f5ecdd;
  font-size: 0.875rem;
  line-height: 1.5;
}

.dev-banner p {
  max-width: calc(var(--container) + var(--gutter) * 2);
  margin-inline: auto;
  padding: 10px var(--gutter);
}

.dev-banner code {
  padding: 1px 6px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.12);
  font-size: 0.8125rem;
}

.ph {
  display: inline-block;
  padding: 4px 10px;
  border: 1.5px dashed #c2410c;
  border-radius: 6px;
  background: #fff1e2;
  color: #8a2c07;
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1.4;
}

.ph--dark {
  border-color: #ffb27a;
  background: rgba(255, 178, 122, 0.12);
  color: #ffd2ad;
}

/* Shared pieces ----------------------------------------------------------- */

.eyebrow,
.label,
.path-title {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
}

.eyebrow {
  margin-bottom: 20px;
}

/* The door leaf, as a small bullet */
.eyebrow::before,
.path-title::before {
  content: "";
  flex: none;
  width: 8px;
  height: 18px;
  background: var(--door);
  clip-path: polygon(0 16%, 100% 0, 100% 100%, 0 84%);
}

.eyebrow--light {
  color: #ffd9c4;
}

.section {
  position: relative;
  padding-block: var(--section);
}

.section-head {
  max-width: 800px;
  margin-bottom: clamp(44px, 6vw, 80px);
}

.section-head h2 {
  font-size: clamp(2.25rem, 1.4rem + 3vw, 4rem);
}

.section-head > p:not(.eyebrow) {
  margin-top: 20px;
  max-width: 620px;
  font-size: 1.075em;
  color: var(--muted);
}

.section-head--split {
  max-width: none;
  display: grid;
  gap: 20px 72px;
  align-items: end;
}

.section-head--split > p:not(.eyebrow) {
  margin-top: 0;
}

@media (min-width: 960px) {
  .section-head--split {
    grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
  }
  .section-head--split > p:not(.eyebrow) {
    padding-bottom: 8px;
  }
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.04em;
  line-height: 1.5;
  white-space: nowrap;
}

.pill--quiet {
  background: var(--teal-50);
  color: var(--teal-700);
}

.pill--label {
  background: var(--ink);
  color: var(--cream);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.66rem;
}

.tick,
.clock {
  position: relative;
  flex: none;
  display: inline-block;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--teal);
}

.tick::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 3.5px;
  width: 5px;
  height: 9px;
  border: solid var(--cream);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.tick--lg {
  width: 30px;
  height: 30px;
  background: var(--door);
}

.tick--lg::after {
  left: 10.5px;
  top: 6px;
  width: 8px;
  height: 14px;
  border-width: 0 2.5px 2.5px 0;
}

.clock {
  background: none;
  border: 2px solid var(--coral);
}

.clock::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 2.5px;
  width: 4px;
  height: 6px;
  border: solid var(--coral);
  border-width: 0 0 2px 2px;
}

.avatar {
  flex: none;
  display: inline-block;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #ffb07a, var(--coral) 60%, var(--pink));
}

.avatar--sm {
  width: 30px;
  height: 30px;
}

/* Buttons ----------------------------------------------------------------- */

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 24px;
  border: 1.5px solid transparent;
  border-radius: 999px;
  font: inherit;
  font-size: 0.975rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.005em;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  isolation: isolate;
  overflow: hidden;
  translate: var(--mx, 0) var(--my, 0);
  transition: background-color 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease), box-shadow 0.25s var(--ease), translate 0.35s var(--ease);
}

.btn--primary {
  background: var(--teal);
  color: var(--cream);
  box-shadow: 0 10px 24px -14px rgba(0, 74, 65, 0.8);
}

/* A sliver of door-light sweeps in from the left on hover */
.btn--primary::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--teal-900);
  clip-path: circle(0% at var(--hx, 0%) var(--hy, 50%));
  transition: clip-path 0.5s var(--ease);
}

.btn--primary::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--thread);
  opacity: 0;
  transform: scaleX(0.3);
  transition: opacity 0.3s var(--ease), transform 0.4s var(--ease);
}

.btn--primary:hover::before {
  clip-path: circle(150% at var(--hx, 0%) var(--hy, 50%));
}

.btn--primary:hover::after {
  opacity: 1;
  transform: none;
}

.btn--secondary {
  background: transparent;
  border-color: var(--line-strong);
  color: var(--teal);
}

.btn--secondary:hover {
  border-color: var(--teal);
  background: rgba(0, 107, 94, 0.05);
}

.btn--light {
  background: var(--cream);
  color: var(--teal-900);
}

.btn--light:hover {
  background: var(--white);
}

.btn--sm {
  min-height: 42px;
  padding: 0 18px;
  font-size: 0.9rem;
}

.btn:disabled {
  opacity: 0.6;
  cursor: progress;
}

/* Header ------------------------------------------------------------------ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 247, 235, 0.86);
  -webkit-backdrop-filter: blur(14px) saturate(1.3);
  backdrop-filter: blur(14px) saturate(1.3);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, background-color 0.3s;
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
  background: rgba(255, 247, 235, 0.94);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: var(--header-h);
}

.brand {
  flex: none;
  display: block;
  border-radius: 6px;
}

.brand img {
  width: auto;
  height: 40px;
}

.header-cta {
  margin-left: auto;
}

.site-nav {
  position: static;
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 0 16px;
  border: 1.5px solid var(--line-strong);
  border-radius: 999px;
  background: transparent;
  color: var(--teal);
  font: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
}

.nav-toggle__icon {
  display: grid;
  gap: 5px;
  width: 16px;
}

.nav-toggle__icon span {
  display: block;
  height: 1.5px;
  border-radius: 2px;
  background: currentColor;
  transition: transform 0.3s var(--ease);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__icon span:first-child {
  transform: translateY(3.25px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__icon span:last-child {
  transform: translateY(-3.25px) rotate(-45deg);
}

.nav-list a {
  display: block;
  color: var(--ink);
  font-weight: 550;
  text-decoration: none;
}

@media (max-width: 1079.98px) {
  .nav-menu {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    padding: 8px var(--gutter) 24px;
    border-bottom: 1px solid var(--line);
    background: var(--cream);
    box-shadow: 0 30px 40px -30px rgba(6, 40, 34, 0.35);
    max-height: calc(100vh - var(--header-h));
    overflow-y: auto;
  }

  .nav-menu.is-open {
    display: block;
    animation: menu-in 0.35s var(--ease);
  }

  .nav-list a {
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--teal);
  }

  .nav-cta {
    margin-top: 20px;
    width: 100%;
  }
}

@keyframes menu-in {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
}

@media (max-width: 519.98px) {
  .brand img {
    height: 36px;
  }
}

@media (min-width: 1080px) {
  .nav-toggle,
  .nav-cta {
    display: none;
  }
  .site-nav {
    order: 1;
    margin-left: auto;
  }
  .header-cta {
    order: 2;
    margin-left: 12px;
  }
  .nav-list {
    display: flex;
    gap: 4px;
  }
  .nav-list a {
    position: relative;
    padding: 10px 14px;
    border-radius: 999px;
    font-size: 0.95rem;
  }
  .nav-list a::after {
    content: "";
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 5px;
    height: 2px;
    border-radius: 2px;
    background: var(--thread);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s var(--ease);
  }
  .nav-list a:hover::after,
  .nav-list a[aria-current]::after {
    transform: none;
  }
}

/* Hero -------------------------------------------------------------------- */

.hero {
  position: relative;
  padding-block: clamp(40px, 6vw, 88px) clamp(64px, 8vw, 112px);
  overflow: clip;
}

/* Soft door-light washing in from the right */
.hero::before {
  content: "";
  position: absolute;
  inset: -20% -30% auto 35%;
  height: 120%;
  background:
    radial-gradient(40% 45% at 62% 38%, rgba(255, 134, 46, 0.16), transparent 70%),
    radial-gradient(35% 40% at 75% 60%, rgba(242, 55, 139, 0.1), transparent 70%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  gap: clamp(40px, 6vw, 72px);
  align-items: center;
}

@media (min-width: 1000px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  }
}

.hero-copy {
  container-type: inline-size;
}

.hero h1 {
  font-size: clamp(2.6rem, 12.4cqi, 6rem);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.035em;
}

.h1-line {
  display: block;
}

.h1-line--deep {
  margin-top: 0.08em;
  color: var(--teal-950);
}

.lede {
  margin-top: clamp(24px, 3vw, 32px);
  max-width: 34em;
  font-size: clamp(1.075rem, 1rem + 0.35vw, 1.225rem);
  line-height: 1.55;
  color: var(--muted);
}

.hero .actions {
  margin-top: 32px;
}

.hero-note {
  margin-top: 28px;
  padding-left: 16px;
  border-left: 2px solid;
  border-image: var(--thread-v) 1;
  font-size: 0.9375rem;
  color: var(--muted);
}

/* Hero illustration: the doorway, with the path's four moments around it */

.hero-art {
  position: relative;
  max-width: 560px;
  width: 100%;
  justify-self: center;
}

.hero-art__scene {
  --dx: 0;
  --dy: 0;
  position: relative;
  aspect-ratio: 1 / 1.08;
  font-size: clamp(0.68rem, 0.6rem + 0.25vw, 0.78rem);
}

.doorway {
  position: absolute;
  left: 20%;
  top: 3%;
  width: 60%;
  aspect-ratio: 271 / 396;
  translate: calc(var(--dx) * -6px) calc(var(--dy) * -6px);
  transition: translate 0.6s var(--ease);
}

/* The C: teal body with a cream opening on the right, as in the logo */
.doorway__frame {
  position: absolute;
  inset: 0;
  border-radius: 41% 0 0 41% / 28% 0 0 28%;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.08), transparent 40%),
    var(--teal);
  box-shadow: var(--shadow-lg);
}

.doorway__opening {
  position: absolute;
  left: 30.6%;
  right: 0;
  top: 19.7%;
  bottom: 16.7%;
  border-radius: 26% 0 0 26% / 18% 0 0 18%;
  background: linear-gradient(180deg, #fffaf2, var(--cream));
  perspective: 700px;
}

/* The door leaf is hinged on its right edge and swings with the cursor */
.doorway__leaf {
  position: absolute;
  top: 3%;
  bottom: 3%;
  left: 8%;
  right: 5%;
  background:
    radial-gradient(120% 60% at 0% 0%, rgba(255, 98, 87, 0.9), rgba(255, 98, 87, 0) 70%),
    var(--door);
  transform-origin: 100% 50%;
  transform: rotateY(calc(var(--door-angle, 52deg) * -1));
  transition: transform 0.9s var(--ease);
  box-shadow: -20px 0 40px -20px rgba(242, 55, 139, 0.4);
}

/* Light spilling through the open door */
.doorway__opening::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(70% 50% at 100% 50%, rgba(255, 134, 46, 0.2), transparent 70%);
  pointer-events: none;
}

.float {
  --depth: 14;
  position: absolute;
  z-index: 2;
  padding: 12px 14px;
  border-radius: 14px;
  background: var(--white);
  box-shadow: var(--shadow), 0 0 0 1px rgba(0, 74, 65, 0.06);
  font-size: 1em;
  line-height: 1.35;
  translate: calc(var(--dx) * var(--depth) * 1px) calc(var(--dy) * var(--depth) * 1px);
  transition: translate 0.6s var(--ease);
  animation: bob 7s ease-in-out infinite;
}

.float__stage {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 8px;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
}

.float__stage span {
  display: inline-grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--thread);
  color: var(--white);
  font-size: 0.6rem;
  letter-spacing: 0;
}

.float--attract {
  --depth: 22;
  left: 0;
  top: 7%;
  width: 36%;
  animation-delay: -1s;
}

.float__ad {
  display: grid;
  gap: 8px;
}

.float__who {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 650;
  color: var(--ink);
}

.float__who small {
  display: block;
  font-weight: 500;
  color: var(--muted);
}

.float__avatar {
  flex: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #ffb07a, var(--coral) 60%, var(--pink));
}

.float__media {
  height: 64px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, transparent 55%, rgba(255, 255, 255, 0.25) 55%),
    linear-gradient(160deg, #cfe2d8, #9cc4b3 60%, #6fa592);
}

.float__cta {
  padding: 7px 10px;
  border-radius: 8px;
  background: var(--teal);
  color: var(--cream);
  font-weight: 650;
  text-align: center;
}

.float--book {
  --depth: 30;
  right: 0;
  top: 30%;
  width: 36%;
  animation-delay: -3s;
}

.float__big {
  font-family: var(--font-display);
  font-size: 1.7em;
  white-space: nowrap;
  font-weight: 500;
  line-height: 1.1;
  color: var(--teal);
}

.float__ok {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  color: var(--ink);
  font-weight: 600;
}

.float__ok .tick {
  width: 16px;
  height: 16px;
}

.float__ok .tick::after {
  left: 5px;
  top: 2.5px;
  width: 4.5px;
  height: 8px;
}

.float--respond {
  --depth: 18;
  left: 0;
  bottom: 12%;
  width: 38%;
  animation-delay: -5s;
}

.float__title {
  font-weight: 650;
  color: var(--ink);
}

.float__sub {
  margin-top: 2px;
  color: var(--muted);
}

.float__list {
  display: grid;
  gap: 5px;
  margin-top: 8px;
  color: var(--muted);
}

.float__list li {
  display: flex;
  align-items: center;
  gap: 7px;
}

.float__list .tick {
  width: 14px;
  height: 14px;
}

.float__list .tick::after {
  left: 4.5px;
  top: 2px;
  width: 4px;
  height: 7px;
  border-width: 0 1.5px 1.5px 0;
}

.float--retain {
  --depth: 26;
  right: 3%;
  bottom: 0;
  width: 34%;
  border-left: 3px solid var(--coral);
  animation-delay: -2s;
}

@keyframes bob {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-7px);
  }
}

.hero-art__caption {
  margin-top: 10px;
  text-align: right;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

/* The customer path — four linked steps under the hero */

.path-wrap {
  position: relative;
  margin-top: clamp(56px, 7vw, 96px);
}

.path-title {
  margin-bottom: 20px;
}

.path {
  position: relative;
  display: grid;
  gap: 12px;
  counter-reset: path;
}

@media (min-width: 640px) {
  .path {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1080px) {
  .path {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    border-top: 1px solid var(--line-strong);
  }
  /* the thread: a gradient line that runs across all four steps */
  .path::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -1px;
    height: 2px;
    background: var(--thread);
    transform: scaleX(var(--path-progress, 1));
    transform-origin: left;
  }
}

.path__step a {
  position: relative;
  display: grid;
  gap: 8px;
  height: 100%;
  padding: 22px 22px 26px;
  border-radius: var(--radius);
  background: rgba(255, 252, 247, 0.7);
  border: 1px solid var(--line);
  color: var(--ink);
  text-decoration: none;
  transition: background-color 0.3s var(--ease);
}

@media (min-width: 1080px) {
  .path__step a {
    padding: 28px 28px 8px 0;
    border: 0;
    border-radius: 0;
    background: none;
  }
  .path__step + .path__step a {
    padding-left: 28px;
    border-left: 1px solid var(--line);
  }
  .path__step a::before {
    content: "";
    position: absolute;
    top: -6px;
    left: 0;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--cream);
    border: 2px solid var(--coral);
    transition: background-color 0.3s;
  }
  .path__step + .path__step a::before {
    left: 28px;
  }
  .path__step a:hover::before {
    background: var(--coral);
  }
}

.path__num {
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--coral);
  font-weight: 600;
  color: #c2410c;
}

.path__stage {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px 10px;
  font-family: var(--font-display);
  font-size: 1.45rem;
  line-height: 1.15;
  color: var(--teal);
}

.path__svc {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 650;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal-700);
  padding: 2px 8px;
  border-radius: 999px;
  background: var(--teal-50);
}

.path__text {
  font-size: 0.95rem;
  color: var(--muted);
}

.path__step a:hover .path__stage {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

/* Problems ---------------------------------------------------------------- */

.problems {
  background: var(--paper);
  border-top: 1px solid var(--line);
}

.problem-grid {
  display: grid;
  gap: 20px;
}

@media (min-width: 760px) {
  .problem-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.problem-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-lg);
  background: var(--cream);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.4s var(--ease), translate 0.4s var(--ease);
}

.problem-card:hover {
  border-color: var(--line-strong);
  box-shadow: var(--shadow);
}

.problem-card__body {
  padding: 24px clamp(22px, 3vw, 32px) 32px;
}

.problem-card h3 {
  margin-top: 10px;
  font-size: clamp(1.5rem, 1.2rem + 0.9vw, 1.9rem);
}

.problem-card__body > p:last-child {
  margin-top: 12px;
  color: var(--muted);
}

.illus-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.7rem;
  font-weight: 650;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.problem-card__num {
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0;
  color: #c2410c;
}

/* Problem illustrations — quiet "before" scenes on sand */
.illus {
  position: relative;
  display: grid;
  align-content: center;
  gap: 8px;
  min-height: 250px;
  padding: 28px clamp(22px, 4vw, 40px);
  background:
    radial-gradient(60% 80% at 100% 0%, rgba(255, 134, 46, 0.1), transparent 70%),
    var(--sand);
  border-bottom: 1px solid var(--line);
  font-size: 0.8rem;
  line-height: 1.35;
}

.flag {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px 9px;
  border-radius: 999px;
  background: #fde3d8;
  color: #9a2a12;
  font-size: 0.72rem;
  font-weight: 650;
  white-space: nowrap;
}

.flag::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--coral);
}

.post {
  width: min(100%, 280px);
  padding: 12px;
  border-radius: 14px;
  background: var(--white);
  box-shadow: var(--shadow);
  rotate: -2deg;
}

.post__head {
  display: flex;
  align-items: center;
  gap: 8px;
}

.post__avatar {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--sand-2);
}

.post__name {
  font-weight: 650;
}

.post__name small {
  display: block;
  font-weight: 500;
  color: var(--muted);
}

.post__media {
  height: 70px;
  margin-top: 10px;
  border-radius: 8px;
  background: linear-gradient(160deg, #e8dcc9, #d9c6a8);
}

.post__react {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  color: var(--muted);
}

.post__hearts {
  display: flex;
}

.post__hearts span {
  width: 14px;
  height: 14px;
  margin-right: -4px;
  border-radius: 50%;
  border: 2px solid var(--white);
  background: var(--pink);
}

.post__hearts span:nth-child(2) {
  background: var(--orange);
}

.post__hearts span:nth-child(3) {
  background: var(--coral);
}

.illus__flags {
  position: absolute;
  right: clamp(16px, 4vw, 36px);
  bottom: 28px;
  display: grid;
  justify-items: end;
  gap: 8px;
}

.illus--dm {
  gap: 7px;
}

.bubble {
  max-width: 72%;
  padding: 8px 12px;
  border-radius: 16px;
}

.bubble--in {
  justify-self: start;
  background: var(--white);
  border-bottom-left-radius: 4px;
  box-shadow: var(--shadow-sm);
}

.bubble--out {
  justify-self: end;
  background: var(--teal);
  color: var(--cream);
  border-bottom-right-radius: 4px;
}

.bubble--typing {
  display: flex;
  gap: 4px;
  padding: 11px 14px;
}

.bubble--typing span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--muted);
  opacity: 0.5;
  animation: typing 1.2s infinite;
}

.bubble--typing span:nth-child(2) {
  animation-delay: 0.15s;
}

.bubble--typing span:nth-child(3) {
  animation-delay: 0.3s;
}

@keyframes typing {
  30% {
    opacity: 1;
    transform: translateY(-2px);
  }
}

.inbox-row {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: 10px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.inbox-row:nth-child(even) {
  margin-left: 14px;
  margin-right: -6px;
}

.inbox-src {
  font-size: 0.68rem;
  font-weight: 650;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

.inbox-what {
  font-weight: 600;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.illus--quiet .inbox-row {
  opacity: 0.9;
}

.illus--quiet .inbox-row:nth-child(n + 3) {
  opacity: 0.72;
}

@media (max-width: 419.98px) {
  .inbox-row {
    grid-template-columns: minmax(0, 1fr) auto;
  }
  .inbox-src {
    display: none;
  }
  .inbox-row:nth-child(even) {
    margin: 0;
  }
}

/* The principle — a big editorial pull line */
.principle {
  display: grid;
  gap: 20px 72px;
  margin-top: clamp(64px, 9vw, 120px);
  padding-top: clamp(40px, 5vw, 56px);
  border-top: 1px solid var(--line-strong);
}

@media (min-width: 960px) {
  .principle {
    grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
    align-items: start;
  }
}

.principle__lead {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 1.3rem + 2.2vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--teal);
  text-wrap: balance;
}

.principle__text {
  color: var(--muted);
  font-size: 1.05em;
}

/* Services ---------------------------------------------------------------- */

.services {
  background: var(--cream);
}

.services-layout {
  display: grid;
  gap: 40px;
}

.rail {
  display: none;
}

@media (min-width: 1100px) {
  .services-layout {
    grid-template-columns: 200px minmax(0, 1fr);
    gap: 64px;
  }

  .rail {
    display: block;
    position: sticky;
    top: calc(var(--header-h) + 40px);
    align-self: start;
  }

  .rail__list {
    position: relative;
    display: grid;
    gap: 4px;
    padding-left: 18px;
  }

  .rail__list::before,
  .rail__list::after {
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    bottom: 6px;
    width: 2px;
    border-radius: 2px;
    background: var(--line);
  }

  .rail__list::after {
    background: var(--thread-v);
    transform: scaleY(var(--rail-progress, 0));
    transform-origin: top;
    transition: transform 0.2s linear;
  }

  .rail a {
    display: flex;
    gap: 12px;
    padding: 8px 0;
    color: var(--muted);
    font-weight: 550;
    font-size: 0.95rem;
    text-decoration: none;
    transition: color 0.25s;
  }

  .rail__num {
    font-family: var(--font-display);
    color: var(--muted);
  }

  .rail a:hover,
  .rail a.is-active {
    color: var(--teal);
  }

  .rail a.is-active .rail__num {
    color: #c2410c;
  }
}

.chapters {
  display: grid;
  gap: clamp(80px, 10vw, 140px);
}

.chapter {
  scroll-margin-top: 12px;
}

.chapter__head {
  display: grid;
  gap: 18px 64px;
  padding-bottom: clamp(28px, 4vw, 44px);
  border-bottom: 1px solid var(--line);
}

@media (min-width: 900px) {
  .chapter__head {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    align-items: end;
  }
  .chapter__num,
  .chapter__head h3,
  .chapter__lede {
    grid-column: 1;
  }
  .chapter__for {
    grid-column: 2;
    grid-row: 2 / span 2;
    align-self: end;
  }
}

.chapter__num {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
}

.chapter__num span {
  font-family: var(--font-display);
  font-size: 3.25rem;
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: -0.03em;
  background: var(--thread);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.chapter__head h3 {
  font-size: clamp(2rem, 1.3rem + 2.6vw, 3.4rem);
}

.chapter__lede {
  font-size: clamp(1.075rem, 1rem + 0.3vw, 1.2rem);
  line-height: 1.55;
  color: var(--ink);
  max-width: 36em;
}

.chapter__for {
  padding: 16px 18px;
  border-radius: var(--radius);
  background: var(--paper);
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.95rem;
}

.chapter__body {
  display: grid;
  gap: 40px 56px;
  padding-top: clamp(32px, 4vw, 48px);
}

@media (min-width: 1000px) {
  .chapter__body {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    align-items: start;
  }
  .chapter:nth-child(even) .chapter__body {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  }
  .chapter:nth-child(even) .sketch {
    order: -1;
  }
  .chapter__body .sketch {
    position: sticky;
    top: calc(var(--header-h) + 32px);
  }
}

.label {
  margin-bottom: 16px;
}

.label--gap {
  margin-top: 32px;
}

.scope-list {
  display: grid;
  gap: 0;
}

.scope-list li {
  position: relative;
  padding: 11px 0 11px 28px;
  border-top: 1px solid var(--line);
  font-size: 0.975rem;
}

.scope-list li:last-child {
  border-bottom: 1px solid var(--line);
}

.scope-list li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 1.05em;
  width: 7px;
  height: 14px;
  background: var(--door);
  clip-path: polygon(0 16%, 100% 0, 100% 100%, 0 84%);
}

.scope-list strong {
  color: var(--teal);
}

.chapter__meta {
  display: grid;
  gap: 24px;
  margin-top: clamp(32px, 4vw, 48px);
}

.facts {
  display: grid;
  gap: 12px;
}

@media (min-width: 640px) {
  .facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.fact {
  padding: 18px 20px;
  border-radius: var(--radius);
  background: var(--teal-50);
}

.fact dt {
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal-700);
}

.fact dd {
  margin-top: 6px;
  font-size: 0.975rem;
}

.chapter__note {
  max-width: 60em;
  padding-left: 16px;
  border-left: 2px solid var(--line-strong);
  color: var(--muted);
  font-size: 0.95rem;
}

.touch-types {
  display: grid;
  gap: 12px;
}

@media (min-width: 640px) {
  .touch-types {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.touch {
  padding: 18px 20px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--paper);
  font-size: 0.95rem;
}

.touch--message {
  border-color: rgba(255, 98, 87, 0.4);
}

.touch__kind {
  margin-bottom: 6px;
  font-weight: 700;
  color: var(--teal);
}

.touch--message .touch__kind {
  color: #b13a10;
}

/* Service illustrations — polished UI moments inside a doorway-shaped stage */

.sketch {
  position: relative;
}

.sketch__stage {
  position: relative;
  display: grid;
  gap: 14px;
  padding: clamp(24px, 4vw, 44px) clamp(18px, 4vw, 44px);
  padding-left: clamp(28px, 5vw, 56px);
  border-radius: var(--door-r) 20px 20px var(--door-r);
  background:
    radial-gradient(70% 55% at 100% 0%, rgba(255, 134, 46, 0.2), transparent 70%),
    radial-gradient(60% 50% at 0% 100%, rgba(0, 107, 94, 0.1), transparent 70%),
    var(--sand);
  font-size: 0.82rem;
  line-height: 1.4;
  transform: perspective(1100px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg));
  transition: transform 0.6s var(--ease);
  transform-style: preserve-3d;
}

.sketch__stage::before {
  content: "";
  position: absolute;
  right: 0;
  top: 18%;
  bottom: 18%;
  width: 6px;
  border-radius: 6px 0 0 6px;
  background: var(--door);
}

.sketch figcaption {
  display: flex;
  gap: 10px;
  align-items: baseline;
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.85rem;
}

.ui {
  position: relative;
  padding: 16px;
  border-radius: 14px;
  background: var(--white);
  box-shadow: var(--shadow), 0 0 0 1px rgba(0, 74, 65, 0.05);
}

.ui--float {
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(0, 74, 65, 0.06);
}

.ui-label {
  margin-bottom: 8px;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal-700);
}

.ui-flow {
  display: grid;
  gap: 8px;
}

.ui-flow li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 550;
}

.ui-flow .is-next {
  color: #b13a10;
}

/* 01 ad */
.ui--ad {
  width: min(100%, 330px);
}

.ui-ad__head {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ui-ad__name {
  flex: 1;
  font-weight: 650;
}

.ui-ad__name small {
  display: block;
  font-weight: 500;
  color: var(--muted);
  font-size: 0.72rem;
}

.ui-ad__media {
  display: grid;
  place-items: end start;
  height: 120px;
  margin-top: 12px;
  padding: 10px;
  border-radius: 10px;
  background:
    linear-gradient(180deg, transparent 50%, rgba(6, 40, 34, 0.35)),
    linear-gradient(135deg, transparent 58%, rgba(255, 255, 255, 0.22) 58%),
    linear-gradient(160deg, #d8e8df, #9ec6b5 55%, #5f9985);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 600;
}

.ui-ad__copy {
  margin-top: 10px;
}

.ui-ad__cta {
  margin-top: 12px;
  padding: 9px 12px;
  border-radius: 9px;
  background: var(--teal);
  color: var(--cream);
  font-weight: 650;
  text-align: center;
}

.ui--form {
  width: min(100%, 300px);
  justify-self: end;
  margin-top: -18px;
}

.ui-fields {
  display: grid;
  gap: 6px;
}

.ui-fields li {
  display: grid;
  gap: 1px;
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.ui-fields li span:first-child {
  font-size: 0.68rem;
  color: var(--muted);
}

.ui-fields li span:last-child {
  font-weight: 600;
}

.ui--route {
  width: min(100%, 300px);
  margin-left: 8%;
  border-left: 3px solid var(--coral);
}

/* 02 booking */
.ui--chip {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px 8px 8px;
  border-radius: 999px;
  font-weight: 650;
  margin-bottom: -26px;
  margin-left: -8px;
  z-index: 2;
}

.ui-chip__icon {
  width: 24px;
  height: 24px;
  border-radius: 7px;
  background: linear-gradient(45deg, var(--orange), var(--coral) 45%, var(--pink));
  box-shadow: inset 0 0 0 5px rgba(255, 255, 255, 0.35);
}

.ui--booking {
  padding-top: 36px;
}

.ui-book__head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 12px;
  margin-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.ui-book__title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--teal);
}

.ui-book__title small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  color: var(--muted);
}

.ui-services {
  display: grid;
  gap: 6px;
  margin-bottom: 14px;
}

.ui-services li {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 9px;
}

.ui-services li span:last-child {
  color: var(--muted);
}

.ui-services .is-on {
  border-color: var(--teal);
  background: var(--teal-50);
  font-weight: 650;
  box-shadow: inset 3px 0 0 var(--teal);
}

.ui-days,
.ui-slots {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 6px;
}

.ui-slots {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 8px;
}

.ui-days span,
.ui-slots span {
  padding: 7px 0;
  border-radius: 8px;
  border: 1px solid var(--line);
  text-align: center;
  font-weight: 600;
}

.ui-days .is-on,
.ui-slots .is-on {
  background: var(--teal);
  border-color: var(--teal);
  color: var(--cream);
}

.ui-slots .is-off {
  color: rgba(74, 94, 89, 0.5);
  text-decoration: line-through;
  background: repeating-linear-gradient(135deg, transparent 0 5px, rgba(0, 74, 65, 0.05) 5px 10px);
}

.ui--toast {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 12px;
  width: min(100%, 300px);
  margin-top: -34px;
  margin-right: -10px;
  font-weight: 650;
}

.ui--toast small {
  display: block;
  font-weight: 500;
  color: var(--muted);
  font-size: 0.72rem;
}

/* 03 lead response */
.ui--inquiry {
  width: min(100%, 340px);
}

.ui-inquiry__tag {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 650;
  color: #b13a10;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 0 rgba(255, 98, 87, 0.6);
  animation: ping 2.4s infinite;
}

@keyframes ping {
  70% {
    box-shadow: 0 0 0 9px rgba(255, 98, 87, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 98, 87, 0);
  }
}

.ui-inquiry__what {
  margin-top: 8px;
  font-family: var(--font-display);
  font-size: 1.2rem;
  line-height: 1.2;
  color: var(--teal);
}

.ui-inquiry__meta {
  margin-top: 4px;
  font-size: 0.72rem;
  color: var(--muted);
}

.ui--steps {
  width: min(100%, 330px);
  justify-self: end;
  margin-top: -20px;
}

.ui--steps .ui-flow {
  position: relative;
  gap: 12px;
}

.ui--steps .ui-flow::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 12px;
  bottom: 12px;
  width: 2px;
  background: var(--teal-100);
}

.ui--steps .ui-flow li > span {
  z-index: 1;
}

.ui-status {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.ui-status li {
  padding: 4px 11px;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-weight: 600;
  font-size: 0.75rem;
  color: var(--muted);
}

.ui-status .is-on {
  background: var(--coral);
  border-color: var(--coral);
  color: #2b0d06;
}

/* 04 retention */
.ui-track {
  position: relative;
  display: grid;
  gap: 10px;
  padding-left: 22px;
}

.ui-track::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: var(--teal-100);
}

.ui-track li {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 8px;
}

.ui-track li::before {
  content: "";
  position: absolute;
  left: -22px;
  top: 0.35em;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--teal);
}

.ui-track li:last-child::before {
  background: var(--teal);
}

.kind {
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.kind--reminder {
  background: var(--teal-50);
  color: var(--teal-700);
}

.kind--message {
  background: #fde3d8;
  color: #9a2a12;
}

.ui--track-2 {
  width: min(100%, 360px);
  justify-self: end;
  margin-top: -8px;
  margin-right: -10px;
}

@media (max-width: 519.98px) {
  .ui--form,
  .ui--toast,
  .ui--steps,
  .ui--track-2 {
    margin-right: 0;
  }
  .ui--route {
    margin-left: 0;
  }
}

/* How it works (dark band) ------------------------------------------------ */

.how {
  background:
    radial-gradient(50% 60% at 100% 0%, rgba(255, 98, 87, 0.12), transparent 70%),
    var(--teal-900);
  color: var(--on-dark);
}

.how h2,
.how h3 {
  color: var(--on-dark);
}

.how :focus-visible,
.site-footer :focus-visible,
.contact-intro :focus-visible,
.demo__screen :focus-visible {
  outline-color: var(--cream);
}

.steps {
  display: grid;
  gap: 16px;
  counter-reset: step;
}

@media (min-width: 700px) {
  .steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1080px) {
  .steps {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
  }
}

.step {
  position: relative;
  padding: 28px 24px 32px;
  border-radius: var(--radius-lg);
  background: rgba(255, 247, 235, 0.04);
  border: 1px solid var(--line-dark);
}

@media (min-width: 1080px) {
  .step {
    padding: 0 28px 8px;
    border: 0;
    border-left: 1px solid var(--line-dark);
    border-radius: 0;
    background: none;
  }
  .step:first-child {
    padding-left: 0;
    border-left: 0;
  }
}

.step__num {
  font-family: var(--font-display);
  font-size: clamp(3rem, 2rem + 3vw, 4.5rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.04em;
  background: var(--thread);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.step h3 {
  margin-top: 18px;
  font-size: 1.4rem;
  line-height: 1.15;
}

.step p:last-child {
  margin-top: 12px;
  color: var(--on-dark-muted);
  font-size: 0.975rem;
}

.responsibility {
  display: grid;
  gap: 12px 64px;
  margin-top: clamp(56px, 7vw, 88px);
  padding: clamp(28px, 4vw, 44px);
  border-radius: var(--door-r) var(--radius-lg) var(--radius-lg) var(--door-r);
  padding-left: clamp(36px, 6vw, 88px);
  background: var(--cream);
  color: var(--ink);
}

.how .responsibility h3 {
  color: var(--teal);
  font-size: clamp(1.6rem, 1.2rem + 1.2vw, 2.2rem);
}

@media (min-width: 900px) {
  .responsibility {
    grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr);
    align-items: center;
  }
}

.support {
  display: grid;
  gap: 16px 64px;
  margin-top: clamp(48px, 6vw, 72px);
  padding-top: clamp(32px, 4vw, 48px);
  border-top: 1px solid var(--line-dark);
}

@media (min-width: 900px) {
  .support {
    grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr);
  }
}

.support h3 {
  font-size: clamp(1.5rem, 1.2rem + 1vw, 2rem);
}

.support-copy {
  display: grid;
  gap: 12px;
  color: var(--on-dark-muted);
}

.support-aside {
  color: #ffd9c4;
}

/* Demos ------------------------------------------------------------------- */

.demo-grid {
  display: grid;
  gap: 20px;
}

@media (min-width: 900px) {
  .demo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.demo {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-lg);
  background: var(--paper);
  border: 1px solid var(--line);
  overflow: hidden;
  scroll-margin-top: 12px;
}

.demo__screen {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 16 / 10;
  background:
    radial-gradient(60% 70% at 85% 20%, rgba(255, 98, 87, 0.28), transparent 70%),
    var(--teal);
  color: var(--on-dark);
  overflow: hidden;
}

.demo__screen--video {
  background: #000;
}

.demo__video {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.demo__state {
  display: grid;
  justify-items: center;
  gap: 10px;
  padding: 24px;
  text-align: center;
}

.demo__mark {
  width: 44px;
  margin-bottom: 8px;
  transition: transform 0.6s var(--ease);
}

.demo:hover .demo__mark {
  transform: translateY(-4px) rotate(-3deg);
}

.demo__status {
  font-family: var(--font-display);
  font-size: 1.5rem;
}

.demo__hint {
  max-width: 28em;
  color: var(--on-dark-muted);
  font-size: 0.925rem;
}

.demo__body {
  padding: 24px clamp(22px, 3vw, 32px) 30px;
}

.demo__tag {
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #b13a10;
}

.demo h3 {
  margin-top: 8px;
  font-size: 1.75rem;
}

.demo__shows {
  margin-top: 14px;
  font-size: 0.875rem;
  color: var(--muted);
}

.demo__path {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}

.demo__path li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  font-weight: 600;
}

.demo__path li + li::before {
  content: "";
  width: 14px;
  height: 2px;
  border-radius: 2px;
  background: var(--thread);
}

/* FAQ --------------------------------------------------------------------- */

.faq {
  background: var(--paper);
  border-top: 1px solid var(--line);
}

.faq-grid {
  display: grid;
  gap: 32px 80px;
}

@media (min-width: 960px) {
  .faq-grid {
    grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
  }
  .faq-head {
    position: sticky;
    top: calc(var(--header-h) + 40px);
    align-self: start;
  }
}

.faq-list {
  border-top: 1px solid var(--line-strong);
}

.faq-item {
  border-bottom: 1px solid var(--line-strong);
}

.faq-item summary {
  position: relative;
  display: block;
  padding: 22px 56px 22px 0;
  cursor: pointer;
  list-style: none;
}

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

.faq-item summary h3 {
  font-size: clamp(1.2rem, 1.05rem + 0.5vw, 1.45rem);
  line-height: 1.25;
  transition: color 0.2s;
}

.faq-item summary:hover h3 {
  color: var(--teal-900);
}

.faq-item summary::before,
.faq-item summary::after {
  content: "";
  position: absolute;
  right: 12px;
  top: 50%;
  width: 16px;
  height: 2px;
  border-radius: 2px;
  background: var(--teal);
  transition: transform 0.35s var(--ease), background-color 0.3s;
}

.faq-item summary::after {
  transform: rotate(90deg);
}

.faq-item[open] summary::after {
  transform: rotate(0deg);
}

.faq-item[open] summary::before,
.faq-item[open] summary::after {
  background: var(--coral);
}

.faq-answer {
  padding: 0 56px 26px 0;
  color: var(--muted);
}

.faq-item[open] .faq-answer {
  animation: faq-in 0.4s var(--ease);
}

@keyframes faq-in {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
}

/* Contact ----------------------------------------------------------------- */

.contact {
  background: var(--paper);
  padding-top: 0;
}

.contact-card {
  display: grid;
  gap: 40px 64px;
  padding: clamp(28px, 5vw, 72px) clamp(20px, 5vw, 72px);
  border-radius: calc(var(--door-r) * 1.4) var(--radius-lg) var(--radius-lg) var(--radius-lg);
  background:
    radial-gradient(45% 55% at 0% 0%, rgba(255, 134, 46, 0.18), transparent 70%),
    radial-gradient(40% 50% at 100% 100%, rgba(242, 55, 139, 0.12), transparent 70%),
    var(--teal);
  color: var(--on-dark);
}

@media (min-width: 1000px) {
  .contact-card {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    padding-left: clamp(56px, 6vw, 96px);
  }
}

.contact-intro h2 {
  color: var(--on-dark);
  font-size: clamp(2.1rem, 1.4rem + 2.6vw, 3.5rem);
}

.contact-intro > p:not(.eyebrow) {
  margin-top: 20px;
  color: var(--on-dark-muted);
}

.contact-intro a {
  color: var(--on-dark);
}

.contact-points {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.contact-points li {
  position: relative;
  padding-left: 22px;
  color: var(--on-dark);
  font-size: 0.95rem;
}

.contact-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35em;
  width: 7px;
  height: 14px;
  background: var(--door);
  clip-path: polygon(0 16%, 100% 0, 100% 100%, 0 84%);
}

.contact-email {
  margin-top: 28px;
  color: var(--on-dark-muted);
}

.contact-email:empty {
  display: none;
}

.contact-panel {
  align-self: start;
  padding: clamp(22px, 3.5vw, 40px);
  border-radius: var(--radius-lg);
  background: var(--paper);
  color: var(--ink);
  box-shadow: var(--shadow-lg);
}

.inquiry-form {
  display: grid;
  gap: 22px;
}

.field-row {
  display: grid;
  gap: 22px;
}

@media (min-width: 600px) {
  .field-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }
}

.field {
  display: grid;
  gap: 8px;
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.field label,
.field legend {
  padding: 0;
  font-weight: 650;
  font-size: 0.95rem;
  color: var(--ink);
}

.optional {
  font-weight: 500;
  color: var(--muted);
}

.hint {
  font-size: 0.85rem;
  color: var(--muted);
}

input[type="text"],
input[type="email"],
textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--field-border);
  border-radius: 12px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
  font-size: 1rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

textarea {
  min-height: 132px;
  resize: vertical;
}

input::placeholder {
  color: #7a8a86;
}

input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(0, 107, 94, 0.18);
}

[aria-invalid="true"] input,
input[aria-invalid="true"],
textarea[aria-invalid="true"] {
  border-color: #b3261e;
}

.field--choices[aria-invalid="true"] .choices {
  border-radius: 12px;
  box-shadow: 0 0 0 2px #b3261e;
}

.field-error {
  color: #b3261e;
  font-size: 0.875rem;
  font-weight: 600;
}

.choices {
  display: grid;
  gap: 8px;
  margin-top: 4px;
}

@media (min-width: 600px) {
  .choices {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.choice {
  position: relative;
}

.choice input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
}

.choice label {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 8px;
  height: 100%;
  padding: 12px 14px 12px 44px;
  border: 1.5px solid var(--field-border);
  border-radius: 12px;
  background: var(--white);
  font-weight: 550;
  font-size: 0.925rem;
  line-height: 1.35;
  cursor: pointer;
  transition: border-color 0.2s, background-color 0.2s;
}

.choice label::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 50%;
  width: 20px;
  height: 20px;
  margin-top: -10px;
  border: 1.5px solid var(--field-border);
  border-radius: 6px;
  background: var(--white);
  transition: background-color 0.2s, border-color 0.2s;
}

.choice label::after {
  content: "";
  position: absolute;
  left: 21px;
  top: 50%;
  width: 6px;
  height: 11px;
  margin-top: -7px;
  border: solid var(--cream);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg) scale(0);
  transition: transform 0.2s var(--ease);
}

.choice input:checked + label {
  border-color: var(--teal);
  background: var(--teal-50);
}

.choice input:checked + label::before {
  background: var(--teal);
  border-color: var(--teal);
}

.choice input:checked + label::after {
  transform: rotate(45deg) scale(1);
}

.choice input:focus-visible + label {
  outline: 3px solid var(--focus);
  outline-offset: 2px;
}

.choice:last-child:nth-child(odd) {
  grid-column: 1 / -1;
}

.choice__svc {
  padding: 1px 8px;
  border-radius: 999px;
  background: var(--teal-50);
  color: var(--teal-700);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.choice input:checked + label .choice__svc {
  background: var(--white);
}

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

.form-privacy {
  font-size: 0.85rem;
  color: var(--muted);
}

.form-submit {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 20px;
}

.form-submit .btn {
  min-width: 180px;
}

.form-status {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--muted);
}

.form-status.is-error {
  color: #b3261e;
}

.form-preview-note {
  display: block;
}

.form-success {
  display: grid;
  justify-items: start;
  gap: 12px;
  padding: 12px 0;
}

.form-success:focus {
  outline: none;
}

.form-success__mark {
  width: 40px;
}

.form-success h3 {
  font-size: 1.75rem;
}

.form-success p {
  color: var(--muted);
}

.email-panel {
  display: grid;
  justify-items: start;
  gap: 16px;
}

.email-panel h3 {
  font-size: 1.75rem;
}

.email-list {
  display: grid;
  gap: 8px;
}

.email-list li {
  position: relative;
  padding-left: 20px;
}

.email-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 7px;
  height: 14px;
  background: var(--door);
  clip-path: polygon(0 16%, 100% 0, 100% 100%, 0 84%);
}

/* Footer ------------------------------------------------------------------ */

.site-footer {
  position: relative;
  padding-block: clamp(64px, 8vw, 104px) 32px;
  background: var(--teal-950);
  color: var(--on-dark-muted);
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  background: var(--thread);
}

.footer-grid {
  display: grid;
  gap: 40px;
}

@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (min-width: 1000px) {
  .footer-grid {
    grid-template-columns: minmax(0, 1.6fr) repeat(3, minmax(0, 1fr));
  }
  .footer-brand {
    grid-column: auto;
  }
}

.footer-brand img {
  width: 200px;
}

.footer-brand p {
  margin-top: 18px;
  max-width: 24em;
}

.footer-label {
  margin-bottom: 14px;
  color: #ffd9c4;
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-footer ul {
  display: grid;
  gap: 10px;
}

.site-footer a {
  color: var(--on-dark);
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
}

.footer-handle {
  color: var(--on-dark-muted);
}

.footer-base {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  margin-top: clamp(48px, 6vw, 80px);
  padding-top: 24px;
  font-size: 0.875rem;
  background: linear-gradient(var(--line-dark), var(--line-dark)) var(--gutter) 0 / calc(100% - var(--gutter) * 2) 1px no-repeat;
}

/* Legal page -------------------------------------------------------------- */

.legal {
  padding-block: clamp(40px, 6vw, 88px) var(--section);
}

.legal-inner {
  max-width: 760px;
}

.legal h1 {
  font-size: clamp(2.5rem, 1.6rem + 3vw, 4rem);
}

.legal .updated {
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.9375rem;
}

.legal h2 {
  margin-top: 44px;
  font-size: clamp(1.4rem, 1.2rem + 0.7vw, 1.8rem);
}

.legal h2 + p,
.legal p + p,
.legal ul,
.legal ul + p {
  margin-top: 12px;
}

.legal ul {
  padding-left: 1.2em;
  display: grid;
  gap: 6px;
  list-style: disc;
}

.legal .ph {
  display: block;
  margin-top: 20px;
}

.simple-header .header-inner {
  justify-content: space-between;
}

.back-link {
  font-weight: 600;
  text-decoration: none;
}

.back-link:hover {
  text-decoration: underline;
}

.not-found {
  padding-block: clamp(64px, 12vw, 160px);
}

.not-found h1 {
  font-size: clamp(2.75rem, 1.8rem + 3.6vw, 4.75rem);
}

.not-found p {
  margin-top: 16px;
  color: var(--muted);
}

.not-found .actions {
  margin-top: 28px;
}

/* Scroll reveal (only when JS has confirmed it can run it) --------------- */

.reveal-on .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
  transition-delay: var(--reveal-delay, 0s);
}

.reveal-on .reveal.is-in {
  opacity: 1;
  transform: none;
}

/* Pointer effects (fine pointers only; enabled by JS) ------------------ */

/* Spotlight: a soft pool of door-light that follows the cursor on cards */
.fx .spot::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  border-radius: inherit;
  background: radial-gradient(360px circle at var(--sx, 50%) var(--sy, 50%), rgba(255, 134, 46, 0.12), transparent 65%);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}

.fx .spot:hover::after {
  opacity: 1;
}

/* Mobile visitor journey --------------------------------------------------
   Phones (often arriving from an Instagram DM) get a shorter first screen,
   a compact four-service overview straight after the hero copy, collapsible
   service detail, and a contact section that leads with a working option.
   Wider screens are unaffected. */

/* Labels that swap on phones */
.header-cta__short,
.lbl-short {
  display: none;
}

.hero-email {
  margin-top: 18px;
  font-size: 0.95rem;
  color: var(--muted);
}

.hero-email a {
  font-weight: 600;
  color: var(--teal);
}

.nav-email {
  display: block;
  margin-top: 14px;
  text-align: center;
  font-weight: 600;
  color: var(--teal);
}

/* Disclosure toggle is a phone-only control */
.chapter__toggle {
  display: none;
}

.email-panel__address a {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 1.1rem + 0.8vw, 1.6rem);
  color: var(--teal);
  overflow-wrap: anywhere;
}

.email-panel__intro {
  margin-top: 6px;
  font-weight: 600;
}

@media (min-width: 1000px) {
  .contact-card {
    grid-template-rows: auto 1fr;
  }
  .contact-panel {
    grid-column: 2;
    grid-row: 1 / span 2;
  }
  .contact-points {
    grid-column: 1;
    grid-row: 2;
    align-self: start;
    margin-top: 0;
  }
}

@media (min-width: 1080px) {
  .nav-email {
    display: none;
  }
}

@media (max-width: 719.98px) {
  :root {
    --section: 64px;
  }

  /* Long anchor jumps on a tall phone page are faster without smooth scroll */
  html {
    scroll-behavior: auto;
  }

  /* Header: keep a contact button visible next to the menu */
  .header-cta {
    display: inline-flex;
    margin-left: auto;
    min-height: 44px;
    padding-inline: 16px;
  }
  .header-cta__long {
    display: none;
  }
  .header-cta__short {
    display: inline;
  }
  .site-nav {
    margin-left: 0;
  }

  /* Hero: copy, then the four-service overview, then the illustration */
  .hero {
    display: flex;
    flex-direction: column;
    padding-block: 20px 56px;
  }
  .hero-grid {
    display: contents;
  }
  .hero-copy {
    order: 1;
    padding-inline: var(--gutter);
  }
  .hero > .container {
    order: 2;
  }
  .hero-art {
    order: 3;
    width: min(100% - var(--gutter) * 2, 360px);
    margin: 40px auto 0;
  }
  .eyebrow {
    margin-bottom: 14px;
    letter-spacing: 0.1em;
  }
  .hero h1 {
    font-size: clamp(2.1rem, 10.8cqi, 2.75rem);
    line-height: 1;
  }
  .lede {
    margin-top: 16px;
    font-size: 1.05rem;
    line-height: 1.5;
  }
  .lede__detail {
    display: none;
  }
  .hero .actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 22px;
  }
  .hero .actions .btn {
    width: 100%;
    min-height: 50px;
    padding-inline: 12px;
    font-size: 0.95rem;
  }
  .lbl-long {
    display: none;
  }
  .lbl-short {
    display: inline;
  }
  .hero-email {
    margin-top: 14px;
  }
  .hero-note {
    display: none;
  }

  /* Four-service overview: one compact row per service */
  .path-wrap {
    margin-top: 28px;
  }
  .path-title {
    margin-bottom: 12px;
  }
  .path {
    gap: 8px;
  }
  .path__step a {
    grid-template-columns: auto minmax(0, 1fr);
    gap: 2px 12px;
    padding: 14px 16px;
  }
  .path__num {
    grid-row: span 2;
    padding-top: 3px;
  }
  .path__stage {
    font-size: 1.15rem;
    gap: 4px 8px;
  }
  .path__text {
    font-size: 0.875rem;
    line-height: 1.45;
  }

  /* Problems: text-first cards; the before-scenes are decorative */
  .problem-grid {
    gap: 12px;
  }
  .problem-card .illus {
    display: none;
  }
  .problem-card__body {
    padding: 20px 20px 22px;
  }
  .problem-card h3 {
    margin-top: 6px;
    font-size: 1.35rem;
  }
  .problem-card__body > p:last-child {
    margin-top: 8px;
    font-size: 0.95rem;
  }
  .section-head {
    margin-bottom: 28px;
  }

  /* Services: shorter chapters, detail behind a toggle */
  .chapters {
    gap: 56px;
  }
  .chapter__head {
    gap: 12px;
    padding-bottom: 20px;
  }
  .chapter__num span {
    font-size: 2.4rem;
  }
  .chapter__toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 20px;
    padding: 14px 16px;
    min-height: 48px;
    border: 1px solid var(--line-strong);
    border-radius: var(--radius);
    background: var(--paper);
    color: var(--teal);
    font-weight: 650;
    font-size: 0.95rem;
    line-height: 1.3;
    list-style: none;
    cursor: pointer;
  }
  .chapter__toggle::-webkit-details-marker {
    display: none;
  }
  .chapter__toggle::after {
    content: "";
    flex: none;
    width: 9px;
    height: 9px;
    margin-right: 4px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: translateY(-2px) rotate(45deg);
    transition: transform 0.2s var(--ease);
  }
  .chapter__more[open] > .chapter__toggle::after {
    transform: translateY(2px) rotate(-135deg);
  }
  .chapter__more .chapter__body {
    padding-top: 20px;
  }
  /* The toggle already says "What's included" */
  .chapter:not(#retention) .chapter__scope > .label:first-child {
    display: none;
  }
  .chapter__meta {
    margin-top: 20px;
  }

  /* How it works: number beside the title */
  .step {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 6px 14px;
    padding: 18px 18px 20px;
  }
  .step__num {
    grid-row: span 2;
    font-size: 2.1rem;
  }
  .step h3 {
    margin-top: 2px;
    font-size: 1.2rem;
  }
  .step p:last-child {
    margin-top: 0;
    font-size: 0.925rem;
  }

  /* Contact: heading, one line, then a working option */
  .contact-card {
    gap: 22px;
    padding: 28px 18px 24px;
  }
  .contact-intro h2 {
    font-size: clamp(1.75rem, 1.4rem + 2.5vw, 2.1rem);
  }
  .contact-intro > p:not(.eyebrow) {
    margin-top: 12px;
  }
  .contact-intro__more {
    display: none;
  }
  .contact-email {
    margin-top: 16px;
  }
  .contact-email__link {
    font-weight: 650;
    overflow-wrap: anywhere;
  }
  .contact-panel {
    padding: 20px 16px;
  }
  .contact-points {
    margin-top: 0;
  }
}

@media (max-width: 399.98px) {
  /* Icon-only menu button (the label stays for screen readers) */
  .nav-toggle {
    padding: 0 13px;
    min-width: 44px;
    min-height: 44px;
  }
  .nav-toggle__label {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }
  .header-cta {
    padding-inline: 14px;
  }
}

@media (max-width: 359.98px) {
  .brand img {
    height: 32px;
  }
  .hero .actions {
    grid-template-columns: 1fr;
  }
}

/* Motion preferences ------------------------------------------------------ */

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .float {
    animation: none;
  }
}

/* Print ------------------------------------------------------------------- */

@media print {
  .site-header,
  .dev-banner,
  .nav-toggle,
  .skip-link {
    position: static;
  }
  .nav-menu,
  .hero-art {
    display: none !important;
  }
  .how,
  .contact-card,
  .site-footer {
    background: none;
    color: var(--ink);
  }
  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}
