/* ═══════════════════════════════════════════════════════════════
   Digital Dragonfruit — digitaldragonfruit.com
   Mobile-first. No build step: plain CSS, custom properties only.
   ═══════════════════════════════════════════════════════════════ */

:root {
  /* Brand */
  --pink:      #FF2E7E;
  --pitaya:    #E01B6F;
  --green:     #2FBF71;
  --ink:       #1D0F2A;
  --cream:     #FFF9F4;

  --ink-70:    color-mix(in srgb, var(--ink) 70%, transparent);
  --ink-55:    color-mix(in srgb, var(--ink) 55%, transparent);
  --ink-12:    color-mix(in srgb, var(--ink) 12%, transparent);
  --ink-08:    color-mix(in srgb, var(--ink) 8%, transparent);
  --pink-12:   color-mix(in srgb, var(--pink) 12%, transparent);

  --surface:   #FFFFFF;
  --radius:    18px;
  --radius-lg: 26px;

  --shadow-sm: 0 1px 2px rgba(29,15,42,.05), 0 4px 14px -8px rgba(29,15,42,.18);
  --shadow-md: 0 2px 6px rgba(29,15,42,.05), 0 18px 40px -22px rgba(29,15,42,.35);
  --shadow-lg: 0 30px 70px -34px rgba(29,15,42,.45);

  --display: "Space Grotesk", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  --body:    "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --ease:      cubic-bezier(.22,.9,.28,1);
  --ease-soft: cubic-bezier(.4,0,.2,1);

  --nav-h:     64px;

  color-scheme: light;
}

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

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  min-height: 100svh;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

h1, h2, h3 { font-family: var(--display); font-weight: 700; margin: 0; letter-spacing: -.025em; line-height: 1.06; }
p { margin: 0; }
button { font: inherit; color: inherit; }
img, svg { display: block; max-width: 100%; }

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

/* ── Ambient background ─────────────────────────────────────── */
.bg { position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }

.bg__glow { position: absolute; border-radius: 50%; filter: blur(70px); opacity: .5; }

.bg__glow--pink {
  width: 78vw; height: 78vw; max-width: 620px; max-height: 620px;
  top: -26vw; right: -26vw;
  background: radial-gradient(circle, var(--pink) 0%, rgba(255,46,126,0) 70%);
  animation: drift 26s var(--ease-soft) infinite alternate;
}
.bg__glow--green {
  width: 62vw; height: 62vw; max-width: 480px; max-height: 480px;
  bottom: -22vw; left: -24vw;
  background: radial-gradient(circle, var(--green) 0%, rgba(47,191,113,0) 70%);
  opacity: .32;
  animation: drift 32s var(--ease-soft) infinite alternate-reverse;
}

/* dragonfruit "seeds" — a whisper of texture, not a pattern */
.bg__seeds {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle, rgba(29,15,42,.16) 1.2px, transparent 1.4px),
    radial-gradient(circle, rgba(29,15,42,.10) 1px, transparent 1.2px);
  background-size: 46px 46px, 71px 71px;
  background-position: 0 0, 23px 31px;
  opacity: .5;
  mask-image: radial-gradient(120% 80% at 50% 0%, #000 0%, transparent 72%);
}

@keyframes drift {
  from { transform: translate3d(0,0,0) scale(1); }
  to   { transform: translate3d(-6%, 5%, 0) scale(1.12); }
}

/* ── Stage / views ──────────────────────────────────────────── */
.stage {
  position: relative;
  z-index: 2;   /* above the proof strip and footer, so the dropdown covers them */
  display: grid;
  grid-template-areas: "view";
  grid-template-columns: minmax(0, 1fr);
}

.view {
  grid-area: view;
  width: 100%;
  min-width: 0;
  max-width: 560px;
  margin-inline: auto;
  padding: max(18px, env(safe-area-inset-top)) 20px 26px;
  padding-left:  max(20px, env(safe-area-inset-left));
  padding-right: max(20px, env(safe-area-inset-right));
}

.view--capture {
  min-height: calc(100svh - var(--nav-h));
  display: flex;
  flex-direction: column;
}

.capture__body {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(14px, 3.2vh, 26px);
  padding-block: clamp(14px, 4vh, 44px);
  min-width: 0;
}

/* view transition: the capture view leaves, the offer view arrives */
.view[hidden] { display: none; }

.view--leaving {
  animation: viewOut .42s var(--ease) forwards;
  pointer-events: none;
}
.view--entering { animation: viewIn .58s var(--ease) both; }

@keyframes viewOut {
  to { opacity: 0; transform: translateY(-16px) scale(.975); filter: blur(4px); }
}
@keyframes viewIn {
  from { opacity: 0; transform: translateY(26px) scale(.985); }
  to   { opacity: 1; transform: none; }
}

/* ── Site navigation ────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--cream) 82%, transparent);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--ink-08);
}
.nav__inner {
  max-width: 1080px;
  margin-inline: auto;
  min-height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 8px max(20px, env(safe-area-inset-right)) 8px max(20px, env(safe-area-inset-left));
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
  color: inherit;
  flex-shrink: 0;
}
.brand__mark { width: 38px; height: auto; }
.brand__name {
  font-family: var(--display);
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: -.02em;
  line-height: 1;
  white-space: nowrap;
}
.brand__name span { color: var(--pink); }
.brand__name span::before { content: " "; }

.nav__links {
  display: none;
  align-items: center;
  gap: 2px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav__links a {
  display: block;
  padding: 9px 14px;
  border-radius: 999px;
  font-size: .92rem;
  font-weight: 500;
  color: var(--ink-70);
  text-decoration: none;
  transition: color .15s var(--ease-soft), background .15s var(--ease-soft);
}
.nav__links a:hover { color: var(--ink); background: var(--pink-12); }
.nav__links a[aria-current="page"] { color: #fff; background: linear-gradient(100deg, var(--pink), var(--pitaya)); font-weight: 600; }

.nav__cta {
  display: none;
  padding: 10px 18px;
  border-radius: 999px;
  background: linear-gradient(100deg, var(--pink), var(--pitaya));
  color: #fff;
  font-family: var(--display);
  font-weight: 700;
  font-size: .88rem;
  text-decoration: none;
  box-shadow: 0 6px 18px -8px rgba(224,27,111,.7);
  transition: transform .16s var(--ease);
}
.nav__cta:hover { transform: translateY(-1px); }

.nav__burger {
  display: grid;
  place-items: center;
  width: 42px; height: 42px;
  border: 0;
  border-radius: 12px;
  background: none;
  cursor: pointer;
}
.nav__burger svg { width: 22px; height: 22px; fill: none; stroke: var(--ink); stroke-width: 2.2; stroke-linecap: round; }

.nav__menu {
  display: none;
  border-top: 1px solid var(--ink-08);
  padding: 8px max(20px, env(safe-area-inset-right)) 14px max(20px, env(safe-area-inset-left));
}
.nav__menu.is-open { display: block; }
.nav__menu a {
  display: block;
  padding: 12px 6px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--ink-08);
}
.nav__menu a:last-child { border-bottom: 0; }
.nav__menu a[aria-current="page"] { color: var(--pitaya); font-weight: 700; }

@media (min-width: 860px) {
  .nav__links { display: flex; }
  .nav__cta { display: inline-block; }
  .nav__burger, .nav__menu { display: none !important; }
}

/* ── Hero ───────────────────────────────────────────────────── */
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 14px;
  text-align: center;
  justify-items: center;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 15px;
  border-radius: 999px;
  background: linear-gradient(100deg, var(--pink), var(--pitaya));
  color: #fff;
  font-family: var(--display);
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .02em;
  box-shadow: 0 8px 22px -10px rgba(224,27,111,.8);
  animation: eyebrowIn .6s var(--ease) both;
}
@keyframes eyebrowIn {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: none; }
}

.hero__title {
  font-size: clamp(1.9rem, 7.6vw, 3.3rem);
  text-wrap: balance;
}
.hero__title em {
  font-style: normal;
  background: linear-gradient(100deg, var(--pink), var(--pitaya));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* brand lockup inside the headline: dragon + wordmark on its own line */
.hero__brandline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .28em;
  margin-top: .12em;
}
.hero__brandline img { width: 1.06em; height: auto; transform: translateY(-.04em); }

/* the rotating word — all candidates stacked in one grid cell so the
   slot is as wide as the longest word and nothing shifts as they swap */
.rotator {
  display: inline-grid;
  justify-items: start;
  vertical-align: baseline;
  perspective: 400px;
  /* js animates the slot width to hug each word; starts at auto (widest) */
  transition: width .45s var(--ease);
  overflow-x: clip;
  overflow-y: visible;
}
.rotator__word {
  grid-area: 1 / 1;
  background: linear-gradient(100deg, var(--pink), var(--pitaya));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  opacity: 0;
  transform: translateY(.55em) rotateX(-55deg);
  transition: opacity .45s var(--ease), transform .45s var(--ease);
  pointer-events: none;
  will-change: transform, opacity;
}
.rotator__word.is-in { opacity: 1; transform: none; }
.rotator__word.is-out { opacity: 0; transform: translateY(-.55em) rotateX(55deg); }

.hero__sub {
  font-size: clamp(1rem, 3.9vw, 1.12rem);
  color: var(--ink-70);
  max-width: 44ch;
  margin-inline: auto;
  text-wrap: pretty;
}

/* ── Form ───────────────────────────────────────────────────── */
.lead {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 14px;
  width: 100%;
  max-width: 540px;
  margin-inline: auto;
}
.lead > * { min-width: 0; }

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

.step { display: grid; grid-template-columns: minmax(0, 1fr); gap: 9px; }
.step > * { min-width: 0; }

.step:not(.is-open) { display: none; }

.step.is-open {
  animation: stepIn .5s var(--ease) both;
}
@keyframes stepIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: none; }
}

.step__label {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 9px;
  font-family: var(--display);
  font-weight: 500;
  font-size: .95rem;
  letter-spacing: -.01em;
}

.step__num {
  display: grid;
  place-items: center;
  width: 24px; height: 24px;
  flex: 0 0 24px;
  border-radius: 50%;
  background: var(--pink-12);
  color: var(--pitaya);
  font-size: .78rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}
.step.is-done .step__num {
  background: color-mix(in srgb, var(--green) 16%, transparent);
  color: #1f8a50;
}

.step__help { font-size: .85rem; }
/* the dropdown floats over this — don't let it show through while it fades in */
.step.is-listing .step__help { visibility: hidden; }

/* ── Input field ────────────────────────────────────────────── */
.field {
  position: relative;
  display: flex;
  align-items: center;
  background: var(--surface);
  border: 1.5px solid var(--ink-12);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: border-color .18s var(--ease-soft), box-shadow .18s var(--ease-soft), transform .18s var(--ease-soft);
}
.field:focus-within {
  border-color: var(--pink);
  box-shadow: 0 0 0 4px var(--pink-12), var(--shadow-md);
}

.field__icon {
  position: absolute;
  left: 15px;
  width: 20px; height: 20px;
  fill: none;
  stroke: var(--ink-55);
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
  pointer-events: none;
  transition: stroke .18s var(--ease-soft);
}
.field:focus-within .field__icon { stroke: var(--pink); }

.field__input {
  flex: 1 1 auto;
  min-width: 0;
  width: 100%;
  border: 0;
  background: transparent;
  font: inherit;
  font-size: 1.0625rem;      /* ≥16px so iOS never zooms on focus */
  color: var(--ink);
  padding: 15px 16px 15px 45px;
  border-radius: inherit;
}

/* step 1's search bar is the star — noticeably bigger than the rest */
.step[data-step="1"] .field__input { font-size: 1.15rem; padding-block: 18px; }
.step[data-step="1"] .field__icon { width: 22px; height: 22px; }
.field__input::placeholder { color: color-mix(in srgb, var(--ink) 38%, transparent); }
.field__input:focus { outline: none; }

.field__spin {
  position: absolute;
  right: 15px;
  width: 17px; height: 17px;
  border: 2px solid var(--pink-12);
  border-top-color: var(--pink);
  border-radius: 50%;
  animation: spin .65s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ── Suggestions ────────────────────────────────────────────── */
.combo { position: relative; }

.suggest {
  position: absolute;
  top: calc(100% + 8px);
  left: 0; right: 0;
  z-index: 30;
  margin: 0;
  padding: 6px;
  list-style: none;
  background: var(--surface);
  border: 1.5px solid var(--ink-08);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  max-height: min(46svh, 340px);
  overflow-y: auto;
  overscroll-behavior: contain;
  animation: popIn .22s var(--ease) both;
}
.suggest[hidden] { display: none; }

@keyframes popIn {
  from { opacity: 0; transform: translateY(-6px) scale(.985); }
  to   { opacity: 1; transform: none; }
}

.suggest__item {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 11px 12px;
  border-radius: 12px;
  cursor: pointer;
  transition: background .12s var(--ease-soft);
}
.suggest__item:hover,
.suggest__item.is-active { background: color-mix(in srgb, var(--pink) 7%, transparent); }

.suggest__pin {
  flex: 0 0 30px;
  width: 30px; height: 30px;
  display: grid; place-items: center;
  border-radius: 9px;
  background: var(--pink-12);
}
.suggest__pin svg { width: 16px; height: 16px; fill: none; stroke: var(--pitaya); stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }

.suggest__body { flex: 1 1 auto; min-width: 0; }
.suggest__name {
  display: block;
  font-weight: 600;
  font-size: .95rem;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.suggest__name mark { background: none; color: var(--pitaya); font-weight: 700; }
.suggest__addr {
  display: block;
  font-size: .8rem;
  color: var(--ink-55);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}

/* ── Picked business chip ───────────────────────────────────── */
.picked {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 13px 14px;
  background: var(--surface);
  border: 1.5px solid color-mix(in srgb, var(--green) 40%, transparent);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  animation: stepIn .4s var(--ease) both;
}
.picked[hidden] { display: none; }

.picked__tick {
  flex: 0 0 26px;
  width: 26px; height: 26px;
  padding: 5px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--green) 16%, transparent);
  fill: none;
  stroke: #22a05e;
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.picked__text { flex: 1 1 auto; min-width: 0; }
.picked__text strong {
  display: block;
  font-size: .95rem;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.picked__text span {
  display: block;
  font-size: .8rem;
  color: var(--ink-55);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.picked__change {
  flex: 0 0 auto;
  background: none;
  border: 0;
  padding: 4px 2px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--pitaya);
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}

.linkish {
  background: none;
  border: 0;
  padding: 2px 0;
  font-size: .85rem;
  color: var(--ink-55);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  cursor: pointer;
  transition: color .15s var(--ease-soft);
}
.linkish:hover { color: var(--pitaya); }

/* ── Button ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  width: 100%;
  min-height: 54px;
  padding: 15px 22px;
  border: 0;
  border-radius: var(--radius);
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -.01em;
  text-decoration: none;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.btn--primary {
  color: #fff;
  background: linear-gradient(100deg, var(--pink), var(--pitaya));
  box-shadow: 0 10px 26px -12px rgba(224,27,111,.75), inset 0 1px 0 rgba(255,255,255,.22);
  transition: transform .16s var(--ease), box-shadow .2s var(--ease-soft), filter .2s var(--ease-soft);
}
.btn--primary:hover { transform: translateY(-1.5px); box-shadow: 0 16px 34px -14px rgba(224,27,111,.8), inset 0 1px 0 rgba(255,255,255,.22); }
.btn--primary:active { transform: translateY(0) scale(.988); }
.btn--primary[disabled] { filter: saturate(.5) opacity(.65); cursor: progress; transform: none; }

.btn__arrow { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 2.1; stroke-linecap: round; stroke-linejoin: round; transition: transform .2s var(--ease); }
.btn--primary:hover .btn__arrow { transform: translateX(3px); }

.btn.is-busy .btn__arrow { animation: spin .7s linear infinite; }

.reassure {
  margin-top: 9px;
  text-align: center;
  font-size: .8rem;
  color: var(--ink-55);
}

.formerr {
  font-size: .85rem;
  color: var(--pitaya);
  font-weight: 500;
}
.formerr[hidden] { display: none; }

.noscript {
  font-size: .9rem;
  color: var(--ink-70);
  padding: 14px;
  border: 1.5px dashed var(--ink-12);
  border-radius: var(--radius);
}

/* ═══════════ Offer view ═══════════ */
.view--offer {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding-top: max(26px, env(safe-area-inset-top));
  padding-bottom: 40px;
}

.confirm {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  padding: 14px 15px;
  border-radius: var(--radius);
  background: color-mix(in srgb, var(--green) 10%, var(--surface));
  border: 1.5px solid color-mix(in srgb, var(--green) 34%, transparent);
}
.confirm__tick {
  flex: 0 0 26px;
  width: 26px; height: 26px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--green);
}
.confirm__tick svg { width: 15px; height: 15px; fill: none; stroke: #fff; stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; }
.confirm__text { font-size: .92rem; color: var(--ink-70); }
.confirm__text b, .confirm__text strong { color: var(--ink); }

.offer__title {
  font-size: clamp(1.6rem, 6.6vw, 2.3rem);
  text-wrap: balance;
}

.price {
  position: relative;
  padding: 22px 20px 20px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(165deg, color-mix(in srgb, var(--pink) 6%, var(--surface)), var(--surface) 55%);
  border: 1.5px solid var(--ink-08);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}
.price::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--pink), var(--pitaya), var(--green));
}

.price__deal {
  display: inline-block;
  padding: 5px 11px;
  border-radius: 999px;
  background: linear-gradient(100deg, var(--pink), var(--pitaya));
  color: #fff;
  font-family: var(--display);
  font-weight: 700;
  font-size: .74rem;
  letter-spacing: .01em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.price__row { display: flex; align-items: baseline; flex-wrap: wrap; gap: 4px 10px; }
.price__now {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(2.6rem, 12vw, 3.5rem);
  letter-spacing: -.04em;
  line-height: 1;
  background: linear-gradient(100deg, var(--pink), var(--pitaya));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.price__per { font-size: .4em; letter-spacing: -.01em; }
.price__then { font-size: .92rem; color: var(--ink-70); font-weight: 500; }

.price__list {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.price__list li {
  position: relative;
  padding-left: 28px;
  font-size: .95rem;
  color: var(--ink-70);
}
.price__list li::before {
  content: "";
  position: absolute;
  left: 0; top: 3px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--green) 16%, transparent)
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232FBF71' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m5 12.5 4.5 4.5L19 7'/%3E%3C/svg%3E") center/11px no-repeat;
}

.price__cancel {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--ink-08);
  font-size: .85rem;
  color: var(--ink-55);
}

/* ── Booking ────────────────────────────────────────────────── */
.booking {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  background: var(--surface);
  border: 1.5px solid var(--ink-08);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}
.booking::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--pink), var(--pitaya), var(--green));
}

.booking__head { padding: 22px 20px 16px; border-bottom: 1px solid var(--ink-08); }
.booking__title { font-size: 1.35rem; margin-bottom: 10px; }
.booking__perks {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.booking__perks li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--pink-12);
  color: var(--pitaya);
  font-size: .8rem;
  font-weight: 600;
  white-space: nowrap;
}
.booking__perks li::before { content: "✓"; font-weight: 800; }

.booking__embed {
  min-height: 480px;
  background: var(--surface);
  overflow: hidden;
}
.booking__embed.is-fallback { min-height: 0; padding: 22px; }

.booking__loading {
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 12px;
  min-height: 480px;
  font-size: .9rem;
  color: var(--ink-55);
}
.booking__loading::before {
  content: "";
  width: 26px; height: 26px;
  border-radius: 50%;
  border: 3px solid var(--pink-12);
  border-top-color: var(--pink);
  animation: spin .7s linear infinite;
}
.booking__fallback { padding: 0 20px 18px; font-size: .85rem; color: var(--ink-55); }
.booking__fallback[hidden] { display: none; }
.booking__fallback a, .noscript a { color: var(--pitaya); }

/* ═══════════ Proof strip (home) ═══════════ */
.proof {
  position: relative;
  z-index: 1;
  max-width: 560px;
  margin-inline: auto;
  padding: 30px 20px 34px;
  padding-left:  max(20px, env(safe-area-inset-left));
  padding-right: max(20px, env(safe-area-inset-right));
  border-top: 1px solid var(--ink-08);
  text-align: center;
}
.proof__list { justify-content: center; }
.proof__label {
  font-family: var(--display);
  font-weight: 500;
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .13em;
  color: var(--ink-55);
  margin-bottom: 12px;
}
.proof__list { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 8px 10px; }
.proof__list a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 13px;
  border-radius: 999px;
  border: 1.5px solid var(--ink-12);
  background: color-mix(in srgb, var(--surface) 70%, transparent);
  color: var(--ink);
  font-size: .87rem;
  font-weight: 500;
  text-decoration: none;
  transition: border-color .16s var(--ease-soft), transform .16s var(--ease), color .16s var(--ease-soft);
}
.proof__list a:hover { border-color: var(--pink); color: var(--pitaya); transform: translateY(-1px); }
.proof__list svg { width: 13px; height: 13px; fill: none; stroke: currentColor; stroke-width: 2.1; stroke-linecap: round; stroke-linejoin: round; opacity: .55; }


/* ═══════════ Wider screens ═══════════ */
@media (min-width: 720px) {
  .view { max-width: 620px; padding-inline: 32px; }
  .capture__body { gap: 26px; }
  .brand__mark { width: 46px; }
  .brand__name { font-size: 1.05rem; }
  .hero__title { font-size: 3.4rem; }
  .hero__sub { font-size: 1.15rem; }
  .lead { gap: 18px; }
  .btn { width: auto; min-width: 260px; }
  .step--go { justify-items: start; }
  .reassure { text-align: left; }
  .proof { max-width: 620px; padding-inline: 32px; }
}

@media (min-width: 1080px) {
  .view { max-width: 660px; }
  .hero__title { font-size: 3.75rem; }
  .proof { max-width: 660px; }
  .booking__embed, .booking__loading { min-height: 560px; }
  .booking__embed.is-fallback { min-height: 0; }
}

/* Short phones: tighten so all three steps + the button still clear the fold. */
@media (max-height: 700px) and (max-width: 719px) {
  .capture__body { gap: 12px; padding-block: 10px; }
  .hero__title { font-size: clamp(1.75rem, 7.4vw, 2.4rem); }
  .hero__sub { font-size: .95rem; }
  .field__input { padding-block: 13px; }
  .btn { min-height: 50px; }
}

/* Very short phones (iPhone SE and friends) — squeeze harder. */
@media (max-height: 640px) and (max-width: 719px) {
  .view { padding-top: max(12px, env(safe-area-inset-top)); }
  .brand__mark { width: 32px; }
  .brand__name { font-size: .88rem; }
  .capture__body { gap: 9px; padding-block: 6px; }
  .hero { gap: 6px; }
  .hero__title { font-size: clamp(1.55rem, 6.8vw, 2rem); }
  .hero__sub { font-size: .88rem; }
  .lead { gap: 10px; }
  .step { gap: 6px; }
  .step__label { font-size: .88rem; }
  .field__input { padding-block: 11px; font-size: 1rem; }
  .btn { min-height: 46px; font-size: 1rem; }
  .reassure { margin-top: 6px; }
  .picked { padding: 10px 12px; }
}

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

/* ═══════════ Site footer ═══════════ */
.foot {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--ink-08);
  background: color-mix(in srgb, var(--surface) 55%, transparent);
}
.foot__inner {
  max-width: 1080px;
  margin-inline: auto;
  padding: 40px max(20px, env(safe-area-inset-right)) 22px max(20px, env(safe-area-inset-left));
}
.foot__grid { display: grid; grid-template-columns: minmax(0, 1fr); gap: 26px; }
.foot__blurb { font-size: .88rem; color: var(--ink-55); max-width: 30ch; margin-top: 10px; }
.foot h4 {
  font-family: var(--body);
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--ink-55);
  margin: 0 0 10px;
}
.foot ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 7px; }
.foot ul a { font-size: .9rem; color: var(--ink-70); text-decoration: none; overflow-wrap: anywhere; }
.foot ul a:hover { color: var(--pitaya); }
.foot__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px 16px;
  margin-top: 30px;
  padding-top: 18px;
  padding-bottom: max(0px, env(safe-area-inset-bottom));
  border-top: 1px solid var(--ink-08);
  font-size: .78rem;
  color: var(--ink-55);
}
@media (min-width: 720px) {
  .foot__grid { grid-template-columns: 1.4fr 1fr 1.2fr; }
}

/* ═══════════ Sub-pages (work / pricing / contact) ═══════════ */
.pg {
  position: relative;
  z-index: 1;
  max-width: 1080px;
  margin-inline: auto;
  padding: 44px max(20px, env(safe-area-inset-right)) 70px max(20px, env(safe-area-inset-left));
}
.pg--narrow { max-width: 820px; }

.pg__head { max-width: 640px; margin-bottom: 34px; }
.pg__eyebrow {
  display: inline-block;
  padding: 6px 13px;
  border-radius: 999px;
  background: var(--pink-12);
  color: var(--pitaya);
  font-family: var(--display);
  font-weight: 700;
  font-size: .74rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.pg__head h1 { font-size: clamp(1.9rem, 5.6vw, 2.7rem); margin-bottom: 12px; }
.pg__head p { color: var(--ink-70); font-size: 1.02rem; text-wrap: pretty; }

.card {
  background: var(--surface);
  border: 1.5px solid var(--ink-08);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

/* ── Pricing page ── */
.plan {
  position: relative;
  padding: 26px 22px 24px;
  overflow: hidden;
  margin-bottom: 44px;
}
.plan::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--pink), var(--pitaya), var(--green));
}
.plan__grid { display: grid; grid-template-columns: minmax(0, 1fr); gap: 22px; }
@media (min-width: 860px) { .plan__grid { grid-template-columns: 1.1fr 1fr; align-items: center; } }
.plan .price__list li { font-size: 1rem; }
.plan__cta { display: grid; gap: 10px; justify-items: start; }
.plan__cta .btn { width: auto; min-width: 240px; }

.tiers { display: grid; grid-template-columns: minmax(0, 1fr); gap: 18px; }
@media (min-width: 860px) { .tiers { grid-template-columns: repeat(3, 1fr); align-items: stretch; } }

.tier { display: flex; flex-direction: column; padding: 24px 22px; position: relative; }
.tier__name { font-family: var(--display); font-weight: 700; font-size: 1.05rem; }
.tier__price {
  font-family: var(--display);
  font-weight: 700;
  font-size: 2.2rem;
  letter-spacing: -.03em;
  margin: 8px 0 2px;
}
.tier__price span { font-size: .45em; color: var(--ink-55); font-weight: 500; letter-spacing: 0; }
.tier__tag { font-size: .84rem; color: var(--ink-55); }
.tier ul { list-style: none; margin: 16px 0 22px; padding: 0; flex: 1; display: grid; gap: 9px; align-content: start; }
.tier li { position: relative; padding-left: 26px; font-size: .92rem; color: var(--ink-70); }
.tier li::before {
  content: "";
  position: absolute;
  left: 0; top: 2px;
  width: 17px; height: 17px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--green) 16%, transparent)
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232FBF71' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m5 12.5 4.5 4.5L19 7'/%3E%3C/svg%3E") center/10px no-repeat;
}
.tier--featured {
  border-color: var(--pink);
  border-width: 2px;
  box-shadow: var(--shadow-md);
}
.tier__flag {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 4px 13px;
  border-radius: 999px;
  background: linear-gradient(100deg, var(--pink), var(--pitaya));
  color: #fff;
  font-family: var(--display);
  font-weight: 700;
  font-size: .66rem;
  letter-spacing: .07em;
  text-transform: uppercase;
  white-space: nowrap;
}
.tier .btn { width: 100%; }
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink-12);
  box-shadow: none;
  transition: border-color .16s var(--ease-soft), color .16s var(--ease-soft), transform .16s var(--ease);
}
.btn--ghost:hover { border-color: var(--pink); color: var(--pitaya); transform: translateY(-1px); }

.addons { margin-top: 44px; }
.addons h2, .tiers-head h2 { font-size: clamp(1.4rem, 4vw, 1.9rem); margin-bottom: 6px; }
.addons p.note, .tiers-head p { color: var(--ink-70); font-size: .95rem; margin-bottom: 20px; }
.tiers-head { margin-top: 50px; margin-bottom: 24px; max-width: 620px; }

.addon-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px 16px;
  padding: 16px 18px;
}
.addon-row + .addon-row { margin-top: 12px; }
.addon-row strong { font-family: var(--display); font-size: 1rem; }
.addon-row span { flex: 1 1 220px; font-size: .88rem; color: var(--ink-55); }
.addon-row b { font-family: var(--display); color: var(--pitaya); font-size: 1rem; white-space: nowrap; }

/* ── Work page ── */
.works { display: grid; grid-template-columns: minmax(0, 1fr); gap: 22px; }
@media (min-width: 800px) { .works { grid-template-columns: 1fr 1fr; } }

.work { overflow: hidden; display: flex; flex-direction: column; transition: transform .18s var(--ease), box-shadow .2s var(--ease-soft); }
.work:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.work__bar {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 14px;
  background: var(--ink);
}
.work__dots { display: flex; gap: 5px; }
.work__dots i { width: 9px; height: 9px; border-radius: 50%; }
.work__dots i:nth-child(1) { background: #FF5F57; }
.work__dots i:nth-child(2) { background: #FEBC2E; }
.work__dots i:nth-child(3) { background: #28C840; }
.work__url {
  flex: 1;
  font-size: .72rem;
  color: rgba(255,255,255,.85);
  background: rgba(255,255,255,.14);
  padding: 4px 12px;
  border-radius: 6px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.work__shot { height: 190px; overflow: hidden; }
.work__shot .m-nav { height: 26px; display: flex; align-items: center; gap: 8px; padding: 0 14px; }
.work__shot .m-logo { width: 44px; height: 8px; border-radius: 4px; }
.work__shot .m-link { width: 26px; height: 5px; border-radius: 3px; opacity: .6; }
.work__shot .m-hero { padding: 16px 14px 0; }
.work__shot .m-h1 { height: 12px; width: 65%; border-radius: 6px; margin-bottom: 8px; }
.work__shot .m-h2 { height: 7px; width: 85%; border-radius: 4px; opacity: .55; margin-bottom: 5px; }
.work__shot .m-btn { height: 14px; width: 64px; border-radius: 7px; margin-top: 10px; }
.work__shot .m-cards { display: flex; gap: 8px; padding: 14px; }
.work__shot .m-card { flex: 1; height: 44px; border-radius: 6px; }
.work__body { padding: 20px 22px; flex: 1; display: flex; flex-direction: column; gap: 8px; }
.work__body h2 { font-size: 1.15rem; }
.work__body p { font-size: .9rem; color: var(--ink-70); flex: 1; }
.work__visit {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 6px;
  font-weight: 700;
  font-size: .9rem;
  color: var(--pitaya);
  text-decoration: none;
}
.work__visit:hover { text-decoration: underline; text-underline-offset: 3px; }

.work-cta {
  margin-top: 34px;
  padding: 26px 22px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 22px;
}
.work-cta img { width: 64px; flex-shrink: 0; }
.work-cta div { flex: 1 1 260px; }
.work-cta h2 { font-size: 1.25rem; margin-bottom: 4px; }
.work-cta p { font-size: .92rem; color: var(--ink-70); }
.work-cta .btn { width: auto; }

/* ── Contact page ── */
.cform { padding: 26px 22px; }
.cform__grid { display: grid; grid-template-columns: minmax(0, 1fr); gap: 16px; }
@media (min-width: 700px) {
  .cform__grid { grid-template-columns: 1fr 1fr; }
  .cform__grid .is-full { grid-column: 1 / -1; }
}
.cfield { display: grid; gap: 7px; }
.cfield label { font-size: .84rem; font-weight: 600; color: var(--ink-70); }
.cfield input, .cfield textarea {
  font: inherit;
  font-size: 1rem;
  color: var(--ink);
  background: var(--cream);
  border: 1.5px solid var(--ink-12);
  border-radius: var(--radius);
  padding: 13px 15px;
  transition: border-color .16s var(--ease-soft), box-shadow .16s var(--ease-soft);
  width: 100%;
}
.cfield input:focus, .cfield textarea:focus {
  outline: none;
  border-color: var(--pink);
  box-shadow: 0 0 0 4px var(--pink-12);
}
.cfield textarea { resize: vertical; min-height: 110px; }
.chips { display: flex; flex-wrap: wrap; gap: 9px; }
.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 15px;
  border: 1.5px solid var(--ink-12);
  border-radius: 999px;
  font-size: .88rem;
  /* multi-word labels stay on one line — the chip grows wide, never tall */
  white-space: nowrap;
  cursor: pointer;
  transition: border-color .15s var(--ease-soft), background .15s var(--ease-soft);
  user-select: none;
}
.chip:has(input:checked) { border-color: var(--pink); background: var(--pink-12); color: var(--pitaya); font-weight: 600; }
.chip input { accent-color: var(--pink); margin: 0; }
.cform .btn { margin-top: 20px; width: auto; }
.cform__note { margin-top: 12px; font-size: .8rem; color: var(--ink-55); }
.cform__note a { color: var(--pitaya); font-weight: 600; }

.cinfo { display: grid; grid-template-columns: minmax(0,1fr); gap: 18px; margin-top: 34px; }
@media (min-width: 700px) { .cinfo { grid-template-columns: repeat(3, 1fr); } }
.cinfo h3 {
  font-family: var(--body);
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--ink-55);
  margin-bottom: 5px;
}
.cinfo p { font-size: .95rem; overflow-wrap: anywhere; }
.cinfo a { color: var(--pitaya); text-decoration: none; font-weight: 600; }
.cinfo a:hover { text-decoration: underline; }

.cthanks { text-align: center; padding: 44px 26px; }
.cthanks img { width: 84px; margin-inline: auto; margin-bottom: 14px; }
.cthanks h2 { font-size: 1.4rem; margin-bottom: 8px; }
.cthanks p { color: var(--ink-70); }
.cthanks[hidden] { display: none; }
