:root {
  --ink: #042445;
  --muted: #667489;
  --paper: #ffffff;
  --soft: #f5f8fb;
  --line: #d9e2ec;
  --teal: #17c0b5;
  --teal-dark: #0f928b;
  --blue: #1f6feb;
  --yellow: #f3b236;
  --shadow: 0 24px 70px rgba(4, 36, 69, 0.14);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, #f8fbfd 0%, #ffffff 44%, #f5f8fb 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.intro-body {
  min-height: 100vh;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 40%, rgba(23, 192, 181, 0.12), transparent 34%),
    linear-gradient(180deg, #f8fbfd 0%, #ffffff 100%);
}

.intro-screen {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 28px;
  padding: 32px;
  isolation: isolate;
}

.intro-logo-build {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 2.5vw, 28px);
  width: min(720px, 92vw);
  color: var(--ink);
  transform-origin: center;
}

.intro-calendar {
  width: clamp(118px, 22vw, 188px);
  overflow: visible;
  filter: drop-shadow(0 18px 28px rgba(4, 36, 69, 0.12));
}

.intro-outline {
  fill: none;
  stroke: var(--ink);
  stroke-width: 11;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 360;
  stroke-dashoffset: 360;
  animation: introDrawOutline 900ms 120ms cubic-bezier(.55, .05, .2, 1) forwards;
}

.intro-cell {
  fill: #cbcfd4;
  opacity: 0;
  transform-box: fill-box;
  transform-origin: center;
  animation: introCellPop 260ms cubic-bezier(.2, .9, .2, 1) forwards;
}

.intro-cell-1 { animation-delay: 700ms; }
.intro-cell-2 { animation-delay: 770ms; }
.intro-cell-3 { animation-delay: 840ms; }
.intro-cell-4 { animation-delay: 910ms; }
.intro-cell-5 { animation-delay: 980ms; }
.intro-cell-6 { animation-delay: 1050ms; }
.intro-cell-7 { animation-delay: 1120ms; }
.intro-cell-8 { animation-delay: 1190ms; }

.intro-selected-slot {
  fill: var(--teal);
  opacity: 0;
  transform-box: fill-box;
  transform-origin: center;
  animation: introSlotPop 360ms 1320ms cubic-bezier(.2, .9, .2, 1) forwards;
}

.intro-check {
  fill: none;
  stroke: #fff;
  stroke-width: 6;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 42;
  stroke-dashoffset: 42;
  animation: introDrawCheck 420ms 1580ms ease-out forwards;
}

.intro-wordmark {
  display: flex;
  align-items: baseline;
  color: var(--ink);
  font-size: clamp(3.2rem, 10vw, 7.6rem);
  font-weight: 830;
  line-height: 0.9;
}

.intro-wordmark span {
  display: inline-block;
  opacity: 0;
  transform: translateY(18px);
  animation: introLetterIn 260ms ease-out forwards;
}

.intro-wordmark span:nth-child(1) { animation-delay: 1780ms; }
.intro-wordmark span:nth-child(2) { animation-delay: 1850ms; }
.intro-wordmark span:nth-child(3) { animation-delay: 1920ms; }
.intro-wordmark span:nth-child(4) { animation-delay: 1990ms; }
.intro-wordmark span:nth-child(5) { animation-delay: 2060ms; }
.intro-wordmark span:nth-child(6) { animation-delay: 2130ms; }
.intro-wordmark span:nth-child(7) { animation-delay: 2200ms; }
.intro-wordmark span:nth-child(8) { animation-delay: 2270ms; }
.intro-wordmark span:nth-child(9) { animation-delay: 2340ms; }

.wordmark-v {
  color: var(--teal);
}

.intro-title {
  max-width: 860px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.35rem, 6vw, 5.4rem);
  line-height: 1;
  text-align: center;
  opacity: 0;
  transform: translateY(18px);
  animation: introTitleIn 720ms 1680ms ease-out forwards;
}

.intro-burst {
  position: absolute;
  inset: 50%;
  width: 1px;
  height: 1px;
  pointer-events: none;
  z-index: -1;
}

.intro-burst span {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--teal);
  opacity: 0;
}

.intro-burst span:nth-child(2n) {
  background: var(--blue);
}

.intro-burst span:nth-child(3n) {
  background: var(--yellow);
}

.intro-screen.is-exploding .intro-logo-build,
.intro-screen.is-exploding .intro-title {
  animation: introExplode 820ms cubic-bezier(.16, .86, .22, 1) forwards;
}

.intro-screen.is-exploding .intro-title {
  animation-delay: 90ms;
}

.intro-screen.is-exploding .intro-burst span {
  animation: burstParticle 980ms ease-out forwards;
}

.intro-screen.is-exploding .intro-burst span:nth-child(1) { --x: -42vw; --y: -26vh; }
.intro-screen.is-exploding .intro-burst span:nth-child(2) { --x: 38vw; --y: -32vh; }
.intro-screen.is-exploding .intro-burst span:nth-child(3) { --x: -34vw; --y: 30vh; }
.intro-screen.is-exploding .intro-burst span:nth-child(4) { --x: 46vw; --y: 22vh; }
.intro-screen.is-exploding .intro-burst span:nth-child(5) { --x: 0vw; --y: -42vh; }
.intro-screen.is-exploding .intro-burst span:nth-child(6) { --x: 0vw; --y: 38vh; }
.intro-screen.is-exploding .intro-burst span:nth-child(7) { --x: -50vw; --y: 4vh; }
.intro-screen.is-exploding .intro-burst span:nth-child(8) { --x: 50vw; --y: -2vh; }

.logo-particles {
  position: absolute;
  inset: 50%;
  width: min(720px, 92vw);
  height: 210px;
  transform: translate(-50%, -58%);
  pointer-events: none;
  opacity: 0;
}

.logo-particles span {
  position: absolute;
  width: var(--s, 12px);
  height: var(--s, 12px);
  border-radius: var(--r, 3px);
  background: var(--c, var(--ink));
  opacity: 0;
  transform: translate(0, 0) rotate(0) scale(0.9);
}

.logo-particles span:nth-child(1) { left: 4%; top: 30%; --s: 18px; --c: var(--ink); --x: -34vw; --y: -28vh; --rot: -160deg; }
.logo-particles span:nth-child(2) { left: 8%; top: 58%; --s: 14px; --c: #cbcfd4; --x: -42vw; --y: 12vh; --rot: 130deg; }
.logo-particles span:nth-child(3) { left: 13%; top: 42%; --s: 13px; --c: #cbcfd4; --x: -28vw; --y: 34vh; --rot: 220deg; }
.logo-particles span:nth-child(4) { left: 18%; top: 66%; --s: 20px; --c: var(--teal); --x: -18vw; --y: 42vh; --rot: -240deg; }
.logo-particles span:nth-child(5) { left: 24%; top: 44%; --s: 9px; --c: #fff; --x: -8vw; --y: -40vh; --rot: 180deg; }
.logo-particles span:nth-child(6) { left: 33%; top: 46%; --s: 12px; --c: var(--ink); --x: 2vw; --y: -45vh; --rot: -90deg; }
.logo-particles span:nth-child(7) { left: 39%; top: 46%; --s: 12px; --c: var(--ink); --x: 14vw; --y: -38vh; --rot: 140deg; }
.logo-particles span:nth-child(8) { left: 45%; top: 46%; --s: 12px; --c: var(--ink); --x: 24vw; --y: -26vh; --rot: -200deg; }
.logo-particles span:nth-child(9) { left: 51%; top: 46%; --s: 12px; --c: var(--ink); --x: 34vw; --y: -12vh; --rot: 260deg; }
.logo-particles span:nth-child(10) { left: 57%; top: 46%; --s: 12px; --c: var(--ink); --x: 42vw; --y: 4vh; --rot: -180deg; }
.logo-particles span:nth-child(11) { left: 63%; top: 46%; --s: 12px; --c: var(--ink); --x: 38vw; --y: 26vh; --rot: 210deg; }
.logo-particles span:nth-child(12) { left: 69%; top: 46%; --s: 12px; --c: var(--ink); --x: 25vw; --y: 40vh; --rot: -120deg; }
.logo-particles span:nth-child(13) { left: 75%; top: 46%; --s: 15px; --c: var(--teal); --x: 10vw; --y: 46vh; --rot: 300deg; }
.logo-particles span:nth-child(14) { left: 82%; top: 46%; --s: 12px; --c: var(--ink); --x: -6vw; --y: 44vh; --rot: -300deg; }
.logo-particles span:nth-child(15) { left: 88%; top: 38%; --s: 8px; --c: var(--teal); --x: 46vw; --y: -34vh; --rot: 180deg; }
.logo-particles span:nth-child(16) { left: 21%; top: 24%; --s: 10px; --c: #cbcfd4; --x: -48vw; --y: -6vh; --rot: -110deg; }
.logo-particles span:nth-child(17) { left: 16%; top: 50%; --s: 10px; --c: #cbcfd4; --x: -50vw; --y: 28vh; --rot: 250deg; }
.logo-particles span:nth-child(18) { left: 28%; top: 62%; --s: 8px; --c: var(--teal); --x: -24vw; --y: -46vh; --rot: -260deg; }
.logo-particles span:nth-child(19) { left: 74%; top: 34%; --s: 8px; --c: var(--ink); --x: 18vw; --y: -48vh; --rot: 100deg; }
.logo-particles span:nth-child(20) { left: 92%; top: 52%; --s: 10px; --c: var(--ink); --x: 52vw; --y: 18vh; --rot: -210deg; }

.intro-screen.is-exploding .logo-particles {
  opacity: 1;
}

.intro-screen.is-exploding .logo-particles span {
  animation: logoParticleExplode 980ms cubic-bezier(.14, .72, .2, 1) forwards;
}

.intro-screen.is-exploding .logo-particles span:nth-child(2n) {
  animation-delay: 40ms;
}

.intro-screen.is-exploding .logo-particles span:nth-child(3n) {
  animation-delay: 80ms;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 78px;
  padding: 0 max(28px, calc((100vw - 1180px) / 2));
  border-bottom: 1px solid rgba(217, 226, 236, 0.84);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
}

.brand {
  position: relative;
  display: inline-flex;
  align-items: center;
  overflow: hidden;
}

.brand img {
  width: 188px;
  height: auto;
  display: block;
  animation: headerLogoIn 720ms ease-out both;
}

.brand::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 -42%;
  width: 38%;
  background: linear-gradient(90deg, transparent, rgba(23, 192, 181, 0.32), transparent);
  transform: skewX(-18deg);
  animation: headerLogoSweep 1250ms 500ms ease-out forwards;
}

.nav-actions a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  font-weight: 750;
}

.nav-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.nav-actions a[aria-current="page"] {
  border-color: var(--ink);
  color: var(--ink);
}

.hero {
  width: min(1180px, calc(100% - 40px));
  min-height: calc(100vh - 78px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(360px, 0.9fr) minmax(0, 1.1fr);
  gap: 52px;
  align-items: center;
  padding: 68px 0 76px;
}

.hero-animation {
  min-height: 540px;
  display: grid;
  place-items: center;
}

.product-screenshot-stage {
  width: min(100%, 620px);
  display: grid;
  place-items: center;
}

.product-screenshot {
  display: block;
  width: 100%;
  max-width: 620px;
  height: auto;
  aspect-ratio: 1099 / 619;
  object-fit: contain;
  border: 1px solid rgba(217, 226, 236, 0.95);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: #fff;
}

.logo-stage {
  position: relative;
  width: min(100%, 480px);
  min-height: 500px;
  display: grid;
  place-items: center;
  isolation: isolate;
}

.logo-stage::before,
.logo-stage::after {
  content: "";
  position: absolute;
  inset: 42px 18px auto;
  height: 360px;
  border: 1px solid rgba(217, 226, 236, 0.9);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
  z-index: -2;
  transform: rotate(-2deg);
}

.logo-stage::after {
  inset: 72px 48px auto;
  height: 300px;
  box-shadow: 0 16px 42px rgba(4, 36, 69, 0.08);
  transform: rotate(2.5deg);
  z-index: -1;
}

.calendar-mark {
  width: min(330px, 78vw);
  filter: drop-shadow(0 18px 32px rgba(4, 36, 69, 0.16));
  animation: floatIn 900ms cubic-bezier(.2, .9, .2, 1) both;
}

.mark-outline {
  fill: none;
  stroke: var(--ink);
  stroke-width: 11;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 360;
  stroke-dashoffset: 360;
  animation: drawMark 1200ms 180ms cubic-bezier(.55, .05, .2, 1) forwards;
}

.cell {
  fill: #cbcfd4;
  opacity: 0;
  transform-box: fill-box;
  transform-origin: center;
  animation: cellPop 420ms cubic-bezier(.2, .9, .2, 1) forwards;
}

.cell-1 { animation-delay: 680ms; }
.cell-2 { animation-delay: 760ms; }
.cell-3 { animation-delay: 840ms; }
.cell-4 { animation-delay: 920ms; }
.cell-5 { animation-delay: 1000ms; }

.selected-slot {
  fill: var(--teal);
  opacity: 0;
  transform-box: fill-box;
  transform-origin: center;
  animation: slotIn 500ms 1120ms cubic-bezier(.2, .9, .2, 1) forwards;
}

.check {
  fill: none;
  stroke: #fff;
  stroke-width: 6;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 40;
  stroke-dashoffset: 40;
  animation: drawCheck 520ms 1450ms ease-out forwards;
}

.logo-wordmark {
  width: min(360px, 82vw);
  height: auto;
  margin-top: -92px;
  opacity: 0;
  transform: translateY(14px);
  animation: wordmarkIn 700ms 1620ms ease-out forwards;
}

.booking-chips {
  position: absolute;
  right: 10px;
  bottom: 36px;
  display: grid;
  gap: 8px;
}

.booking-chips span {
  width: max-content;
  max-width: 210px;
  padding: 9px 12px;
  border: 1px solid rgba(217, 226, 236, 0.95);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 24px rgba(4, 36, 69, 0.09);
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 780;
  opacity: 0;
  transform: translateX(14px);
  animation: chipIn 480ms ease-out forwards;
}

.booking-chips span:nth-child(1) { animation-delay: 1900ms; }
.booking-chips span:nth-child(2) { animation-delay: 2020ms; }
.booking-chips span:nth-child(3) { animation-delay: 2140ms; }
.booking-chips span:nth-child(4) { animation-delay: 2260ms; }

.hero-copy {
  padding-top: 12px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(2.65rem, 5.2vw, 5.55rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.hero-copy h1 {
  max-width: 760px;
  font-size: clamp(2rem, 3.1vw, 3.35rem);
  line-height: 1.1;
  text-wrap: balance;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 3.4vw, 3.25rem);
  line-height: 1.02;
  letter-spacing: 0;
}

p {
  color: var(--muted);
  line-height: 1.72;
}

.lead {
  max-width: 790px;
  font-size: clamp(1.08rem, 1.55vw, 1.24rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  font-weight: 820;
  font-size: 1rem;
  cursor: pointer;
}

.button.primary {
  border-color: var(--ink);
  background: var(--ink);
  color: #fff;
}

.button.full {
  width: 100%;
}

.price-note {
  color: var(--muted);
  font-size: 0.96rem;
  font-weight: 720;
}

.request-section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto 92px;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.78fr);
  gap: 28px;
  align-items: stretch;
}

.request-copy,
.contact-form {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 16px 42px rgba(4, 36, 69, 0.08);
}

.request-copy {
  padding: clamp(28px, 5vw, 54px);
}

.request-copy p {
  font-size: 1.05rem;
}

.contact-form {
  padding: 28px;
}

.form-head {
  margin-bottom: 22px;
}

.form-head h2 {
  margin-bottom: 8px;
  font-size: clamp(1.7rem, 2.5vw, 2.2rem);
}

.form-head p {
  margin-bottom: 0;
}

label {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
}

label span {
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 760;
  line-height: 1.4;
}

input,
textarea {
  width: 100%;
  border: 1px solid #cbd7e4;
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-size: 1rem;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

input {
  min-height: 46px;
  padding: 0 13px;
}

textarea {
  min-height: 148px;
  padding: 12px 13px;
  resize: vertical;
}

input:focus,
textarea:focus {
  border-color: var(--teal-dark);
  box-shadow: 0 0 0 4px rgba(23, 192, 181, 0.14);
}

.form-note {
  margin: 14px 0 0;
  color: #7b8796;
  font-size: 0.85rem;
  line-height: 1.5;
}

@keyframes floatIn {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes drawMark {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes cellPop {
  from {
    opacity: 0;
    transform: scale(0.6);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes slotIn {
  from {
    opacity: 0;
    transform: scale(0.7);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes drawCheck {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes wordmarkIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes chipIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes introDrawOutline {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes introCellPop {
  from {
    opacity: 0;
    transform: scale(0.55);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes introSlotPop {
  from {
    opacity: 0;
    transform: scale(0.65);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes introDrawCheck {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes introLetterIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes introTitleIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes introExplode {
  0% {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0) scale(1) rotate(0);
  }
  100% {
    opacity: 0;
    filter: blur(14px);
    transform: translateY(-8px) scale(2.35) rotate(5deg);
  }
}

@keyframes burstParticle {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.4);
  }
  18% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate(calc(-50% + var(--x)), calc(-50% + var(--y))) scale(3.1);
  }
}

@keyframes logoParticleExplode {
  0% {
    opacity: 0;
    filter: blur(0);
    transform: translate(0, 0) rotate(0) scale(0.7);
  }
  10% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    filter: blur(5px);
    transform: translate(var(--x), var(--y)) rotate(var(--rot)) scale(1.9);
  }
}

@keyframes headerLogoIn {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes headerLogoSweep {
  from {
    left: -42%;
  }
  to {
    left: 108%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }
}

@media (max-width: 980px) {
  .hero,
  .request-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 0;
    padding-top: 42px;
  }

  .hero-copy {
    display: contents;
  }

  .hero-copy .eyebrow {
    order: 1;
  }

  .hero-copy h1 {
    order: 2;
  }

  .hero-animation {
    order: 3;
    min-height: auto;
  }

  .hero-copy .lead {
    order: 4;
  }

  .hero-copy .hero-actions {
    order: 5;
  }

  .logo-stage {
    min-height: 420px;
  }

  .intro-logo-build {
    flex-direction: column;
    gap: 8px;
  }

  .intro-wordmark {
    font-size: clamp(3rem, 17vw, 5rem);
  }
}

@media (max-width: 640px) {
  .site-header {
    min-height: 66px;
    padding: 0 20px;
  }

  .brand img {
    width: 150px;
  }

  .nav-actions a {
    min-height: 38px;
    padding: 0 12px;
    font-size: 0.9rem;
  }

  .hero,
  .request-section {
    width: min(100% - 28px, 1180px);
  }

  .hero {
    gap: 20px;
    padding: 32px 0 56px;
  }

  .hero-animation {
    min-height: 360px;
  }

  .logo-stage {
    min-height: 350px;
  }

  .logo-stage::before {
    inset: 34px 6px auto;
    height: 260px;
  }

  .logo-stage::after {
    inset: 58px 26px auto;
    height: 220px;
  }

  .calendar-mark {
    width: min(260px, 82vw);
  }

  .logo-wordmark {
    width: min(280px, 82vw);
    margin-top: -72px;
  }

  .booking-chips {
    position: static;
    margin-top: -18px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
  }

  .booking-chips span {
    width: auto;
    max-width: none;
    text-align: center;
    font-size: 0.82rem;
  }

  h1 {
    font-size: clamp(2.25rem, 12vw, 3.6rem);
  }

  .lead {
    font-size: 1.03rem;
  }

  .request-section {
    margin-bottom: 48px;
  }

  .request-copy,
  .contact-form {
    padding: 22px;
  }
}
