/* ==========================================================================
   PAWMS PET RESORT — design system
   Built on the 2026 trend brief:
     · White space / Cloud Dancer as the ground
     · Neo-minimalism + micro-maximalism — calm layouts, one loud element
     · Humanised, imperfect letterforms — Fraunces with WONK + SOFT on
     · Vibrant chromatic expression — acid lime, cobalt, coral, sky
     · Anti-polish — stickers, tilts, hand-drawn marks, visible grid
     · Cinematic micro-interactions — every motion has a job
   ========================================================================== */

/* ---------- tokens ---------- */
:root {
  --cloud:      #f1efea;   /* Cloud Dancer — Pantone Colour of the Year 2026 */
  --cloud-2:    #e8e4db;
  --paper:      #ffffff;
  --sand:       #ddd6c8;

  --ink:        #131110;
  --ink-2:      #37322e;
  --smoke:      #6b645d;
  --smoke-dim:  #a29a91;

  --lime:       #c9f24b;
  --lime-deep:  #4e6b00;
  --cobalt:     #2c46f0;
  --coral:      #ff5a36;
  --sky:        #8fd8f7;
  --grape:      #7a4be0;
  --bubble:     #ffb8d9;

  --line:       rgba(19, 17, 16, .14);
  --line-2:     rgba(19, 17, 16, .28);

  --ff-display: "Fraunces", Georgia, serif;
  --ff-body:    "Schibsted Grotesk", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --ff-mono:    "Martian Mono", ui-monospace, "SF Mono", Menlo, monospace;

  --shell:      1220px;
  --gut:        clamp(1.15rem, 4vw, 2.75rem);

  --r:          22px;
  --r-s:        14px;
  --r-pill:     999px;

  --sh:         0 2px 0 var(--ink);
  --sh-2:       0 4px 0 var(--ink);
  --sh-soft:    0 18px 40px -26px rgba(19, 17, 16, .45);

  --ease:       cubic-bezier(.22, .61, .36, 1);
  --pop:        cubic-bezier(.34, 1.56, .64, 1);

  --hdr-h:      72px;
}

/* wonk axes — the "humanised letterforms" trend, dialled per use */
.wonk   { font-variation-settings: "SOFT" 60, "WONK" 1, "opsz" 120; }
.wonk-2 { font-variation-settings: "SOFT" 100, "WONK" 1, "opsz" 144; }
.calm   { font-variation-settings: "SOFT" 0, "WONK" 0, "opsz" 20; }

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--hdr-h) + 18px);
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

body {
  background: var(--cloud);
  color: var(--ink);
  font-family: var(--ff-body);
  font-size: 1.02rem;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
body.is-locked { overflow: hidden; }

img, svg, video, iframe { display: block; max-width: 100%; }
img { height: auto; }
button, input, select, textarea { font: inherit; color: inherit; }
button { background: none; border: 0; cursor: pointer; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; padding: 0; }

:focus-visible { outline: 3px solid var(--cobalt); outline-offset: 3px; border-radius: 4px; }
::selection { background: var(--lime); color: var(--ink); }

/* ---------- typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--ff-display);
  font-weight: 600;
  line-height: .97;
  letter-spacing: -.03em;
  font-variation-settings: "SOFT" 60, "WONK" 1, "opsz" 120;
  text-wrap: balance;
  color: var(--ink);
}

.t-hero { font-size: clamp(2.9rem, 10.5vw, 7.6rem); font-weight: 700; line-height: .96; letter-spacing: -.045em; }
.t-xl   { font-size: clamp(2.4rem, 7vw, 5rem);   font-weight: 700; letter-spacing: -.04em; }
.t-lg   { font-size: clamp(2rem, 5vw, 3.4rem);   font-weight: 600; letter-spacing: -.035em; }
.t-md   { font-size: clamp(1.55rem, 3.4vw, 2.3rem); font-weight: 600; letter-spacing: -.03em; }
.t-sm   { font-size: clamp(1.2rem, 2.4vw, 1.5rem); font-weight: 600; letter-spacing: -.02em; line-height: 1.12; }

.lede { font-size: clamp(1.06rem, 2vw, 1.28rem); line-height: 1.6; color: var(--ink-2); text-wrap: pretty; }
p { text-wrap: pretty; }

.mono {
  font-family: var(--ff-mono);
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  line-height: 1.4;
}

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

/* ---------- layout ---------- */
.shell { width: min(100% - (var(--gut) * 2), var(--shell)); margin-inline: auto; }
.shell--wide { --shell: 1440px; }
.shell--tight { --shell: 820px; }

.sec { padding-block: clamp(3.5rem, 8vw, 7rem); position: relative; }
.sec--sm { padding-block: clamp(2.5rem, 5vw, 4rem); }
.sec--paper { background: var(--paper); }
.sec--ink { background: var(--ink); color: #efece8; }
.sec--ink h1, .sec--ink h2, .sec--ink h3 { color: var(--paper); }
.sec--ink .lede { color: #c4bdb6; }
.sec--ink .muted { color: #9c948c; }
.sec--lime { background: var(--lime); }

.stack { display: grid; gap: 1.15rem; }
.mt-m { margin-top: 1.35rem; }
.mt-l { margin-top: clamp(2rem, 4.5vw, 3.25rem); }
.center { text-align: center; }

.head { display: grid; gap: 1.15rem; max-width: 58ch; margin-bottom: clamp(2rem, 4.5vw, 3.25rem); }
.head--c { justify-items: center; text-align: center; margin-inline: auto; }

/* ---------- sticker / eyebrow ---------- */
.sticker {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .5rem .9rem;
  background: var(--lime);
  color: var(--ink);
  border: 2px solid var(--ink);
  border-radius: var(--r-pill);
  box-shadow: var(--sh);
  font-family: var(--ff-mono);
  font-size: .6rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  transform: rotate(-2deg);
  white-space: nowrap;
}
.sticker--cobalt { background: var(--cobalt); color: #fff; }
.sticker--coral  { background: var(--coral); color: #fff; }
.sticker--sky    { background: var(--sky); }
.sticker--bubble { background: var(--bubble); }
.sticker--paper  { background: var(--paper); }
.sticker--r      { transform: rotate(2deg); }
.sticker--flat   { transform: none; }
.sticker svg { width: 13px; height: 13px; }

/* ---------- buttons ---------- */
.btn {
  --bg: var(--ink);
  --fg: var(--cloud);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  padding: 1.05rem 1.85rem;
  background: var(--bg);
  color: var(--fg);
  border: 2px solid var(--ink);
  border-radius: var(--r-pill);
  box-shadow: var(--sh-2);
  font-family: var(--ff-body);
  font-size: .96rem;
  font-weight: 700;
  letter-spacing: -.01em;
  line-height: 1;
  transition: transform .18s var(--pop), box-shadow .18s var(--pop), background-color .2s, color .2s;
  text-align: center;
}
.btn:hover { transform: translateY(-3px); box-shadow: 0 7px 0 var(--ink); }
.btn:active { transform: translateY(2px); box-shadow: 0 1px 0 var(--ink); }
.btn svg { width: 1.15em; height: 1.15em; flex: none; }

.btn--lime   { --bg: var(--lime);   --fg: var(--ink); }
.btn--cobalt { --bg: var(--cobalt); --fg: #fff; }
.btn--coral  { --bg: var(--coral);  --fg: #fff; }
.btn--paper  { --bg: var(--paper);  --fg: var(--ink); }
.btn--sm { padding: .72rem 1.2rem; font-size: .85rem; box-shadow: 0 3px 0 var(--ink); }
.btn--sm:hover { box-shadow: 0 5px 0 var(--ink); }
.btn--lg { padding: 1.25rem 2.4rem; font-size: 1.08rem; }
.btn--block { width: 100%; }
.btn[disabled] { opacity: .38; pointer-events: none; }

.btn-row { display: flex; flex-wrap: wrap; gap: .85rem; }
.btn-row--c { justify-content: center; }

.tlink {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-weight: 700;
  border-bottom: 2px solid var(--lime);
  padding-bottom: 2px;
  transition: gap .25s var(--ease), border-color .25s;
}
.tlink:hover { gap: .75rem; border-color: var(--ink); }
.tlink svg { width: .95em; height: .95em; }

/* ---------- marquee ---------- */
.marquee {
  background: var(--ink);
  color: var(--lime);
  border-block: 2px solid var(--ink);
  overflow: hidden;
  padding-block: .85rem;
  display: flex;
  gap: 0;
  user-select: none;
}
.marquee__t {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  padding-right: 2.5rem;
  flex: none;
  animation: slide 32s linear infinite;
  font-family: var(--ff-display);
  font-size: clamp(1.1rem, 2.4vw, 1.6rem);
  font-weight: 600;
  letter-spacing: -.02em;
  white-space: nowrap;
}
.marquee__t span { display: inline-flex; align-items: center; gap: 2.5rem; }
.marquee__t i { font-style: normal; color: var(--coral); }
@keyframes slide { to { transform: translateX(-100%); } }
.marquee:hover .marquee__t { animation-play-state: paused; }

/* ---------- hero ---------- */
.hero { position: relative; padding-block: clamp(2rem, 5vw, 3.5rem) clamp(2.5rem, 5vw, 4rem); overflow: hidden; }
.hero__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: .5;
  pointer-events: none;
  z-index: 0;
}
.hero__blob--a { width: 46vw; height: 46vw; background: var(--lime);   top: -14vw;  left: -12vw; }
.hero__blob--b { width: 40vw; height: 40vw; background: var(--sky);    top: 18vw;   right: -14vw; }
.hero__blob--c { width: 28vw; height: 28vw; background: var(--bubble); bottom: -8vw; left: 30vw; opacity: .42; }
.hero__in { position: relative; z-index: 2; display: grid; gap: 1.5rem; justify-items: start; }
.hero__title { max-width: 13ch; }
.hero__title em { font-style: normal; display: inline-block; color: var(--cobalt); }
.hero__sub { max-width: 44ch; }

.hero__cols { display: grid; gap: clamp(1.75rem, 4vw, 3rem); align-items: end; }
@media (min-width: 980px) { .hero__cols { grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr); } }

.hero__shot {
  position: relative;
  border: 2px solid var(--ink);
  border-radius: 200px 200px var(--r) var(--r);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--sand);
  box-shadow: var(--sh-2);
}
.hero__shot img { width: 100%; height: 100%; object-fit: cover; }
.hero__tag { position: absolute; z-index: 3; }
.hero__tag--1 { top: 8%; left: -6%; }
.hero__tag--2 { bottom: 10%; right: -4%; }

/* ---------- squiggle / hand-drawn marks ---------- */
.squiggle { display: block; width: 100%; height: auto; color: var(--coral); }
.underline-mark { position: relative; display: inline-block; }
.underline-mark svg {
  position: absolute;
  left: -2%;
  bottom: -.02em;
  width: 104%;
  height: .3em;
  color: var(--lime);
  z-index: -1;
}

/* ---------- fact strip ---------- */
.facts { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0; border: 2px solid var(--ink); border-radius: var(--r); overflow: hidden; background: var(--paper); }
@media (min-width: 860px) { .facts { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
.fact { padding: 1.4rem 1.2rem; display: grid; gap: .35rem; border-right: 2px solid var(--ink); border-bottom: 2px solid var(--ink); }
.fact:nth-child(2n) { border-right: 0; }
.fact:nth-child(n+3) { border-bottom: 0; }
@media (min-width: 860px) {
  .fact { border-bottom: 0; }
  .fact:nth-child(2n) { border-right: 2px solid var(--ink); }
  .fact:last-child { border-right: 0; }
}
.fact__n { font-family: var(--ff-display); font-size: clamp(1.7rem, 3.6vw, 2.3rem); font-weight: 700; letter-spacing: -.04em; line-height: 1; }
.fact__l { font-family: var(--ff-mono); font-size: .56rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--smoke); }

/* ---------- cards ---------- */
.grid { display: grid; gap: clamp(1rem, 2.2vw, 1.5rem); }
.grid--2 { grid-template-columns: 1fr; }
.grid--3 { grid-template-columns: 1fr; }
.grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
@media (min-width: 700px)  { .grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); } .grid--3 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1020px) { .grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); } .grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); } }

.card {
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: var(--r);
  padding: clamp(1.4rem, 2.8vw, 1.95rem);
  display: grid;
  gap: .85rem;
  align-content: start;
  box-shadow: var(--sh-2);
  transition: transform .28s var(--pop), box-shadow .28s var(--pop), background-color .25s;
}
.card--hover:hover { transform: translate(-2px, -4px); box-shadow: 8px 10px 0 var(--ink); }
.card--lime:hover   { background: var(--lime); }
.card--sky:hover    { background: var(--sky); }
.card--bubble:hover { background: var(--bubble); }
.card--coral:hover  { background: var(--coral); color: #fff; }
.card--coral:hover h3 { color: #fff; }
.card p { color: var(--smoke); font-size: .95rem; }
.card--hover:hover p { color: inherit; }

.card__ico {
  width: 52px; height: 52px;
  border: 2px solid var(--ink);
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: var(--cloud);
}
.card__ico svg { width: 26px; height: 26px; }

/* service card with big index numeral */
.svc { position: relative; overflow: hidden; }
.svc__n {
  position: absolute;
  top: -.35em; right: -.1em;
  font-family: var(--ff-display);
  font-size: 7rem;
  font-weight: 700;
  color: var(--cloud-2);
  line-height: 1;
  pointer-events: none;
  z-index: 0;
}
.svc > * { position: relative; z-index: 1; }

/* ---------- split ---------- */
.split { display: grid; gap: clamp(1.75rem, 4vw, 3.5rem); align-items: center; }
@media (min-width: 920px) { .split { grid-template-columns: repeat(2, minmax(0, 1fr)); } .split--rev > :first-child { order: 2; } }
.shot {
  border: 2px solid var(--ink);
  border-radius: var(--r);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--sand);
  box-shadow: var(--sh-2);
}
.shot--tall { aspect-ratio: 4 / 5; }
.shot--blob { border-radius: 42% 58% 46% 54% / 52% 44% 56% 48%; }
.shot img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- price table ---------- */
.ptable { border: 2px solid var(--ink); border-radius: var(--r); overflow: hidden; background: var(--paper); }
.ptable__hd {
  padding: 1rem 1.3rem;
  background: var(--ink);
  color: var(--lime);
  font-family: var(--ff-mono);
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}
.prow {
  display: flex;
  align-items: baseline;
  gap: .8rem;
  padding: .85rem 1.3rem;
  border-top: 1px solid var(--line);
}
.prow:first-of-type { border-top: 0; }
.prow__n { font-weight: 600; }
.prow__d { flex: 1; height: 1px; border-bottom: 2px dotted var(--line-2); transform: translateY(-4px); min-width: .8rem; }
.prow__p { font-family: var(--ff-mono); font-size: .84rem; font-weight: 600; flex: none; }
.prow small { display: block; font-family: var(--ff-body); font-size: .82rem; font-weight: 400; color: var(--smoke); letter-spacing: 0; text-transform: none; }

.note {
  border: 2px dashed var(--line-2);
  border-radius: var(--r);
  padding: 1.35rem 1.5rem;
  display: grid;
  gap: .55rem;
  font-size: .9rem;
  color: var(--smoke);
  background: var(--paper);
}
.note strong { color: var(--ink); }

/* ---------- accordion ---------- */
.acc { display: grid; gap: .75rem; }
.acc__item { border: 2px solid var(--ink); border-radius: var(--r-s); background: var(--paper); overflow: hidden; transition: background-color .25s; }
.acc__item.is-open { background: var(--lime); }
.acc__q {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1.15rem 1.35rem;
  text-align: left;
  font-family: var(--ff-display);
  font-size: 1.08rem;
  font-weight: 600;
  line-height: 1.28;
}
.acc__ico { flex: none; width: 22px; height: 22px; position: relative; margin-top: .2rem; }
.acc__ico::before, .acc__ico::after {
  content: "";
  position: absolute;
  left: 50%; top: 50%;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .35s var(--pop), opacity .25s;
}
.acc__ico::before { width: 14px; height: 2.5px; transform: translate(-50%, -50%); }
.acc__ico::after  { width: 2.5px; height: 14px; transform: translate(-50%, -50%); }
.acc__item.is-open .acc__ico::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }
.acc__a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .38s var(--ease); }
.acc__item.is-open .acc__a { grid-template-rows: 1fr; }
.acc__a > div { overflow: hidden; }
.acc__a p { padding: 0 1.35rem 1.25rem; font-size: .96rem; color: var(--ink-2); max-width: 74ch; }
.acc__item.is-open .acc__a p { color: var(--ink); }

/* ==========================================================================
   BOOKING FLOW
   ========================================================================== */
.bk { display: grid; gap: clamp(1.5rem, 3vw, 2.5rem); align-items: start; }
@media (min-width: 1000px) { .bk { grid-template-columns: minmax(0, 1fr) 340px; } }

/* progress */
.bk__bar { display: flex; align-items: center; gap: .4rem; margin-bottom: 1.75rem; flex-wrap: wrap; }
.bk__step {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .45rem .8rem;
  border: 2px solid var(--ink);
  border-radius: var(--r-pill);
  background: var(--paper);
  font-family: var(--ff-mono);
  font-size: .55rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: background-color .3s, color .3s, transform .3s var(--pop);
  cursor: pointer;
}
.bk__step[disabled] { cursor: default; opacity: .45; }
.bk__step.is-on { background: var(--ink); color: var(--lime); transform: scale(1.04); }
.bk__step.is-done { background: var(--lime); }
.bk__step b { font-size: .68rem; }

/* panels */
.bk__panel { display: none; animation: panelIn .45s var(--ease); }
.bk__panel.is-on { display: block; }
@keyframes panelIn { from { opacity: 0; transform: translateY(14px); } }

.bk__q { font-family: var(--ff-display); font-size: clamp(1.6rem, 3.6vw, 2.35rem); font-weight: 700; letter-spacing: -.035em; line-height: 1.02; }
.bk__hint { color: var(--smoke); font-size: .95rem; margin-top: .6rem; }

/* option tiles */
.opts { display: grid; gap: .75rem; margin-top: 1.6rem; }
.opts--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.opts--3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
@media (min-width: 620px) { .opts--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); } .opts--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
.opts--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.opts--1 { grid-template-columns: 1fr; }

.opt {
  position: relative;
  display: grid;
  gap: .45rem;
  align-content: start;
  padding: 1.15rem 1.2rem;
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: var(--r-s);
  box-shadow: 0 3px 0 var(--ink);
  text-align: left;
  transition: transform .2s var(--pop), box-shadow .2s var(--pop), background-color .25s;
}
.opt:hover { transform: translateY(-3px); box-shadow: 0 6px 0 var(--ink); }
.opt.is-on { background: var(--lime); box-shadow: 0 3px 0 var(--ink); transform: none; }
.opt.is-on::after {
  content: "✓";
  position: absolute;
  top: -10px; right: -10px;
  width: 28px; height: 28px;
  display: grid;
  place-items: center;
  background: var(--ink);
  color: var(--lime);
  border-radius: 50%;
  font-size: .82rem;
  font-weight: 700;
  animation: pop .3s var(--pop);
}
@keyframes pop { from { transform: scale(0); } }
.opt__t { font-family: var(--ff-display); font-size: 1.06rem; font-weight: 600; letter-spacing: -.02em; line-height: 1.15; }
.opt__d { font-size: .82rem; color: var(--smoke); line-height: 1.45; }
.opt.is-on .opt__d { color: var(--ink-2); }
.opt__p { font-family: var(--ff-mono); font-size: .68rem; font-weight: 600; margin-top: .15rem; }
.opt__ico { font-size: 1.9rem; line-height: 1; }

/* fields */
.fields { display: grid; gap: 1rem; margin-top: 1.6rem; }
@media (min-width: 620px) { .fields--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.field { display: grid; gap: .4rem; min-width: 0; }
.field label { font-family: var(--ff-mono); font-size: .55rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--smoke); }
.field input, .field select, .field textarea {
  width: 100%;
  min-width: 0;
  max-width: 100%;
  padding: .85rem 1rem;
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: var(--r-s);
  font-size: .98rem;
  transition: box-shadow .2s, border-color .2s;
}

/* Date and time inputs size themselves from their native shadow UI, which on
   iOS Safari ignores width:100% and spills past the border. Strip the native
   appearance and let the shadow parts shrink. */
.field input[type="date"],
.field input[type="time"],
.field input[type="datetime-local"] {
  -webkit-appearance: none;
  appearance: none;
  display: block;
  line-height: normal;
}
.field input[type="date"]::-webkit-datetime-edit,
.field input[type="time"]::-webkit-datetime-edit {
  padding: 0;
  min-width: 0;
  overflow: hidden;
}
.field input[type="date"]::-webkit-date-and-time-value,
.field input[type="time"]::-webkit-date-and-time-value {
  text-align: left;
  margin: 0;
  min-width: 0;
}
.field input[type="date"]::-webkit-calendar-picker-indicator,
.field input[type="time"]::-webkit-calendar-picker-indicator {
  margin-inline-start: auto;
  padding-inline-start: .5rem;
  flex: none;
  cursor: pointer;
}
/* one explicit height for every single-line control so date, time, select and
   text inputs line up exactly when they sit side by side */
.field input, .field select { height: 3.6rem; }
.field textarea { min-height: 96px; resize: vertical; height: auto; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; box-shadow: 0 3px 0 var(--cobalt); border-color: var(--cobalt); }
.field input:invalid:not(:placeholder-shown) { border-color: var(--coral); }
.field__err { font-size: .8rem; color: var(--coral); font-weight: 600; display: none; }
.field.has-err .field__err { display: block; }
.field.has-err input, .field.has-err select { border-color: var(--coral); }

/* nav */
.bk__nav { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 2rem; align-items: center; }
.bk__back { font-weight: 700; color: var(--smoke); display: inline-flex; align-items: center; gap: .4rem; }
.bk__back:hover { color: var(--ink); }
.bk__back svg { width: 1em; height: 1em; }

/* summary rail */
.bill {
  position: sticky;
  top: calc(var(--hdr-h) + 16px);
  border: 2px solid var(--ink);
  border-radius: var(--r);
  background: var(--paper);
  box-shadow: var(--sh-2);
  overflow: hidden;
}
.bill__hd {
  background: var(--ink);
  color: var(--lime);
  padding: .95rem 1.25rem;
  font-family: var(--ff-mono);
  font-size: .58rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}
.bill__body { padding: 1.25rem; display: grid; gap: .7rem; }
.bill__row { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; font-size: .9rem; }
.bill__row span:first-child { color: var(--smoke); }
.bill__row b { font-family: var(--ff-mono); font-size: .8rem; font-weight: 600; }
.bill__row--strike b { text-decoration: line-through; opacity: .5; }
.bill__empty { color: var(--smoke-dim); font-size: .88rem; }
.bill__total {
  border-top: 2px solid var(--ink);
  padding: 1.1rem 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  background: var(--lime);
}
.bill__total span { font-family: var(--ff-mono); font-size: .6rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.bill__total b { font-family: var(--ff-display); font-size: 1.9rem; font-weight: 700; letter-spacing: -.04em; line-height: 1; }
.bill__note { padding: 0 1.25rem 1.25rem; font-size: .78rem; color: var(--smoke); }
.bill.is-bump { animation: bump .4s var(--pop); }
@keyframes bump { 30% { transform: scale(1.015); } }

/* review + done */
.review { display: grid; gap: .1rem; margin-top: 1.6rem; border: 2px solid var(--ink); border-radius: var(--r); overflow: hidden; background: var(--paper); }
.review__r { display: flex; gap: 1rem; justify-content: space-between; padding: .9rem 1.2rem; border-top: 1px solid var(--line); }
.review__r:first-child { border-top: 0; }
.review__k { font-family: var(--ff-mono); font-size: .55rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--smoke); flex: none; padding-top: .18rem; }
.review__v { text-align: right; font-weight: 600; }

.done { display: grid; gap: 1.35rem; justify-items: center; text-align: center; padding: clamp(2rem, 5vw, 3.5rem) 0; }
.done__mark {
  width: 92px; height: 92px;
  border-radius: 50%;
  background: var(--lime);
  border: 2px solid var(--ink);
  display: grid;
  place-items: center;
  box-shadow: var(--sh-2);
  animation: pop .5s var(--pop);
}
.done__mark svg { width: 42px; height: 42px; }

/* ---------- header ---------- */
.hdr {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(241, 239, 234, .88);
  backdrop-filter: blur(14px) saturate(150%);
  -webkit-backdrop-filter: blur(14px) saturate(150%);
  border-bottom: 2px solid transparent;
  transition: background-color .3s, border-color .3s;
}
.hdr.is-stuck { background: rgba(241, 239, 234, .97); border-bottom-color: var(--ink); }
.hdr__in { display: flex; align-items: center; justify-content: space-between; gap: 1.25rem; min-height: var(--hdr-h); }

.brand { display: inline-flex; align-items: center; gap: .5rem; flex: none; }
.brand__mark {
  width: 38px; height: 38px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--lime);
  display: grid;
  place-items: center;
  flex: none;
  transition: transform .4s var(--pop);
}
.brand__mark svg { width: 21px; height: 21px; }
.brand:hover .brand__mark { transform: rotate(-12deg) scale(1.06); }
.brand__w {
  font-family: var(--ff-display);
  font-size: 1.42rem;
  font-weight: 700;
  letter-spacing: -.045em;
  font-variation-settings: "SOFT" 80, "WONK" 1, "opsz" 96;
  line-height: 1;
}

.nav { display: none; }
@media (min-width: 1080px) { .nav { display: flex; align-items: center; gap: .1rem; } }
.nav a {
  position: relative;
  padding: .55rem .8rem;
  font-size: .92rem;
  font-weight: 600;
  border-radius: var(--r-pill);
  transition: background-color .22s, color .22s;
  white-space: nowrap;
}
.nav a:hover { background: var(--lime); }
.nav a[aria-current="page"] { background: var(--ink); color: var(--cloud); }

.hdr__cta { display: none; }
@media (min-width: 1080px) { .hdr__cta { display: inline-flex; } }

.burger {
  width: 44px; height: 44px;
  display: grid;
  place-items: center;
  align-content: center;
  grid-auto-rows: 2.5px;
  gap: 4px;
  border: 2px solid var(--ink);
  border-radius: 12px;
  background: var(--paper);
  flex: none;
}
@media (min-width: 1080px) { .burger { display: none; } }
.burger span { display: block; width: 18px; height: 2.5px; background: var(--ink); border-radius: 2px; transition: transform .34s var(--pop), opacity .2s; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* drawer */
.drawer {
  position: fixed;
  inset: 0;
  z-index: 55;
  background: var(--cloud);
  padding: calc(var(--hdr-h) + 1.5rem) 0 2.5rem;
  overflow-y: auto;
  overscroll-behavior: contain;
  opacity: 0;
  visibility: hidden;
  transition: opacity .28s var(--ease), visibility .28s;
}
.drawer.is-open { opacity: 1; visibility: visible; }
.drawer__close {
  position: absolute;
  top: 1rem;
  right: var(--gut);
  z-index: 2;
  width: 46px; height: 46px;
  display: grid;
  place-items: center;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--paper);
  box-shadow: 0 3px 0 var(--ink);
  transition: transform .2s var(--pop), box-shadow .2s var(--pop), background-color .2s;
}
.drawer__close:hover { background: var(--coral); transform: translateY(-2px); box-shadow: 0 5px 0 var(--ink); }
.drawer__close:hover svg { color: #fff; }
.drawer__close:active { transform: translateY(1px); box-shadow: 0 2px 0 var(--ink); }
.drawer__close svg { width: 20px; height: 20px; transition: color .2s; }
@media (min-width: 1080px) { .drawer { display: none; } }
.drawer__nav { display: grid; gap: .6rem; }
.drawer__nav a {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border: 2px solid var(--ink);
  border-radius: var(--r-s);
  background: var(--paper);
  box-shadow: 0 3px 0 var(--ink);
  font-family: var(--ff-display);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: -.03em;
  transition: background-color .2s, transform .2s var(--pop);
}
.drawer__nav a:hover, .drawer__nav a[aria-current="page"] { background: var(--lime); transform: translateX(4px); }
.drawer__nav span { font-family: var(--ff-mono); font-size: .55rem; font-weight: 600; color: var(--smoke); }
.drawer__foot { margin-top: 1.75rem; display: grid; gap: 1rem; }

/* mobile dock */
.dock {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 45;
  display: grid;
  grid-template-columns: 1fr 1fr 1.25fr;
  background: var(--ink);
  border-top: 2px solid var(--ink);
  padding-bottom: env(safe-area-inset-bottom);
  transform: translateY(115%);
  transition: transform .38s var(--pop);
}
.dock.is-on { transform: none; }
@media (min-width: 1080px) { .dock { display: none; } }
.dock a {
  display: grid;
  justify-items: center;
  gap: 4px;
  padding: .68rem .3rem .72rem;
  font-family: var(--ff-mono);
  font-size: .52rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #b9b2aa;
  border-right: 1px solid rgba(255, 255, 255, .14);
}
.dock a:last-child { border-right: 0; background: var(--lime); color: var(--ink); }
.dock a svg { width: 18px; height: 18px; }

/* ---------- footer ---------- */
.foot { background: var(--ink); color: #cfc9c2; padding-top: clamp(3rem, 6vw, 4.5rem); }
.foot h4 { font-family: var(--ff-mono); font-size: .56rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--lime); margin-bottom: 1rem; }
.foot a { color: #e6e1db; }
.foot a:hover { color: var(--lime); }
.foot__grid { display: grid; gap: 2.25rem; }
@media (min-width: 860px)  { .foot__grid { grid-template-columns: 1.5fr 1fr 1fr; gap: 3rem; } }
@media (min-width: 1140px) { .foot__grid { grid-template-columns: 1.6fr 1fr 1fr 1.2fr; } }
.foot__grid ul { display: grid; gap: .55rem; font-size: .92rem; }
.foot .brand__w { color: var(--paper); }
.foot__bar {
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  border-top: 1px solid rgba(255, 255, 255, .16);
  padding-block: 1.4rem;
  display: flex;
  flex-wrap: wrap;
  gap: .7rem 1.5rem;
  align-items: center;
  justify-content: space-between;
  font-size: .78rem;
  color: #8f8880;
}
@media (max-width: 1079px) { .foot { padding-bottom: 4.5rem; } }

.socials { display: flex; gap: .5rem; flex-wrap: wrap; }
.social {
  width: 40px; height: 40px;
  border: 2px solid rgba(255, 255, 255, .28);
  border-radius: 12px;
  display: grid;
  place-items: center;
  transition: all .25s var(--pop);
}
.social:hover { background: var(--lime); border-color: var(--lime); color: var(--ink); transform: translateY(-3px); }
.social svg { width: 17px; height: 17px; }

/* ---------- reveal ---------- */
.rv { opacity: 0; transform: translateY(20px); transition: opacity .7s var(--ease), transform .8s var(--ease); }
.rv.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .rv { opacity: 1; transform: none; } }

/* ---------- utilities ---------- */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip { position: absolute; top: -60px; left: var(--gut); z-index: 100; background: var(--ink); color: var(--lime); padding: .7rem 1.1rem; border-radius: 0 0 12px 12px; font-weight: 700; transition: top .2s; }
.skip:focus { top: 0; }
.nowrap { white-space: nowrap; }
.tilt-l { transform: rotate(-1.2deg); }
.tilt-r { transform: rotate(1.2deg); }
