/* Lilypad FABLE-TEST — built from mockups 01-07. One token layer, two themes. */

@font-face {
  font-family: "Dubbo FREE";
  src: url("./assets/fonts/dubbo-free.woff2") format("woff2");
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("./assets/fonts/PlusJakartaSans-VariableFont_wght.woff2") format("woff2");
  font-weight: 200 800;
  font-display: swap;
}

:root {
  color-scheme: light;
  --display: "Dubbo FREE", Georgia, serif;
  --body: "Plus Jakarta Sans", system-ui, sans-serif;

  --paper: var(--color-paper, #fefee3);
  --paper-raised: var(--color-paper-raised, #fffef2);
  --grid-ink: rgb(44 110 73 / 0.07);
  --ink: #173c28;
  --ink-soft: #315e43;
  --muted: #5c7a63;
  --deep: #2c6e49;
  --pond: #0b3120;
  --panel-green: #134228;
  --panel-green-2: #0e3722;
  --plum: #3f1c2e;
  --fresh: #569e76;
  --mint: #a4df98;
  --blush: #f9b8c4;
  --clay: #d68c45;
  --cream: var(--color-cream-on-dark, #f6efd9);
  --line: rgb(44 110 73 / 0.22);
  --shadow: 0 1rem 1.8rem rgb(8 39 25 / 0.16), 0 0.3rem 0.6rem rgb(8 39 25 / 0.1);
  --shadow-big: 0 1.6rem 2.6rem rgb(8 39 25 / 0.2), 0 0.5rem 0.9rem rgb(8 39 25 / 0.12);

  --r-sm: 0.6rem;
  --r-md: 0.95rem;
  --r-lg: 1.35rem;
  --r-xl: 1.8rem;
  --pill: 999px;

  --gutter: clamp(1rem, 3vw, 2.5rem);
  --maxw: 78rem;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --dur: 280ms;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

html, body { overflow-x: clip; }

#work,
#services,
#process,
#pricing,
#contact {
  scroll-margin-top: 7.25rem;
}

body {
  margin: 0;
  background-color: var(--paper);
  background-image:
    linear-gradient(var(--grid-ink) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-ink) 1px, transparent 1px);
  background-size: 34px 34px;
  color: var(--ink);
  font-family: var(--body);
  font-size: 1rem;
  line-height: 1.6;
  transition: background-color 320ms ease, color 320ms ease;
}

img { max-width: 100%; height: auto; }

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

.skip-link {
  position: fixed;
  top: -3.5rem;
  left: 1rem;
  z-index: 100;
  padding: 0.6rem 1rem;
  border-radius: var(--r-sm);
  background: var(--pond);
  color: var(--paper);
  font-weight: 800;
  text-decoration: none;
  transition: top 200ms ease;
}

.skip-link:focus-visible { top: 1rem; }

/* ── Buttons & chips ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 3rem;
  padding: 0 1.45rem;
  border: 0;
  border-radius: var(--pill);
  font-family: var(--body);
  font-size: 0.92rem;
  font-weight: 850;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 0.45rem 0.85rem rgb(8 39 25 / 0.22), inset 0 1px 0 rgb(255 255 255 / 0.25);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), background-color var(--dur) var(--ease);
}

.btn:hover, .btn:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 0.8rem 1.3rem rgb(8 39 25 / 0.26), inset 0 1px 0 rgb(255 255 255 / 0.25);
}

.btn:active { transform: translateY(-1px); }
.btn span { transition: transform var(--dur) var(--ease); }
.btn:hover span { transform: translateX(3px); }
.btn--green { background: #2c6e49; color: #fefee3; }
.btn--green:hover { background: #235c3c; }
.btn--blush { background: var(--blush); color: #143824; }
.btn--blush:hover { background: #fbcad3; }
.btn--cream { background: #f6efd9; color: #14351f; }
.btn--cream:hover { background: #fffdf0; }
.btn--small { min-height: 2.55rem; padding: 0 1.1rem; font-size: 0.82rem; }

.chip {
  display: inline-flex;
  align-items: center;
  min-height: 1.9rem;
  width: fit-content;
  padding: 0.32rem 0.85rem;
  border-radius: var(--pill);
  font-size: 0.74rem;
  font-weight: 900;
  line-height: 1.2;
}

.chip--outline { border: 1px solid rgb(246 239 217 / 0.45); background: rgb(246 239 217 / 0.12); color: #f6efd9; }
.chip--blush { background: var(--blush); color: #143824; }
.chip--green { background: #2c6e49; color: #fefee3; }
.chip--plum { background: #3f1c2e; color: #f9b8c4; }

.tag {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 0.3rem 0.75rem;
  border-radius: var(--pill);
  background: #f6dab1;
  color: #6b3a18;
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1;
  text-transform: lowercase;
}

 .tag[data-cat="accounting"] { background: #e5f1d7; color: #214a35; }

.outcome {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  width: fit-content;
  padding: 0.32rem 0.7rem;
  border: 1px solid rgb(76 149 108 / 0.35);
  border-radius: var(--pill);
  background: rgb(85 170 120 / 0.14);
  color: #2c6e49;
  font-size: 0.74rem;
  font-weight: 850;
  line-height: 1;
}

.outcome::before { content: "↳"; font-size: 0.8em; }

/* ── Header ──────────────────────────────────────────────────────── */
.header {
  position: sticky;
  top: 0.8rem;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  width: min(var(--maxw), calc(100% - 2 * var(--gutter)));
  margin: 0.8rem auto 0;
  padding: 0.55rem 0.7rem 0.55rem 1.1rem;
  border-radius: var(--pill);
  background: var(--panel-green);
  box-shadow: var(--shadow);
  transition: box-shadow var(--dur) ease, transform var(--dur) var(--ease);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  width: 2.6rem;
  height: 2.6rem;
  border: 1px solid rgb(246 239 217 / 0.35);
  border-radius: 50%;
  background: var(--blush);
  cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
  width: 1.05rem;
  height: 2px;
  border-radius: 2px;
  background: #0b3120;
  transition: transform 200ms ease;
}

/* ── Section shells ──────────────────────────────────────────────── */
.panel {
  position: relative;
  width: min(var(--maxw), calc(100% - 2 * var(--gutter)));
  margin: clamp(1.2rem, 2.5vw, 2rem) auto;
  border-radius: var(--r-xl);
  overflow: hidden;
}

.panel--green {
  background:
    radial-gradient(circle at 80% 0%, rgb(164 223 152 / 0.07), transparent 40%),
    linear-gradient(170deg, var(--panel-green), var(--panel-green-2));
  color: #f6efd9;
  box-shadow: var(--shadow-big);
}

.section-title {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.1rem, 4.6vw, 3.4rem);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: 0;
  color: var(--pond);
  text-wrap: balance;
}
.section-title--cream { color: #f6efd9 !important; }

.section-lede {
  max-width: 38rem;
  margin: 0.7rem auto 0;
  color: var(--ink-soft);
  font-size: clamp(0.95rem, 1.1vw, 1.05rem);
  font-weight: 650;
}

.wavy { position: relative; color: #4c956c; white-space: nowrap; }

.wavy::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  bottom: -0.08em;
  height: 0.16em;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 40 8' preserveAspectRatio='none'%3E%3Cpath d='M0 5 Q5 1 10 5 T20 5 T30 5 T40 5' fill='none' stroke='%234c956c' stroke-width='2.2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-size: 2.4em 100%;
  background-repeat: repeat-x;
}
.wavy--blush { color: var(--blush); }
.wavy--blush::after { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 40 8' preserveAspectRatio='none'%3E%3Cpath d='M0 5 Q5 1 10 5 T20 5 T30 5 T40 5' fill='none' stroke='%23f9b8c4' stroke-width='2.2' stroke-linecap='round'/%3E%3C/svg%3E"); }

/* ── Reveal animation ────────────────────────────────────────────── */
.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 600ms var(--ease), transform 600ms var(--ease);
}

.reveal[data-reveal-pending] { opacity: 1; transform: translateY(1rem); }
.reveal.is-visible { transform: translateY(0); }

/* ── 01 · Hero ───────────────────────────────────────────────────── */
.hero {
  position: relative;
  width: min(var(--maxw), calc(100% - 2 * var(--gutter)));
  margin: 0 auto;
  padding: clamp(1.6rem, 4vw, 3.4rem) 0 clamp(1.4rem, 3vw, 2.4rem);
}

.hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  align-items: center;
  gap: clamp(1.5rem, 4vw, 3.5rem);
}

.hero__copy { position: relative; z-index: 2; }

.hero__wordmark {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(4.4rem, 11vw, 8.6rem);
  font-weight: 700;
  line-height: 0.82;
  color: var(--pond);
}

.hero__wordmark .char {
  display: inline-block;
  animation: charRise 640ms var(--ease) backwards;
  animation-delay: calc(var(--ci) * 45ms);
}

@keyframes charRise {
  from { transform: translateY(0.28em) rotate(4deg); }
  to { transform: translateY(0) rotate(0deg); }
}

.hero__headline {
  max-width: 24ch;
  margin: 1.1rem 0 0;
  font-size: clamp(1.5rem, 2.9vw, 2.3rem);
  font-weight: 800;
  line-height: 1.12;
  color: var(--pond);
}
.hero__headline em { font-style: normal; color: #4c956c; }

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.4rem;
}

/* stamp collage */
.hero__stamps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  align-items: start;
}

@keyframes stampSettle {
  from { transform: rotate(calc(var(--rot, 0deg) + var(--rd, -5deg))) translateY(16px) scale(0.965); }
  to { transform: rotate(var(--rot, 0deg)) translateY(0) scale(1); }
}

/* quick strip */
.quick {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.7rem, 1.6vw, 1.1rem);
  margin-top: clamp(1.6rem, 3vw, 2.4rem);
}

.quick__card {
  display: grid;
  grid-template-columns: auto auto auto;
  align-items: center;
  justify-content: start;
  column-gap: 0.6rem;
  min-height: 4.4rem;
  padding: 0.85rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: var(--paper-raised);
  color: var(--ink);
  text-decoration: none;
  box-shadow: 0 0.5rem 0.9rem rgb(8 39 25 / 0.08);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}

.quick__card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.quick__card strong { font-family: var(--display); font-size: clamp(1.15rem, 1.6vw, 1.5rem); color: var(--pond); white-space: nowrap; }
.quick__card > span:last-child { color: var(--muted); font-size: 0.85rem; font-weight: 650; white-space: nowrap; }

.quick__icon {
  display: grid;
  place-items: center;
  width: 2.7rem;
  height: 2.7rem;
  border-radius: 50%;
  overflow: hidden;
}

.quick__icon img { width: 120%; height: 120%; object-fit: contain; }
.quick__icon--mint { background: #dff0d0; }
.quick__card--dark { background: var(--panel-green); border-color: rgb(246 239 217 / 0.2); color: #f6efd9; }
.quick__card--dark strong { color: #f6efd9; }
.quick__card--dark > span:last-child { color: rgb(246 239 217 / 0.75); }
.quick__icon--pad { background: rgb(246 239 217 / 0.16); }
.quick__icon--pad img { filter: brightness(0) saturate(100%) invert(94%) sepia(10%) saturate(500%) hue-rotate(15deg); }

/* ── 02 · Work ───────────────────────────────────────────────────── */
.work {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.4fr);
  grid-template-areas: "head featured" "grid grid";
  gap: clamp(1.2rem, 2.6vw, 2.2rem);
  padding: clamp(1.6rem, 3.4vw, 3rem);
}

.work__head { grid-area: head; align-self: center; }

.work__title {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.2rem, 4.4vw, 3.6rem);
  line-height: 1.02;
  color: #f6efd9;
}

.work__title em { font-style: normal; color: var(--mint); }

.work__lede {
  max-width: 30ch;
  margin: 1rem 0 0;
  color: rgb(246 239 217 / 0.8);
  font-size: 0.95rem;
  font-weight: 600;
}

.work-featured {
  grid-area: featured;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(0.9rem, 1.8vw, 1.4rem);
  padding: clamp(0.9rem, 1.6vw, 1.25rem);
  border-radius: var(--r-lg);
  background: var(--paper-raised);
  color: var(--ink);
  box-shadow: var(--shadow-big);
}

.work-featured__shot {
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid var(--line);
  background: #efe9d4;
}

.work-featured__shot img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 240ms ease;
}

.work-featured__copy { display: grid; gap: 0.5rem; align-content: start; padding-block: 0.3rem; }
.work-featured__copy h3 { margin: 0; font-family: var(--display); font-size: clamp(1.5rem, 2.2vw, 1.95rem); line-height: 1; color: var(--pond); }
.work-featured__meta { margin: 0; color: var(--muted); font-size: 0.8rem; font-weight: 700; }
.work-featured__blurb { margin: 0; color: var(--ink-soft); font-size: 0.9rem; font-weight: 600; line-height: 1.5; }

.work-featured__link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 0.3rem;
  color: #2c6e49;
  font-size: 0.88rem;
  font-weight: 850;
  text-decoration: none;
}
.work-featured__link span { transition: transform var(--dur) var(--ease); }
.work-featured__link:hover span { transform: translateX(4px); }

.work-grid {
  grid-area: grid;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.9rem, 1.8vw, 1.4rem);
}

.work-card {
  display: grid;
  gap: 0.5rem;
  padding: clamp(0.75rem, 1.3vw, 1rem);
  border: 0;
  border-radius: var(--r-lg);
  background: var(--paper-raised);
  color: var(--ink);
  font-family: var(--body);
  text-align: left;
  cursor: pointer;
  box-shadow: var(--shadow);
  transform: rotate(var(--tilt, 0deg));
  transition: transform 340ms var(--ease), box-shadow 340ms var(--ease);
}

.work-card:nth-child(1) { --tilt: -0.7deg; }
.work-card:nth-child(2) { --tilt: 0.4deg; }
.work-card:nth-child(3) { --tilt: -0.4deg; }
.work-card:hover { transform: rotate(0deg) translateY(-5px); box-shadow: var(--shadow-big); }

.work-card img {
  display: block;
  border-radius: var(--r-md);
  border: 1px solid var(--line);
  width: 100%;
  object-fit: cover;
  aspect-ratio: 16 / 10.5;
}

.work-card__row { display: flex; align-items: center; gap: 0.55rem; flex-wrap: wrap; }
.work-card__row strong { font-family: var(--display); font-size: 1.12rem; color: var(--pond); }
.work-card p { margin: 0; color: var(--ink-soft); font-size: 0.82rem; font-weight: 600; line-height: 1.45; }

/* ── 03 · Services ───────────────────────────────────────────────── */
.services {
  position: relative;
  width: min(var(--maxw), calc(100% - 2 * var(--gutter)));
  margin: clamp(2rem, 4vw, 3.4rem) auto;
}

.services__head { text-align: center; margin-bottom: clamp(1.4rem, 2.6vw, 2.2rem); }

.offers {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(0, 1fr);
  gap: clamp(0.9rem, 1.8vw, 1.4rem);
  align-items: stretch;
}

.offer {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: clamp(0.9rem, 1.6vw, 1.2rem);
  padding: clamp(1.3rem, 2.4vw, 1.9rem);
  border-radius: var(--r-lg);
  overflow: hidden;
  color: #f6efd9;
  box-shadow: var(--shadow-big);
  transition: transform 320ms var(--ease), box-shadow 320ms var(--ease);
}

.offer:hover { transform: translateY(-5px); }
.offer--green { background: var(--panel-green); }
.offer--plum { background: var(--plum); }

.offer__sprig {
  position: absolute;
  right: -1.2rem;
  bottom: -1.6rem;
  width: clamp(6rem, 10vw, 9rem);
  opacity: 0.18;
  transform: rotate(-12deg);
  pointer-events: none;
}

.offer__sprig--tall { right: 0.2rem; bottom: -1rem; transform: rotate(4deg); }
.offer h3 { margin: 0; font-family: var(--display); font-size: clamp(1.65rem, 2.6vw, 2.2rem); line-height: 1; }
.offer > p { max-width: 40ch; margin: 0; color: rgb(246 239 217 / 0.85); font-size: 0.93rem; font-weight: 600; }

.offer__steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.offer__steps li {
  display: grid;
  justify-items: start;
  gap: 0.35rem;
  padding: 0.9rem;
  border-radius: var(--r-md);
  background: rgb(254 254 227 / 0.94);
  color: #173c28;
}

.offer__steps strong { font-size: 0.93rem; font-weight: 850; line-height: 1.15; }
.offer__steps small { color: #4d6a55; font-size: 0.78rem; font-weight: 600; line-height: 1.4; }

.no {
  display: grid;
  place-items: center;
  width: 1.9rem;
  height: 1.9rem;
  border-radius: 50%;
  font-family: var(--display);
  font-size: 0.85rem;
  color: #14351f;
  box-shadow: 0 0.2rem 0.4rem rgb(8 39 25 / 0.16);
}

.no--mint { background: #a4df98; }
.no--blush { background: #f9b8c4; }
.no--clay { background: #f0bd7e; }

.offer__list { display: grid; gap: 0.55rem; margin: 0; padding: 0; list-style: none; }

.offer__list li {
  position: relative;
  padding-left: 1.3rem;
  color: rgb(246 239 217 / 0.9);
  font-size: 0.9rem;
  font-weight: 650;
  line-height: 1.45;
}

.offer__list li::before {
  content: "";
  position: absolute;
  top: 0.42em;
  left: 0.1rem;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--blush);
  box-shadow: 0 0 0 0.16rem rgb(249 184 196 / 0.25);
}

.offer .btn { margin-top: auto; width: fit-content; }

.included {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: clamp(1rem, 2.4vw, 2rem);
  margin-top: clamp(0.9rem, 1.8vw, 1.4rem);
  padding: clamp(0.95rem, 1.8vw, 1.3rem) clamp(1.1rem, 2.2vw, 1.7rem);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: var(--paper-raised);
  box-shadow: 0 0.6rem 1.1rem rgb(8 39 25 / 0.08);
}

.included__label {
  max-width: 7.5rem;
  font-family: var(--display);
  font-size: clamp(1.1rem, 1.5vw, 1.3rem);
  line-height: 1.05;
  color: #2c6e49;
  transform: rotate(-1.6deg);
}

.included__list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.85rem, 1.8vw, 1.4rem);
  margin: 0;
  padding: 0;
  list-style: none;
}

.included__list li {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  grid-template-rows: auto auto;
  column-gap: 0.7rem;
  row-gap: 0.15rem;
  align-items: start;
}

.included__icon {
  grid-row: 1 / 3;
  display: grid;
  place-items: center;
  align-self: center;
  width: 2.7rem;
  height: 2.7rem;
  border-radius: 50%;
  color: #173c28;
}

.included__icon--mint { background: #d8eec6; }
.included__icon--peach { background: #fbe3c4; }
.included__icon--pink { background: #fbd7de; }
.included__list strong { font-size: 0.92rem; font-weight: 900; color: var(--ink); }
.included__list small { color: var(--muted); font-size: 0.8rem; font-weight: 600; line-height: 1.4; }

/* ── 04 · Process ────────────────────────────────────────────────── */
.process {
  width: min(var(--maxw), calc(100% - 2 * var(--gutter)));
  margin: clamp(2rem, 4vw, 3.4rem) auto;
}

.route {
  --seal: 2.6rem;
  position: relative;
  display: grid;
  row-gap: clamp(0.9rem, 1.8vw, 1.4rem);
  max-width: 52rem;
  margin: clamp(1.5rem, 2.8vw, 2.4rem) auto 0;
  padding: 0;
  list-style: none;
}

/* ── 05 · Pricing ────────────────────────────────────────────────── */
.pricing { padding: clamp(1.6rem, 3.4vw, 3rem); }
.pricing__head { text-align: center; margin-bottom: clamp(1.4rem, 2.6vw, 2.2rem); }

.plans {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(0, 0.94fr);
  gap: clamp(0.9rem, 1.8vw, 1.5rem);
  align-items: stretch;
  max-width: 62rem;
  margin: 0 auto;
}

.plans__plus {
  position: absolute;
  top: 38%;
  left: 50%;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 2.9rem;
  height: 2.9rem;
  border-radius: 50%;
  background: #4c956c;
  color: #fefee3;
  font-family: var(--display);
  font-size: 1.5rem;
  box-shadow: 0 0.4rem 0.8rem rgb(0 0 0 / 0.3), inset 0 0 0 3px rgb(255 255 255 / 0.3);
  transform: translate(-50%, -50%) rotate(-6deg);
}

.plan {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  padding: clamp(1.3rem, 2.6vw, 2rem);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-big);
  transition: transform 320ms var(--ease);
}

.plan:hover { transform: translateY(-5px); }
.plan--cream { background: #fffdf0; color: #173c28; transform: rotate(-0.6deg); }
.plan--cream:hover { transform: rotate(-0.6deg) translateY(-5px); }
.plan--pink { background: #f7cdd7; color: #4a1a2f; transform: rotate(0.6deg); }
.plan--pink:hover { transform: rotate(0.6deg) translateY(-5px); }
.plan .chip { align-self: center; }
.plan h3 { margin: 0; font-family: var(--display); font-size: clamp(1.5rem, 2.4vw, 1.95rem); line-height: 1.05; text-align: center; }

.plan__price { display: flex; align-items: baseline; justify-content: center; gap: 0.5rem; margin: 0; }
.plan__price small { font-size: 0.95rem; font-weight: 800; }
.plan__price strong { font-family: var(--display); font-size: clamp(3.4rem, 6.5vw, 4.6rem); font-weight: 700; line-height: 0.9; }
.plan--cream .plan__price strong { color: #2c6e49; }
.plan--pink .plan__price strong { color: #4a1a2f; }

.plan__note {
  margin: -0.2rem 0 0;
  padding-bottom: 0.55rem;
  border-bottom: 1px dashed rgb(0 0 0 / 0.18);
  font-size: 0.78rem;
  font-weight: 700;
  text-align: center;
  opacity: 0.8;
}

.plan__list { display: grid; gap: 0.45rem; margin: 0; padding: 0; list-style: none; }

.plan__list li {
  position: relative;
  padding-left: 1.55rem;
  font-size: 0.88rem;
  font-weight: 650;
  line-height: 1.45;
}

.plan__list li::before {
  content: "✓";
  position: absolute;
  top: 0.08em;
  left: 0;
  display: grid;
  place-items: center;
  width: 1.05rem;
  height: 1.05rem;
  border-radius: 50%;
  background: #4c956c;
  color: #fefee3;
  font-size: 0.62rem;
  font-weight: 900;
}

.plan--pink .plan__list li::before { background: #c46382; }
.plan .btn { align-self: center; margin-top: auto; }

.pair {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(0.8rem, 2vw, 1.5rem);
  max-width: 62rem;
  margin: clamp(1rem, 2vw, 1.5rem) auto 0;
  padding: 0.95rem clamp(1rem, 2.4vw, 1.6rem);
  border-radius: var(--r-md);
  background: #fffdf0;
  color: #173c28;
  box-shadow: var(--shadow);
  transform: rotate(-0.3deg);
}

.pair p { margin: 0; font-size: 0.92rem; font-weight: 650; }
.pair strong { font-family: var(--display); font-size: 1.15rem; color: #2c6e49; }
.pair u { text-decoration-color: #c46382; text-decoration-thickness: 2px; text-underline-offset: 3px; }

/* ── 06 · Contact ────────────────────────────────────────────────── */
.contact { padding: clamp(1.6rem, 3.4vw, 3rem); }

.contact__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(1.1rem, 2.4vw, 2rem);
  align-items: stretch;
}

.letter {
  position: relative;
  display: grid;
  align-content: start;
  gap: 0.8rem;
  padding: clamp(1.4rem, 2.6vw, 2rem) clamp(1.3rem, 2.4vw, 1.9rem) clamp(1.3rem, 2.4vw, 1.9rem) clamp(2.4rem, 4vw, 3.2rem);
  border-radius: var(--r-lg);
  background:
    repeating-linear-gradient(to bottom, transparent 0 1.9rem, rgb(44 110 73 / 0.12) 1.9rem calc(1.9rem + 1px)),
    radial-gradient(circle at 1.2rem 50%, transparent 0, transparent 100%),
    #fffdf0;
  color: #173c28;
  box-shadow: var(--shadow-big);
}

.letter::before {
  content: "";
  position: absolute;
  top: 1.4rem;
  bottom: 1.4rem;
  left: 1.05rem;
  width: 0.55rem;
  background-image: radial-gradient(circle, rgb(23 60 40 / 0.5) 0.16rem, transparent 0.2rem);
  background-size: 0.55rem 1.9rem;
  background-repeat: repeat-y;
}

.letter__title {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  line-height: 1.04;
  color: #2c6e49;
}

.letter__title em { font-style: normal; color: #173c28; }
.letter__blurb { margin: 0; font-size: 0.92rem; font-weight: 600; line-height: 1.55; color: #315e43; }

.letter__label {
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #5c7a63;
}

.letter__cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.6rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.letter__cards li {
  display: grid;
  justify-items: center;
  gap: 0.3rem;
  padding: 0.75rem 0.5rem;
  border: 1px solid color-mix(in srgb, var(--pop) 40%, transparent);
  border-radius: var(--r-sm);
  background: var(--paper);
  text-align: center;
}

.letter__no {
  display: grid;
  place-items: center;
  width: 1.8rem;
  height: 1.8rem;
  border-radius: 50%;
  background: var(--pop);
  color: #fffef2;
  font-family: var(--display);
  font-size: 0.8rem;
}

.letter__cards strong { font-size: 0.76rem; font-weight: 850; line-height: 1.25; color: #173c28; }

.letter__reply {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  width: fit-content;
  padding: 0.4rem 0.8rem;
  border-radius: var(--pill);
  background: #2c6e49;
  color: #fefee3;
  font-size: 0.76rem;
  font-weight: 800;
}

.letter__sign {
  font-family: var(--display);
  font-size: 1.5rem;
  line-height: 1.1;
  color: #2c6e49;
  transform: rotate(-2deg);
}

.letter__sprig { justify-self: end; width: 5.5rem; opacity: 0.5; margin-top: -2.4rem; }

.form {
  position: relative;
  display: grid;
  gap: 0.75rem;
  padding: clamp(1.6rem, 2.8vw, 2.1rem) clamp(1.3rem, 2.4vw, 1.9rem) clamp(1.3rem, 2.4vw, 1.9rem);
  border-radius: var(--r-lg);
  background: #fffdf0;
  color: #173c28;
  box-shadow: var(--shadow-big);
}

.form__tape {
  position: absolute;
  top: -0.9rem;
  left: 50%;
  width: 5.5rem;
  transform: translateX(-130%) rotate(-3deg);
}

.field { display: grid; gap: 0.3rem; }
.field label { font-size: 0.85rem; font-weight: 850; }
.field label small { font-weight: 650; color: #5c7a63; }

.field input,
.field textarea {
  min-height: 2.9rem;
  padding: 0.6rem 0.85rem;
  border: 1px solid rgb(44 110 73 / 0.3);
  border-radius: var(--r-sm);
  background: #fefee3;
  color: #173c28;
  font-family: var(--body);
  font-size: 0.92rem;
  font-weight: 600;
  transition: border-color 200ms ease, box-shadow 200ms ease;
}

.field textarea { min-height: 5.6rem; resize: vertical; }

.field input:focus,
.field textarea:focus {
  outline: 0;
  border-color: #4c956c;
  box-shadow: 0 0 0 3px rgb(76 149 108 / 0.22);
}

.field.has-error input { border-color: #c0563f; box-shadow: 0 0 0 3px rgb(192 86 63 / 0.16); }
.field__error { min-height: 0; margin: 0; color: #a8442e; font-size: 0.76rem; font-weight: 750; }

.chips { margin: 0; padding: 0; border: 0; }
.chips legend { padding: 0; margin-bottom: 0.45rem; font-size: 0.85rem; font-weight: 850; }
.chips__row { display: flex; flex-wrap: wrap; gap: 0.45rem; }
.chips__chip { position: relative; }

.chips__chip input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.chips__chip span {
  display: inline-flex;
  align-items: center;
  min-height: 2.2rem;
  padding: 0.4rem 0.8rem;
  border: 1px solid rgb(44 110 73 / 0.35);
  border-radius: var(--r-sm);
  background: #fefee3;
  font-size: 0.8rem;
  font-weight: 750;
  transition: background-color 180ms ease, border-color 180ms ease, transform 180ms var(--ease);
}

.chips__chip input:checked + span { background: #d8eec6; border-color: #4c956c; transform: scale(1.02); }
.chips__chip input:focus-visible + span { outline: 3px solid var(--clay); outline-offset: 2px; }

.form__send { display: flex; align-items: center; gap: 0.9rem; flex-wrap: wrap; }
.form__small { display: inline-flex; align-items: center; gap: 0.35rem; color: #5c7a63; font-size: 0.78rem; font-weight: 700; }
.form__note { margin: 0; min-height: 1.2rem; font-size: 0.84rem; font-weight: 800; }
.form__note.is-error { color: #a8442e; }
.form__note.is-success { color: #2c6e49; }

/* ── 07 · Footer ─────────────────────────────────────────────────── */
.footer-top {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  width: fit-content;
  margin: clamp(1.5rem, 3vw, 2.5rem) auto 1rem;
  padding: 0.55rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: var(--pill);
  background: var(--paper-raised);
  color: var(--ink);
  font-size: 0.85rem;
  font-weight: 850;
  text-decoration: none;
  box-shadow: 0 0.4rem 0.8rem rgb(8 39 25 / 0.1);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}

.footer-top:hover { transform: translateY(-3px); box-shadow: var(--shadow); }

.footer {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: clamp(1rem, 2.5vw, 2rem);
  width: min(var(--maxw), calc(100% - 2 * var(--gutter)));
  margin: 0 auto clamp(1.2rem, 2.5vw, 2rem);
  padding: clamp(1.4rem, 2.8vw, 2.2rem) clamp(1.3rem, 2.8vw, 2.4rem) clamp(2rem, 3.6vw, 3rem);
  border-radius: var(--r-xl);
  background: linear-gradient(170deg, var(--panel-green), var(--panel-green-2));
  color: #f6efd9;
  overflow: hidden;
  box-shadow: var(--shadow-big);
}

/* ── Dialogs ─────────────────────────────────────────────────────── */
.dialog { border: 0; border-radius: var(--r-lg); padding: 0; background: transparent; }
.dialog::backdrop { background: rgb(8 32 22 / 0.55); backdrop-filter: blur(2px); }

.dialog__card {
  max-width: 32rem;
  padding: 1.6rem 1.7rem;
  border-radius: var(--r-lg);
  background: #fffdf0;
  color: #173c28;
}

.dialog__card h2 { margin: 0.3rem 0 0.6rem; font-family: var(--display); font-size: 1.6rem; color: #2c6e49; }
.dialog__card p { margin: 0 0 0.7rem; font-size: 0.9rem; font-weight: 600; line-height: 1.55; }

.dialog__close {
  float: right;
  padding: 0.4rem 0.95rem;
  border: 1px solid rgb(44 110 73 / 0.3);
  border-radius: var(--pill);
  background: #fefee3;
  font-family: var(--body);
  font-size: 0.8rem;
  font-weight: 800;
  cursor: pointer;
}

/* ── Tablet ──────────────────────────────────────────────────────── */
@media (max-width: 1020px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__copy { text-align: center; display: grid; justify-items: center; }
  .hero__stamps { max-width: 34rem; margin: 0 auto; }
  .work { grid-template-columns: 1fr; grid-template-areas: "head" "featured" "grid"; }
  .work__head { text-align: center; }
  .work__title br { display: none; }
  .work__lede { margin-inline: auto; }
  .offers { grid-template-columns: 1fr; }
  .contact__grid { grid-template-columns: 1fr; }
  .plans { grid-template-columns: 1fr; max-width: 34rem; }
  .plans__plus { top: 50%; }
  .pair { grid-template-columns: 1fr; justify-items: center; text-align: center; }
  .footer { grid-template-columns: 1fr; justify-items: center; text-align: center; }
}

@media (max-width: 880px) {
  .menu-toggle { display: inline-flex; }
  .work-grid { grid-template-columns: 1fr; max-width: 26rem; margin-inline: auto; }
  .work-featured { grid-template-columns: 1fr; }
  .offer__steps { grid-template-columns: 1fr; }
  .offer__steps li { grid-template-columns: auto 1fr; grid-template-rows: auto auto; column-gap: 0.65rem; }
  .offer__steps .no { grid-row: 1 / 3; align-self: center; }
  .included { grid-template-columns: 1fr; justify-items: center; text-align: center; }
  .included__label { max-width: none; }
  .included__list { grid-template-columns: 1fr; justify-items: start; width: 100%; max-width: 22rem; }
  .included__list li { text-align: left; }

  .route { --seal: 2.2rem; max-width: 36rem; }
}

/* ── Mobile ──────────────────────────────────────────────────────── */
@media (max-width: 600px) {
  .header { gap: 0.6rem; padding-left: 0.85rem; }
  .hero { padding-top: 1.1rem; }
  .hero__wordmark { font-size: clamp(3.8rem, 19vw, 4.6rem); }
  .hero__headline { font-size: clamp(1.45rem, 7vw, 1.8rem); }
  .hero__actions { width: 100%; }
  .hero__actions .btn { width: 100%; }
  .hero__stamps { grid-template-columns: repeat(4, 1fr); }
  .quick { grid-template-columns: 1fr; gap: 0.55rem; margin-top: 1.2rem; }
  .quick__card { min-height: 3.6rem; padding: 0.6rem 0.95rem; }

  .work { padding: 1.2rem 0.9rem 1.4rem; }
  .work-featured__copy { padding-block: 0; }

  .plan--cream, .plan--pink { transform: rotate(0deg); }
  .plan--cream:hover, .plan--pink:hover { transform: translateY(-4px); }
  .pricing { padding: 1.3rem 0.95rem 1.4rem; }
  .pair p { font-size: 0.86rem; }
  .pair .btn { width: 100%; }

  .contact { padding: 1.2rem 0.9rem 1.4rem; }
  .letter { padding-left: 2.2rem; }
  .letter__cards { grid-template-columns: 1fr 1fr; }
  .letter__cards li:last-child { grid-column: 1 / -1; }
  .form__send .btn { width: 100%; }
  .form__tape { transform: translateX(-50%) rotate(-3deg); }

  .footer { padding-bottom: 3.2rem; }
}

/* ── Mobile compactness: keep every section, shorten the scroll ──── */
@media (max-width: 600px) {
  .panel { margin-block: 0.9rem; }
  .hero { padding-bottom: 0.9rem; }
  .hero__actions { margin-top: 1rem; gap: 0.55rem; }

  /* Work: small cards become a swipeable strip instead of a tall stack */
  .work { gap: 0.9rem; }
  .work-grid {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: min(76vw, 19rem);
    max-width: none;
    margin-inline: -0.9rem;
    padding: 0.3rem 0.9rem 0.85rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .work-grid::-webkit-scrollbar { display: none; }
  .work-card { scroll-snap-align: center; }

  .services { margin-block: 1.4rem; }
  .services__head { margin-bottom: 1rem; }
  .offers { gap: 0.7rem; }
  .offer { gap: 0.75rem; padding: 1.1rem 1rem 1.15rem; }
  .offer__steps { gap: 0.5rem; }
  .offer__steps li { padding: 0.7rem 0.8rem; }
  .offer__list { gap: 0.4rem; }
  .included { gap: 0.65rem; padding: 0.85rem 0.95rem 0.95rem; margin-top: 0.7rem; }
  .included__list { gap: 0.65rem; }

  .process { margin-block: 1.4rem; }
  .route { row-gap: 0.7rem; margin-top: 1.1rem; }

  .pricing__head { margin-bottom: 1rem; }
  .plans { gap: 0.8rem; }
  .plan { gap: 0.5rem; padding: 1.1rem 1rem 1.2rem; }
  .plan__list { gap: 0.32rem; }
  .plan__price strong { font-size: clamp(2.9rem, 13vw, 3.4rem); }
  .pair { margin-top: 0.8rem; padding: 0.85rem 1rem; gap: 0.6rem; }

  .contact__grid { gap: 0.9rem; }
  .letter { gap: 0.6rem; }
  .form { gap: 0.6rem; }
  .field textarea { min-height: 4.6rem; }

  .footer-top { margin: 1.1rem auto 0.7rem; }
  .footer { gap: 0.8rem; padding: 1.2rem 1.1rem 2.6rem; }
}

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

  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-delay: 0ms !important;
    transition-duration: 0.01ms !important;
  }

  .reveal[data-reveal-pending] { transform: none; }
}

/* Final readiness pass: parent-size header, rebuilt hero stamps, section polish. */
body {
  font-size: clamp(1rem, 0.96rem + 0.16vw, 1.08rem);
}

html,
body {
  max-width: 100%;
  overflow-x: clip;
}

@supports not (overflow: clip) {
  html,
  body {
    overflow-x: hidden;
  }
}

#work,
#services,
#process,
#pricing,
#contact {
  scroll-margin-top: 6.8rem;
}

.btn {
  min-height: 3.35rem;
  padding-inline: 1.7rem;
  font-size: 1rem;
}

.site-header {
  position: sticky;
  top: 0.8rem;
  z-index: 50;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(1rem, 2vw, 2rem);
  width: min(86rem, calc(100% - 2 * var(--gutter)));
  min-height: 4.85rem;
  margin: 0.8rem auto 0;
  padding: 0.58rem 0.78rem 0.58rem 1.25rem;
  border: 1px solid rgb(246 239 217 / 0.14);
  border-radius: var(--pill);
  background: linear-gradient(140deg, #0a2d1e, #15462d);
  color: #f6efd9;
  box-shadow: var(--shadow);
  transition: box-shadow var(--dur) ease, transform var(--dur) var(--ease);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.72rem;
  min-width: 0;
  color: #f6efd9;
  text-decoration: none;
}

.brand__mark {
  width: clamp(3.1rem, 4.4vw, 4rem);
  height: clamp(3.1rem, 4.4vw, 4rem);
  flex: 0 0 auto;
  padding: 0.36rem;
  border: 2px solid rgb(249 184 196 / 0.48);
  border-radius: 50%;
  background: #fefee3;
  object-fit: contain;
  object-position: center 54%;
  filter: drop-shadow(0 0.28rem 0.5rem rgb(0 0 0 / 0.2));
}

.brand__name {
  font-family: var(--display);
  font-size: clamp(2.05rem, 3.3vw, 2.85rem);
  line-height: 0.85;
  letter-spacing: 0;
  transform: translateY(0.075em);
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(1.15rem, 2.6vw, 2.6rem);
}

.site-nav a {
  position: relative;
  padding: 0.55rem 0.08rem;
  color: rgb(246 239 217 / 0.93);
  font-size: clamp(1.02rem, 1.3vw, 1.16rem);
  font-weight: 850;
  line-height: 1;
  text-decoration: none;
}

.site-nav a::after {
  content: "";
  position: absolute;
  right: 100%;
  bottom: 0.22rem;
  left: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--mint);
  transition: right var(--dur) var(--ease);
}

.site-nav a:hover::after,
.site-nav a.is-active::after {
  right: 0;
}

.header-actions {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.65rem;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  min-height: 3.55rem;
  padding: 0 1.5rem 0 1.16rem;
  border-radius: var(--pill);
  background: var(--blush);
  color: #143824;
  font-family: var(--body);
  font-size: clamp(1.12rem, 1.24vw, 1.28rem);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 1;
  text-decoration: none;
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 0.55), 0 0.45rem 0.85rem rgb(8 39 25 / 0.22);
  transition: transform var(--dur) var(--ease), background-color var(--dur) ease, box-shadow var(--dur) ease;
}

.header-cta:hover,
.header-cta:focus-visible {
  transform: translateY(-2px);
  background: #fbcad3;
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 0.55), 0 0.75rem 1.15rem rgb(8 39 25 / 0.26);
}

.lp-glyph {
  flex: 0 0 auto;
  width: clamp(1.65rem, 1.85vw, 1.92rem);
  height: clamp(1.65rem, 1.85vw, 1.92rem);
  padding: 0.2rem;
  border-radius: 50%;
  background: rgb(254 254 227 / 0.78);
  color: #2c6e49;
  stroke-width: 2.15;
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 0.7);
}

.hero {
  width: min(86rem, calc(100% - 2 * var(--gutter)));
  padding-top: clamp(2rem, 4.5vw, 4.1rem);
  isolation: isolate;
}

.hero__mark {
  position: absolute;
  top: clamp(7rem, 10vw, 9.5rem);
  left: clamp(25rem, 43vw, 39rem);
  z-index: 0;
  width: clamp(16rem, 26vw, 25rem);
  max-width: none;
  opacity: 1;
  pointer-events: none;
  transform: translateX(-50%) rotate(-7deg);
}

.hero__inner,
.quick {
  position: relative;
  z-index: 1;
}

.hero__wordmark {
  color: #569e76;
}

.hero__headline {
  font-size-adjust: none;
}

.hero__headline {
  font-size: clamp(1.65rem, 3vw, 2.45rem);
}

.hero__actions {
  gap: 0.9rem;
}

.hero__actions .btn {
  min-height: 3.9rem;
  padding-inline: 2rem;
  font-size: clamp(1.04rem, 1.18vw, 1.18rem);
}

.hero__stamps {
  position: relative;
  display: block;
  min-height: clamp(29rem, 46vw, 39rem);
}

@keyframes stampSettle {
  from {
    transform: translate(var(--tx), calc(var(--ty) + 1rem)) rotate(calc(var(--rot) - 5deg)) scale(0.96);
    opacity: 0.75;
  }
  to {
    transform: translate(var(--tx), var(--ty)) rotate(var(--rot)) scale(1);
    opacity: 1;
  }
}

.quick {
  gap: clamp(0.8rem, 1.8vw, 1.25rem);
}

.quick__card {
  grid-template-columns: auto minmax(0, 1fr);
  justify-content: stretch;
  min-height: clamp(6.2rem, 8vw, 7.4rem);
  padding: clamp(1rem, 1.7vw, 1.35rem);
  column-gap: 0.95rem;
}

.quick__icon {
  width: clamp(3.5rem, 5vw, 4.25rem);
  height: clamp(3.5rem, 5vw, 4.25rem);
  color: #173c28;
}

.quick__icon svg {
  width: 64%;
  height: 64%;
}

.quick__text {
  display: grid;
  align-content: center;
  min-width: 0;
  gap: 0.18rem;
  white-space: normal;
}

.quick__text strong {
  font-family: var(--display);
  font-size: clamp(2rem, 3vw, 2.7rem);
  line-height: 0.88;
  color: var(--pond);
}

.quick__text span {
  color: var(--muted);
  font-size: clamp(0.96rem, 1.1vw, 1.08rem);
  font-weight: 850;
  line-height: 1.2;
}

.quick__card--dark .quick__text strong {
  color: #f6efd9;
}

.quick__card--dark .quick__text span {
  color: rgb(246 239 217 / 0.82);
}

.quick__card--dark .quick__icon {
  color: #f6efd9;
}

.work {
  position: relative;
  isolation: isolate;
}

.included__list small,
.work__lede,
.work-featured__blurb,
.work-card p,
.plan__list li,
.letter__blurb,
.field input,
.field textarea,
.chips__chip span {
  font-size: clamp(0.95rem, 1vw, 1.06rem);
}

.included__list strong,
.work-card__row strong {
  font-size: clamp(1.05rem, 1.18vw, 1.2rem);
}

.route {
  max-width: 64rem;
}

.plans {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 0;
  max-width: 66rem;
  align-items: center;
}

.plan {
  padding: clamp(1.55rem, 2.8vw, 2.25rem);
  transition: transform 320ms var(--ease), box-shadow 320ms ease, z-index 0ms linear;
}

.plan:hover,
.plan:focus-within {
  z-index: 5;
  box-shadow: 0 1.9rem 3rem rgb(8 39 25 / 0.28), 0 0.55rem 0.9rem rgb(8 39 25 / 0.14);
}

.plan--cream {
  z-index: 2;
  transform: rotate(-1.45deg) translateX(1.05rem);
}

.plan--cream:hover,
.plan--cream:focus-within {
  transform: rotate(-0.7deg) translateX(0.55rem) translateY(-0.45rem);
}

.plan--pink {
  z-index: 1;
  margin-top: 1.1rem;
  transform: rotate(1.35deg) translateX(-1.05rem);
}

.plan--pink:hover,
.plan--pink:focus-within {
  transform: rotate(0.6deg) translateX(-0.55rem) translateY(-0.45rem);
}

.plans__plus {
  top: 49%;
  left: 50%;
  width: 3.75rem;
  height: 3.75rem;
  padding-bottom: 0.14em;
  background: #2c6e49;
  font-size: 2.25rem;
  line-height: 1;
  transform: translate(-50%, -50%);
}

.letter__reply {
  gap: 0.55rem;
  padding: 0.66rem 1rem;
  font-size: clamp(1.06rem, 1.35vw, 1.32rem);
  line-height: 1.15;
}

.letter__reply svg,
.form__small svg {
  width: 1.1em;
  height: 1.1em;
}

.letter__sprig {
  justify-self: center;
  width: clamp(8.5rem, 16vw, 13rem);
  max-width: 55%;
  margin-top: -0.95rem;
  opacity: 0.32;
  transform: rotate(-15deg);
  filter: brightness(0) saturate(100%) invert(24%) sepia(19%) saturate(1499%) hue-rotate(91deg) brightness(90%) contrast(91%);
}

.form__small {
  gap: 0.45rem;
  font-size: clamp(0.98rem, 1.2vw, 1.16rem);
  line-height: 1.2;
}

.site-footer {
  position: relative;
  width: min(86rem, calc(100% - 2 * var(--gutter)));
  margin: clamp(2.4rem, 4vw, 3.2rem) auto clamp(1.2rem, 2.5vw, 2rem);
  padding: clamp(2.8rem, 4.2vw, 3.8rem) clamp(1.4rem, 3vw, 2.4rem) clamp(1.7rem, 2.8vw, 2.4rem);
  border-radius: var(--r-xl);
  background: linear-gradient(170deg, var(--panel-green), var(--panel-green-2));
  color: #f6efd9;
  box-shadow: var(--shadow-big);
}

.footer-top {
  position: absolute;
  top: -1.55rem;
  left: 50%;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  width: fit-content;
  min-height: 4rem;
  margin: 0;
  padding: 0.78rem 1.55rem 0.78rem 1.22rem;
  border: 1px solid rgb(254 254 227 / 0.34);
  border-radius: var(--pill);
  background:
    radial-gradient(circle at 30% 30%, rgb(164 223 152 / 0.28), transparent 60%),
    rgb(254 254 227 / 0.96);
  color: #2c6e49;
  font-size: clamp(1.08rem, 1.35vw, 1.3rem);
  font-weight: 950;
  line-height: 1;
  text-decoration: none;
  box-shadow: 0 0.7rem 1.15rem rgb(14 51 42 / 0.25), inset 0 1px 0 rgb(255 255 255 / 0.65);
  transform: translateX(-50%);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) ease;
}

.footer-top:hover,
.footer-top:focus-visible {
  transform: translateX(-50%) translateY(-3px);
  box-shadow: 0 1rem 1.45rem rgb(14 51 42 / 0.3), inset 0 1px 0 rgb(255 255 255 / 0.65);
}

.footer-top svg {
  width: 1.75rem;
  height: 1.75rem;
}

.site-footer__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: clamp(1rem, 2.5vw, 2rem);
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.72rem;
  color: #f6efd9;
  text-decoration: none;
}

.footer-brand img {
  width: clamp(3.1rem, 4.2vw, 3.8rem);
  height: clamp(3.1rem, 4.2vw, 3.8rem);
  filter: brightness(0) saturate(100%) invert(92%) sepia(13%) saturate(408%) hue-rotate(16deg) brightness(108%) contrast(94%);
}

.footer-brand span {
  font-family: var(--display);
  font-size: clamp(2rem, 3vw, 2.6rem);
  line-height: 0.9;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(0.95rem, 2vw, 1.7rem);
}

.footer-nav a {
  color: #f6efd9;
  font-family: var(--display);
  font-size: clamp(1.25rem, 1.9vw, 1.65rem);
  line-height: 1;
  text-decoration: none;
}

.footer-nav a:hover,
.footer-contact:hover {
  color: var(--mint);
}

.footer-side {
  display: grid;
  justify-items: end;
  gap: 0.45rem;
}

.footer-contact {
  color: rgb(246 239 217 / 0.92);
  font-size: clamp(0.95rem, 1.1vw, 1.08rem);
  font-weight: 800;
  text-decoration: none;
}

.footer-company {
  margin: 0;
  color: rgb(246 239 217 / 0.72);
  font-size: 0.92rem;
  font-weight: 700;
}

.footer-legal {
  display: flex;
  gap: 0.5rem;
}

.footer-legal button {
  padding: 0.42rem 0.9rem;
  border: 1px solid rgb(246 239 217 / 0.3);
  border-radius: var(--pill);
  background: transparent;
  color: rgb(246 239 217 / 0.86);
  font-family: var(--body);
  font-size: 0.84rem;
  font-weight: 800;
  cursor: pointer;
}

.footer-legal button:hover {
  background: rgb(246 239 217 / 0.12);
}

@media (max-width: 1020px) {
  .hero__mark {
    top: 8rem;
    left: 50%;
    transform: translateX(-50%) rotate(-7deg);
  }

  .hero__stamps {
    min-height: clamp(26rem, 67vw, 34rem);
    max-width: 40rem;
    margin: 0 auto;
  }

  .plans {
    grid-template-columns: 1fr;
    gap: 0.9rem;
    max-width: 38rem;
  }

  .plan--cream,
  .plan--pink,
  .plan--cream:hover,
  .plan--pink:hover,
  .plan--cream:focus-within,
  .plan--pink:focus-within {
    margin-top: 0;
    transform: rotate(0deg) translate(0, 0);
  }

  .plans__plus {
    top: 50%;
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .footer-side {
    justify-items: center;
  }
}

@media (max-width: 880px) {
  .site-header {
    grid-template-columns: auto auto;
    width: min(86rem, calc(100% - 1.2rem));
    min-height: 4.3rem;
    padding-left: 1rem;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    left: 0;
    display: none;
    grid-auto-rows: auto;
    gap: 0.2rem;
    padding: 0.8rem;
    border-radius: var(--r-lg);
    background: var(--panel-green);
    box-shadow: var(--shadow-big);
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav a {
    padding: 0.78rem 0.9rem;
    border-radius: var(--r-sm);
    font-size: 1.1rem;
  }

  .site-nav a::after {
    display: none;
  }

  .site-nav a:hover {
    background: rgb(246 239 217 / 0.1);
  }

  .header-actions {
    justify-self: end;
  }

  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }
}

@media (max-width: 600px) {
  .brand__mark {
    width: 3rem;
    height: 3rem;
  }

  .brand__name {
    font-size: 2rem;
  }

  .hero {
    padding-top: 1.25rem;
  }

  .hero__mark {
    top: 5.8rem;
    width: clamp(19rem, 82vw, 26rem);
    opacity: 0.075;
  }

  .hero__actions .btn {
    min-height: 3.6rem;
  }

  .hero__stamps {
    min-height: 31rem;
    max-width: 23rem;
  }

  .quick {
    grid-template-columns: 1fr;
  }

  .quick__card {
    min-height: 5.8rem;
  }

  .plans__plus {
    position: relative;
    top: auto;
    left: auto;
    justify-self: center;
    transform: none;
    margin: -0.3rem 0;
  }

  .letter__cards {
    grid-template-columns: 1fr;
  }

  .letter__sprig {
    width: 9rem;
    max-width: 62%;
    margin-top: -0.45rem;
  }

  .form__small {
    font-size: 1rem;
  }

  .site-footer {
    width: min(86rem, calc(100% - 1.2rem));
    padding-top: 3.15rem;
  }

  .footer-top {
    min-height: 3.65rem;
    padding-inline: 1.1rem;
    font-size: 1rem;
    white-space: nowrap;
  }

  .footer-nav {
    gap: 0.8rem 1.1rem;
  }
}

/* Deployment polish: requested visual parity fixes without changing the site's identity. */
.brand,
.footer-brand {
  align-items: center;
}

.brand__mark,
.footer-brand img {
  padding: 0.36rem;
  border: 2px solid rgb(249 184 196 / 0.48);
  border-radius: 50%;
  background: #fefee3;
  object-fit: contain;
  object-position: center 54%;
  filter: drop-shadow(0 0.28rem 0.5rem rgb(0 0 0 / 0.2));
}

.brand__name,
.footer-brand span {
  line-height: 0.85;
  transform: translateY(0.075em);
}

.header-cta {
  min-height: 3.55rem;
  padding: 0 1.5rem 0 1.16rem;
  gap: 0.7rem;
  font-family: var(--body);
  font-size: clamp(1.12rem, 1.24vw, 1.28rem);
  letter-spacing: 0;
}

.header-cta .lp-glyph {
  width: clamp(1.65rem, 1.85vw, 1.92rem);
  height: clamp(1.65rem, 1.85vw, 1.92rem);
}

.hero__mark {
  top: clamp(8.5rem, 13vw, 12rem);
  left: clamp(23rem, 42vw, 38rem);
  width: clamp(8rem, 11vw, 11rem);
  opacity: 1;
  transform: translateX(-50%) rotate(-7deg);
}

.quick__card {
  position: relative;
  overflow: hidden;
  border: 2px solid var(--quick-border, rgb(44 110 73 / 0.34));
  background: var(--quick-paper, #fffdf0);
  box-shadow: 0 0.42rem 0.8rem rgb(8 39 25 / 0.08);
}

.quick__card:nth-child(1) {
  --quick-border: rgb(214 140 69 / 0.6);
  --quick-paper: #fff7df;
  transform: rotate(-0.45deg);
}

.quick__card:nth-child(2) {
  --quick-border: rgb(86 158 118 / 0.58);
  --quick-paper: #f7f7df;
  transform: rotate(0.35deg);
}

.quick__card:nth-child(3) {
  --quick-border: rgb(249 184 196 / 0.62);
  --quick-paper: #123b28;
  background: #123b28;
  color: #fefee3;
}

.quick__card:hover {
  transform: translateY(-3px) rotate(0deg);
}

.quick__card::before {
  content: "";
  position: absolute;
  right: -0.42rem;
  top: -0.42rem;
  width: 2.1rem;
  height: 2.1rem;
  border: 2px solid var(--quick-border, rgb(44 110 73 / 0.34));
  border-radius: 0 0 0 var(--r-sm);
  background: rgb(254 254 227 / 0.72);
  transform: rotate(7deg);
}

.quick__card::after {
  content: "";
  position: absolute;
  right: 1rem;
  bottom: 0.9rem;
  width: 0.62rem;
  height: 0.62rem;
  border: 2px solid var(--quick-border, rgb(44 110 73 / 0.34));
  border-radius: 50%;
  opacity: 0.75;
}

.quick__card--dark::before {
  background: rgb(254 254 227 / 0.12);
}

.quick__card--dark::after {
  border-color: rgb(249 184 196 / 0.72);
}

.quick__card--dark .quick__icon {
  background: rgb(254 254 227 / 0.14);
  color: #fefee3;
}

.quick__card--dark .quick__text strong,
.quick__card--dark .quick__text span {
  color: #fefee3;
}

.quick__text strong,
.plan__price strong,
.letter__no {
  font-family: var(--body);
  font-weight: 950;
  letter-spacing: 0;
}

.plans {
  isolation: isolate;
}

.plan::before,
.plan::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.plan::before {
  top: 1rem;
  right: 1rem;
  width: clamp(3.2rem, 5.2vw, 4.6rem);
  aspect-ratio: 1;
  border: 2px dashed rgb(44 110 73 / 0.24);
  border-radius: 50%;
}

.plan--pink::before {
  border-color: rgb(74 26 47 / 0.22);
}

.plan::after {
  bottom: 1.1rem;
  left: 1.1rem;
  width: 3.6rem;
  height: 0.8rem;
  border-top: 2px solid rgb(44 110 73 / 0.18);
  border-bottom: 2px solid rgb(44 110 73 / 0.18);
  transform: rotate(-7deg);
}

.plan--pink::after {
  border-color: rgb(74 26 47 / 0.16);
  transform: rotate(7deg);
}

.plans__plus {
  z-index: 12;
  display: grid;
  place-items: center;
  top: 50%;
  padding: 0;
  pointer-events: none;
  font-family: var(--body);
  font-weight: 950;
  line-height: 1;
  transform: translate(-50%, -50%);
}

.plans .btn {
  background: #2c6e49;
  border-color: #2c6e49;
  color: #fefee3;
  box-shadow: 0 0.55rem 0.9rem rgb(8 39 25 / 0.18), inset 0 1px 0 rgb(255 255 255 / 0.18);
}

.contact {
  overflow: visible;
}

.services {
  overflow: clip;
}

.offer__sprig {
  right: 0;
}

.letter__sprig {
  width: clamp(7rem, 12vw, 10rem);
  max-width: 48%;
  margin-top: -0.5rem;
  opacity: 0.22;
  transform: rotate(8deg);
}

.form {
  padding-top: clamp(4rem, 7vw, 6.2rem);
  padding-right: clamp(2rem, 5vw, 5rem);
}

.field label,
.chips legend {
  font-size: clamp(1rem, 1.08vw, 1.12rem);
}

.field input::placeholder,
.field textarea::placeholder {
  color: #5a755f;
  opacity: 0.72;
  font-weight: 650;
}

.footer-top,
.footer-legal button {
  font-family: var(--body);
  letter-spacing: 0;
}

.footer-brand img {
  width: clamp(3.2rem, 4.3vw, 3.95rem);
  height: clamp(3.2rem, 4.3vw, 3.95rem);
}

.footer-nav {
  gap: 0.55rem clamp(1.15rem, 2.55vw, 2.25rem);
}

.footer-nav a {
  font-family: var(--body);
  font-size: clamp(1.45rem, 2.35vw, 2rem);
  font-weight: 950;
  line-height: 0.95;
}

@media (max-width: 1020px) {
  .hero__mark {
    top: 7rem;
    left: 50%;
    width: clamp(7rem, 14vw, 9rem);
  }
}

@media (max-width: 600px) {
  .brand__mark {
    width: 3rem;
    height: 3rem;
  }

  .hero__mark {
    top: 25.3rem;
    left: 50%;
    width: 5.8rem;
  }

  .offer__sprig {
    right: 0;
    width: clamp(5rem, 24vw, 7rem);
  }

  .plans__plus {
    position: relative;
    top: auto;
    left: auto;
    justify-self: center;
    transform: none;
    margin: -0.3rem 0;
  }
}

/* FABLE-TEST-NEW final blend pass
   Combines the stronger Main layout details with the Fable section identity. */

.site-header {
  background: linear-gradient(140deg, #0b3221, #174d31);
  border-radius: var(--pill);
}

.site-nav {
  gap: clamp(1.35rem, 3.1vw, 3.75rem);
}

.site-nav a {
  font-size: clamp(1.32rem, 1.85vw, 1.72rem);
  font-weight: 950;
}

.site-nav a::after {
  height: 3px;
  bottom: 0.14rem;
  background: #f2b64f;
}

.header-cta {
  border: 1px solid rgb(254 254 227 / 0.62);
  background: #fefee3;
  color: #123824;
}

.header-cta:hover,
.header-cta:focus-visible {
  background: #fff7c7;
}

.header-cta .lp-glyph {
  background: #dff0d0;
  color: #2c6e49;
}

.hero {
  position: relative;
  width: min(86rem, calc(100% - 2 * var(--gutter)));
  margin: clamp(1rem, 2vw, 1.6rem) auto 0;
  padding: clamp(1.4rem, 3vw, 2.3rem);
  border: 1px solid rgb(44 110 73 / 0.18);
  border-radius: clamp(1.45rem, 3vw, 2.2rem);
  background:
    radial-gradient(circle at 17% 15%, rgb(164 223 152 / 0.22), transparent 26rem),
    repeating-linear-gradient(to bottom, transparent 0 2rem, rgb(44 110 73 / 0.055) 2rem calc(2rem + 1px)),
    #fffef2;
  box-shadow: 0 1.4rem 2.6rem rgb(8 39 25 / 0.13), inset 0 1px 0 rgb(255 255 255 / 0.7);
}

.hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(24rem, 1.04fr);
  align-items: center;
  gap: clamp(1rem, 3vw, 3rem);
}

.hero__copy {
  position: relative;
  z-index: 2;
  padding-block: clamp(1.4rem, 4vw, 3.5rem);
}

.hero__mark {
  position: absolute;
  top: clamp(-2.5rem, -2vw, -0.8rem);
  left: min(50%, 25rem);
  z-index: -1;
  width: clamp(11rem, 16vw, 15.5rem);
  max-width: none;
  opacity: 0.18;
  transform: translateX(-50%) rotate(-7deg);
}

.hero__wordmark {
  color: #68bd84;
  font-size: clamp(5.85rem, 14vw, 12.4rem);
  white-space: nowrap;
  text-shadow: 0 0.16rem 0 rgb(255 255 255 / 0.72);
}

.hero__headline {
  max-width: 15ch;
  font-size: clamp(2.05rem, 3.5vw, 3.08rem);
  line-height: 0.98;
}

.hero__headline em {
  color: #2c6e49;
}

.hero__stamps {
  min-height: clamp(30rem, 47vw, 40rem);
}

.quick {
  margin-top: clamp(1.2rem, 2.2vw, 2rem);
}

.quick__text strong,
.quick__text span {
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: 0;
}

.quick__text strong {
  font-size: clamp(2.1rem, 3.2vw, 2.9rem);
}

.quick__text span {
  font-size: clamp(1.15rem, 1.65vw, 1.45rem);
  line-height: 0.95;
}

.work {
  grid-template-columns: 1fr;
  grid-template-areas:
    "head"
    "featured"
    "grid";
}

.work__head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(18rem, 0.7fr);
  align-items: end;
  gap: clamp(1rem, 3vw, 3rem);
}

.work__title {
  font-size: clamp(2.8rem, 5.8vw, 5rem);
}

.work__title br {
  display: none;
}

.work__lede {
  max-width: 40rem;
  margin: 0;
  justify-self: end;
}

.work-featured {
  position: relative;
  grid-template-columns: minmax(0, 1.45fr) minmax(18rem, 0.72fr);
  align-items: stretch;
  min-height: clamp(24rem, 42vw, 34rem);
}

.work-featured::before,
.work-card::before {
  content: "";
  position: absolute;
  pointer-events: none;
}

.work-featured::before {
  top: -0.72rem;
  left: 7%;
  z-index: 3;
  width: 8.5rem;
  height: 1.25rem;
  border-radius: 2px;
  background: repeating-linear-gradient(-45deg, rgb(255 182 196 / 0.92) 0 5px, rgb(255 232 224 / 0.82) 5px 10px);
  box-shadow: 0 0.35rem 0.55rem rgb(0 0 0 / 0.14);
  transform: rotate(-3deg);
}

.work-featured__shot {
  min-height: 20rem;
}

.work-featured__copy {
  align-content: center;
  padding: clamp(0.4rem, 1.6vw, 1.3rem);
}

.work-featured__copy h3 {
  font-size: clamp(2.1rem, 4.2vw, 3.6rem);
}

.work-card {
  position: relative;
  min-height: 100%;
  grid-template-rows: auto auto 1fr auto;
}

.work-card::before {
  top: 0.72rem;
  right: 0.82rem;
  z-index: 2;
  width: 1.05rem;
  height: 1.05rem;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #fff 0 18%, #f9b8c4 20% 62%, #b65371 64%);
  box-shadow: 0 0.28rem 0.45rem rgb(8 39 25 / 0.2);
}

.work-card img {
  aspect-ratio: 16 / 9.4;
}

.pricing {
  display: grid;
  grid-template-columns: minmax(17rem, 0.68fr) minmax(0, 1.25fr);
  grid-template-areas:
    "head plans"
    "head pair";
  align-items: center;
  gap: clamp(1.2rem, 3.5vw, 3.4rem);
  padding: clamp(1.7rem, 4vw, 3.4rem);
  border: 1px solid rgb(44 110 73 / 0.16);
  background:
    radial-gradient(circle at 12% 16%, rgb(164 223 152 / 0.2), transparent 12rem),
    repeating-linear-gradient(to bottom, transparent 0 2rem, rgb(44 110 73 / 0.052) 2rem calc(2rem + 1px)),
    #fffef2;
  color: #173c28;
}

.pricing__head {
  grid-area: head;
  margin: 0;
  text-align: left;
}

.pricing .section-title,
.pricing .section-title--cream {
  color: #173c28;
}

.pricing .section-lede {
  max-width: 27rem;
  color: #315e43;
}

.pricing-pair {
  grid-area: plans;
  z-index: 10;
  justify-self: center;
  align-self: start;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  width: fit-content;
  margin-top: -1.05rem;
  padding: 0.44rem 0.9rem 0.44rem 1rem;
  border: 1px dashed rgb(194 99 130 / 0.65);
  border-radius: var(--pill);
  background: linear-gradient(180deg, #fffef2 0%, #fefee3 100%);
  color: #3d1722;
  font-size: 0.73rem;
  font-weight: 950;
  letter-spacing: 0.05em;
  line-height: 1;
  text-transform: uppercase;
  transform: rotate(-2deg);
  box-shadow: 0 0.5rem 1rem rgb(14 51 42 / 0.16), inset 0 1px 0 rgb(255 255 255 / 0.6);
}

.pricing-pair::before {
  content: "";
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: #c46382;
  box-shadow: 0 0 0 2px rgb(254 254 227 / 0.75);
}

.pricing-pair svg {
  color: #c46382;
}

.plans {
  grid-area: plans;
  justify-self: end;
  width: min(100%, 55rem);
  max-width: none;
  margin: 0;
}

.plan {
  border: 1px solid rgb(44 110 73 / 0.14);
}

.plan > * {
  position: relative;
  z-index: 1;
}

.plan::before {
  inset: 0;
  width: auto;
  height: auto;
  border: 0;
  border-radius: inherit;
  background:
    repeating-linear-gradient(to bottom, transparent 0 1.65rem, rgb(44 110 73 / 0.06) 1.65rem calc(1.65rem + 1px));
  opacity: 0.75;
}

.plan--pink::before {
  background:
    repeating-linear-gradient(to bottom, transparent 0 1.65rem, rgb(74 26 47 / 0.055) 1.65rem calc(1.65rem + 1px));
}

.plan::after {
  right: 1rem;
  bottom: 1rem;
  left: auto;
  width: clamp(3.2rem, 6vw, 5.4rem);
  height: clamp(3.2rem, 6vw, 5.4rem);
  border: 0;
  background: url("./assets/images/line-icons-dark/12-flowering-branch.png") center / contain no-repeat;
  opacity: 0.13;
  transform: rotate(12deg);
}

.plan--pink::after {
  background-image: url("./assets/images/line-icons-dark/16-floral-sprig.png");
  opacity: 0.16;
  transform: rotate(-10deg);
}

.plan .chip {
  align-self: flex-start;
}

.plan h3,
.plan__price,
.plan__note {
  text-align: left;
  justify-content: flex-start;
}

.plans__plus {
  background: #2c6e49;
}

.pair {
  grid-area: pair;
  justify-self: end;
  width: min(100%, 55rem);
  max-width: none;
  margin: clamp(0.8rem, 1.5vw, 1rem) 0 0;
  border: 1px solid rgb(44 110 73 / 0.16);
  background:
    repeating-linear-gradient(to bottom, transparent 0 1.55rem, rgb(44 110 73 / 0.055) 1.55rem calc(1.55rem + 1px)),
    #fffdf0;
}

.contact .letter__list {
  display: grid;
  gap: 0.55rem;
  margin: 0.1rem 0 0;
  padding: 0;
  list-style: none;
  color: #315e43;
  font-size: clamp(0.95rem, 1vw, 1.04rem);
  font-weight: 750;
}

.contact .letter__list li {
  position: relative;
  padding-left: 1.35rem;
}

.contact .letter__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: #f9b8c4;
  box-shadow: 0 0 0 3px rgb(249 184 196 / 0.22);
}

.letter::before {
  background-image: radial-gradient(circle, #fffdf0 0.12rem, #fffdf0 0.2rem, rgb(23 60 40 / 0.34) 0.21rem, transparent 0.26rem);
  background-size: 0.62rem 1.9rem;
}

.letter__reply {
  gap: 0.38rem;
  padding: 0.34rem 0.72rem;
  border: 1px dashed rgb(44 110 73 / 0.38);
  background: rgb(204 239 181 / 0.55);
  color: #2c6e49;
  font-size: 0.88rem;
  font-weight: 850;
}

.letter__sign {
  display: inline-flex;
  align-items: center;
  gap: 0.48rem;
  width: fit-content;
  font-size: clamp(1.25rem, 2vw, 1.6rem);
}

.letter__sign svg {
  flex: 0 0 auto;
  color: #d68c45;
}

.form__helper {
  margin: -0.22rem 0 0.15rem;
  width: fit-content;
  max-width: 100%;
  padding: 0.48rem 0.7rem;
  border: 1px solid rgb(44 110 73 / 0.16);
  border-radius: var(--r-sm);
  background: rgb(254 254 227 / 0.55);
  color: #315e43;
  font-size: 0.9rem;
  font-weight: 800;
}

@media (max-width: 1020px) {
  .hero__inner,
  .pricing {
    grid-template-columns: 1fr;
  }

  .hero__stamps {
    width: min(100%, 40rem);
    min-height: clamp(20rem, 48vw, 22rem);
    justify-self: center;
  }

  .pricing {
    grid-template-areas:
      "head"
      "plans"
      "pair";
  }

  .pricing__head,
  .pricing .section-lede {
    text-align: center;
    margin-inline: auto;
  }

  .plans,
  .pair {
    justify-self: center;
  }

  .pricing-pair {
    margin-top: -0.7rem;
  }

  .work__head {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .work__lede {
    justify-self: center;
  }
}

@media (max-width: 880px) {
  .site-nav a {
    font-size: 1.28rem;
  }
}

@media (max-width: 600px) {
  .hero {
    padding: 1rem;
  }

  .hero__copy {
    padding-block: 0.8rem 0.2rem;
  }

  .hero__wordmark {
    font-size: clamp(4.4rem, 21vw, 5.7rem);
  }

  .hero__headline {
    font-size: clamp(1.75rem, 8vw, 2.2rem);
  }

  .hero__mark {
    top: -0.75rem;
    left: 50%;
    width: 7.5rem;
  }

  .hero__stamps {
    min-height: 26.5rem;
  }

  .quick__text strong {
    font-size: clamp(1.6rem, 9vw, 2.05rem);
  }

  .quick__text span {
    font-size: clamp(1rem, 6vw, 1.2rem);
  }

  .work-featured {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .work-featured__shot {
    min-height: 14rem;
  }

  .pricing-pair {
    display: none;
  }

  .plan h3,
  .plan__price,
  .plan__note {
    text-align: center;
    justify-content: center;
  }

  .plan .chip {
    align-self: center;
  }
}

/* Keep the hero poster-like, but short enough to reveal the next section. */
.hero {
  padding: clamp(1.05rem, 2.4vw, 1.85rem);
}

.hero__inner {
  align-items: center;
}

.hero__copy {
  padding-block: clamp(0.4rem, 2vw, 1.35rem);
}

.hero__wordmark,
.hero__wordmark .char {
  line-height: 0.62;
}

.hero__wordmark {
  font-size: clamp(5.2rem, 10.5vw, 9.45rem);
}

.hero__headline {
  margin-top: clamp(0.75rem, 1.1vw, 1rem);
  font-size: clamp(1.95rem, 2.85vw, 2.55rem);
}

.hero__actions {
  margin-top: 1.1rem;
}

.hero__stamps {
  width: 100%;
  min-height: clamp(24rem, 34vw, 30rem);
}

.quick__card {
  min-height: clamp(5.05rem, 6.1vw, 6rem);
}

.quick__text strong {
  font-size: clamp(1.75rem, 2.55vw, 2.25rem);
}

.quick__text span {
  font-size: clamp(1.02rem, 1.35vw, 1.2rem);
}

@media (max-width: 600px) {
  .hero__wordmark {
    font-size: clamp(4.4rem, 21vw, 5.7rem);
  }

  .hero__headline {
    font-size: clamp(1.75rem, 8vw, 2.2rem);
  }

  .hero__stamps {
    min-height: 25rem;
  }
}

@media (min-width: 601px) and (max-width: 1020px) {
  .hero__stamps {
    width: min(100%, 40rem);
    min-height: clamp(20rem, 48vw, 22rem);
    justify-self: center;
  }

  .quick__card {
    min-height: 5.25rem;
    padding: 0.75rem 0.85rem;
    column-gap: 0.55rem;
  }

  .quick__icon {
    width: 3rem;
    height: 3rem;
  }

  .quick__text strong {
    font-size: clamp(1.3rem, 3vw, 1.48rem);
  }

  .quick__text span {
    font-size: clamp(0.86rem, 1.8vw, 0.98rem);
  }
}

@media (max-width: 600px) {
  .hero__copy {
    padding-block: 0.3rem 0;
  }

  .hero__wordmark {
    font-size: clamp(4.05rem, 19vw, 4.8rem);
  }

  .hero__headline {
    margin-top: 0.62rem;
    font-size: clamp(1.55rem, 7vw, 1.9rem);
    line-height: 1.02;
  }

  .hero__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.55rem;
    width: 100%;
    margin-top: 0.82rem;
  }

  .hero__actions .btn {
    min-height: 3.15rem;
    width: auto;
    padding: 0.55rem 0.7rem;
    font-size: 0.82rem;
    line-height: 1.08;
    text-align: center;
  }

  .hero__stamps {
    min-height: 16.7rem;
  }

  .quick {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.45rem;
    margin-top: 0.75rem;
  }

  .quick__card {
    grid-template-columns: 1fr;
    justify-items: center;
    min-height: 4.6rem;
    padding: 0.55rem 0.35rem;
    text-align: center;
  }

  .quick__icon {
    display: none;
  }

  .quick__text {
    justify-items: center;
    gap: 0.08rem;
  }

  .quick__text strong {
    font-size: clamp(0.9rem, 4.8vw, 1.04rem);
  }

  .quick__text span {
    font-size: clamp(0.68rem, 3.35vw, 0.78rem);
  }
}

/* Feedback pass: hero scale, service/process polish, and Fable pricing restore. */

.hero {
  min-height: calc(100svh - 7rem);
  display: grid;
  align-content: center;
  padding: clamp(1.45rem, 2.8vw, 2.6rem);
}

.hero__inner {
  grid-template-columns: minmax(0, 0.95fr) minmax(24rem, 1.05fr);
}

.hero__copy {
  padding-block: clamp(1.6rem, 3.2vw, 3.4rem);
}

.hero__mark {
  top: clamp(-5rem, -7vw, -2.5rem);
  right: clamp(-9rem, -12vw, -5rem);
  left: auto;
  width: clamp(24rem, 38vw, 36rem);
  opacity: 0.08;
  transform: rotate(-8deg);
}

.hero__wordmark,
.hero__wordmark .char {
  line-height: 0.78;
}

.hero__wordmark {
  font-size: clamp(5.6rem, 12vw, 12.2rem);
}

.hero__headline {
  max-width: 42rem;
  margin-top: clamp(1rem, 1.8vw, 1.35rem);
  font-size: clamp(2.35rem, 4.6vw, 4.3rem);
  line-height: 0.99;
}

.hero__stamps {
  min-height: clamp(31rem, 44vw, 39rem);
}

.quick__card {
  min-height: clamp(6.9rem, 8.8vw, 8.1rem);
}

.quick__text {
  gap: 0.12rem;
}

.quick__text small {
  display: block;
  max-width: 23ch;
  color: var(--muted);
  font-family: var(--body);
  font-size: clamp(0.76rem, 0.95vw, 0.9rem);
  font-weight: 750;
  line-height: 1.25;
}

.quick__card--dark .quick__text small {
  color: rgb(254 254 227 / 0.82);
}

.work-card::before {
  background: #c46382;
  box-shadow: 0 0.25rem 0.45rem rgb(8 39 25 / 0.18);
}

.services {
  overflow: visible;
  padding-top: clamp(0.8rem, 1.8vw, 1.4rem);
}

.services .section-title {
  line-height: 1.14;
  padding-top: 0.15rem;
}

.offer__sprig--lily {
  right: clamp(1rem, 2vw, 1.6rem);
  bottom: clamp(1rem, 2vw, 1.4rem);
  width: clamp(7rem, 13vw, 11rem);
  opacity: 0.16;
  transform: rotate(-8deg);
  filter: brightness(0) saturate(100%) invert(93%) sepia(13%) saturate(524%) hue-rotate(12deg) brightness(108%) contrast(93%);
}

.pricing {
  display: block;
  padding: clamp(1.6rem, 3.4vw, 3rem);
  border: 0;
  background: linear-gradient(170deg, var(--panel-green), var(--panel-green-2));
  color: #f6efd9;
}

.pricing__head {
  display: block;
  margin: 0 0 clamp(1.4rem, 2.6vw, 2.2rem);
  text-align: center;
}

.pricing .section-title,
.pricing .section-title--cream {
  color: #f6efd9 !important;
}

.pricing .section-lede {
  max-width: 38rem;
  margin: 0.7rem auto 0;
  color: rgb(246 239 217 / 0.85);
  text-align: center;
}

.pricing-pair {
  display: none !important;
}

.plans {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 0;
  align-items: center;
  width: min(100%, 66rem);
  max-width: 66rem;
  margin: 0 auto;
  isolation: isolate;
}

.plan {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.7rem;
  min-height: 100%;
  padding: clamp(1.55rem, 2.8vw, 2.25rem);
  border: 0;
  border-radius: var(--r-lg);
  overflow: hidden;
  text-align: left;
  box-shadow: var(--shadow-big);
  transition: transform 320ms var(--ease), box-shadow 320ms ease, z-index 0ms linear;
}

.plan > * {
  position: relative;
  z-index: 1;
}

.plan::before {
  content: "";
  position: absolute;
  inset: 0;
  width: auto;
  height: auto;
  border: 0;
  border-radius: inherit;
  background: repeating-linear-gradient(to bottom, transparent 0 1.65rem, rgb(44 110 73 / 0.07) 1.65rem calc(1.65rem + 1px));
  opacity: 0.8;
  pointer-events: none;
}

.plan--pink::before {
  background: repeating-linear-gradient(to bottom, transparent 0 1.65rem, rgb(74 26 47 / 0.06) 1.65rem calc(1.65rem + 1px));
}

.plan::after {
  content: none;
}

.plan--cream {
  z-index: 2;
  background: #fffdf0;
  color: #173c28;
  transform: rotate(-1.1deg) translateX(1rem);
}

.plan--pink {
  z-index: 1;
  margin-top: 1rem;
  background: #f7cdd7;
  color: #4a1a2f;
  transform: rotate(1.1deg) translateX(-1rem);
}

.plan--cream:hover,
.plan--cream:focus-within {
  z-index: 5;
  transform: rotate(-0.45deg) translateX(0.55rem) translateY(-0.45rem);
}

.plan--pink:hover,
.plan--pink:focus-within {
  z-index: 5;
  transform: rotate(0.45deg) translateX(-0.55rem) translateY(-0.45rem);
}

.plan .chip {
  align-self: flex-start;
}

.plan h3,
.plan__price,
.plan__note {
  width: 100%;
  justify-content: flex-start;
  text-align: left;
}

.plan__price {
  margin-top: 0.15rem;
}

.plan__note {
  border-bottom: 1px dashed rgb(0 0 0 / 0.18);
}

.plan__list {
  width: 100%;
  text-align: left;
}

.plan .btn {
  align-self: flex-start;
}

.plans__plus {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 12;
  display: grid;
  place-items: center;
  width: 3.75rem;
  height: 3.75rem;
  padding: 0 0 0.08em;
  border-radius: 50%;
  background: #2c6e49;
  color: #fefee3;
  font-family: var(--body);
  font-size: 2.25rem;
  font-weight: 950;
  line-height: 1;
  pointer-events: none;
  box-shadow: 0 0.4rem 0.8rem rgb(0 0 0 / 0.3), inset 0 0 0 3px rgb(255 255 255 / 0.3);
  transform: translate(-50%, -50%);
}

.pair {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(0.8rem, 2vw, 1.5rem);
  width: min(100%, 62rem);
  max-width: 62rem;
  margin: clamp(1rem, 2vw, 1.5rem) auto 0;
  background: #fffdf0;
  color: #173c28;
}

.pair p {
  text-align: left;
}

@media (max-width: 1020px) {
  .hero {
    min-height: auto;
  }

  .hero__inner {
    grid-template-columns: 1fr;
  }

  .hero__mark {
    top: clamp(-3.5rem, -7vw, -1.5rem);
    right: clamp(-7rem, -14vw, -3rem);
    width: clamp(18rem, 60vw, 26rem);
    opacity: 0.07;
  }

  .hero__stamps {
    min-height: clamp(24rem, 55vw, 34rem);
  }

  .plans {
    grid-template-columns: 1fr;
    gap: 0.9rem;
    max-width: 38rem;
  }

  .plan--cream,
  .plan--pink,
  .plan--cream:hover,
  .plan--pink:hover,
  .plan--cream:focus-within,
  .plan--pink:focus-within {
    margin-top: 0;
    transform: rotate(0deg) translate(0, 0);
  }

  .plans__plus {
    position: relative;
    top: auto;
    left: auto;
    justify-self: center;
    transform: none;
    margin: -0.3rem 0;
  }

  .pair {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .pair p {
    text-align: center;
  }
}

@media (max-width: 600px) {
  .hero__wordmark {
    font-size: clamp(4.7rem, 23vw, 6.4rem);
    line-height: 0.82;
  }

  .hero__headline {
    font-size: clamp(2rem, 9vw, 3rem);
    line-height: 1.02;
  }

  .hero__stamps {
    min-height: 24rem;
  }

  .quick {
    grid-template-columns: 1fr;
  }

  .quick__card {
    grid-template-columns: auto minmax(0, 1fr);
    justify-items: stretch;
    min-height: 4.85rem;
    padding: 0.62rem 0.85rem;
    text-align: left;
  }

  .quick__icon {
    display: grid;
    width: 2.75rem;
    height: 2.75rem;
  }

  .quick__text {
    justify-items: start;
  }

  .quick__text strong {
    font-size: clamp(1.35rem, 7vw, 1.75rem);
  }

  .quick__text span {
    font-size: 0.9rem;
  }

  .quick__text small {
    max-width: none;
    font-size: 0.76rem;
  }
}

/* Final feedback corrections: place the hero watermark like the main hero and clear the last duplicates. */

.hero__mark {
  top: clamp(-2.8rem, -4vw, -1.35rem);
  right: clamp(-3rem, -4vw, -1rem);
  left: auto;
  z-index: -1;
  width: clamp(9rem, 17vw, 15rem);
  opacity: 0.075;
  filter: saturate(0.9);
  transform: rotate(-8deg);
}

@media (max-width: 1020px) {
  .hero__mark {
    top: -1.35rem;
    right: -1rem;
    width: clamp(8rem, 24vw, 10rem);
    opacity: 0.055;
  }
}

@media (max-width: 600px) {
  .hero__mark {
    top: -0.75rem;
    right: -0.35rem;
    width: min(10rem, 54vw);
    max-width: 54vw;
  }
}

/* Final pricing/process tuning after browser review. */

.plan .chip {
  align-self: flex-end;
}

.plan h3,
.plan__price,
.plan__note {
  align-self: stretch;
  text-align: right;
}

.plan__price {
  justify-content: flex-end;
}

@media (min-width: 1021px) {
  .plan--cream {
    transform: rotate(-0.8deg) translateX(1rem);
  }

  .plan--pink {
    transform: rotate(0.8deg) translateX(-1rem);
  }

  .plan--cream:hover {
    transform: translateY(-4px) rotate(-0.4deg) translateX(1rem);
  }

  .plan--pink:hover {
    transform: translateY(-4px) rotate(0.4deg) translateX(-1rem);
  }
}

@media (max-width: 600px) {
  .plan h3,
  .plan__price,
  .plan__note {
    text-align: right;
  }

  .plan__price {
    justify-content: flex-end;
  }
}

/* Beat the reveal-state transform without touching the shared animation utility. */

@media (min-width: 1021px) {
  .pricing .plan--cream,
  .pricing .plan--cream.reveal.is-visible {
    transform: rotate(-0.8deg) translateX(1rem);
  }

  .pricing .plan--pink,
  .pricing .plan--pink.reveal.is-visible {
    transform: rotate(0.8deg) translateX(-1rem);
  }

  .pricing .plan--cream:hover,
  .pricing .plan--cream.reveal.is-visible:hover {
    transform: translateY(-4px) rotate(-0.4deg) translateX(1rem);
  }

  .pricing .plan--pink:hover,
  .pricing .plan--pink.reveal.is-visible:hover {
    transform: translateY(-4px) rotate(0.4deg) translateX(-1rem);
  }
}

/* Goal corrections: final visual fit pass. */

.hero__copy {
  isolation: isolate;
}

.hero__wordmark,
.hero__headline,
.hero__actions {
  position: relative;
  z-index: 1;
}

.hero__mark {
  top: clamp(4.1rem, 8vw, 6.9rem);
  right: clamp(-42rem, -44vw, -30rem);
  left: auto;
  z-index: 0;
  width: clamp(34rem, 58vw, 52.5rem);
  max-width: none;
  opacity: 0.052;
  pointer-events: none;
  transform: rotate(-8deg);
}

.quick__card::after {
  top: 0.92rem;
  right: 0.92rem;
  bottom: auto;
  width: 0.7rem;
  height: 0.7rem;
  background: color-mix(in srgb, var(--quick-paper, #fefee3) 70%, white 30%);
}

.quick__icon img {
  width: 84%;
  height: 84%;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(15%) sepia(35%) saturate(877%) hue-rotate(100deg) brightness(87%) contrast(91%);
}

.quick__icon--pad img,
.quick__card--dark .quick__icon img {
  width: 78%;
  height: 78%;
  filter: brightness(0) saturate(100%) invert(94%) sepia(10%) saturate(500%) hue-rotate(15deg) brightness(104%) contrast(94%);
}

.work__lede {
  max-width: 35ch;
  margin-top: clamp(0.45rem, 1.1vw, 0.8rem);
  justify-self: start;
  align-self: end;
  font-size: clamp(1.08rem, 1.35vw, 1.24rem);
  line-height: 1.5;
}

.work-card__row strong {
  font-size: clamp(1.35rem, 1.75vw, 1.62rem);
  line-height: 0.98;
}

.services .section-title {
  font-size: clamp(3.15rem, 5.75vw, 4.85rem);
}

.services .section-lede {
  max-width: 45rem;
  font-size: clamp(1.12rem, 1.55vw, 1.34rem);
  line-height: 1.55;
}

.pricing-pair {
  display: flex !important;
  width: fit-content;
  margin: clamp(-0.55rem, -0.6vw, -0.25rem) auto clamp(0.85rem, 1.5vw, 1.25rem);
  text-transform: none;
  letter-spacing: 0.01em;
  transform: rotate(-1.2deg);
}

.plan .chip {
  align-self: flex-start;
}

.plan h3,
.plan__price,
.plan__note {
  align-self: stretch;
  width: 100%;
  text-align: left;
}

.plan h3 {
  font-size: clamp(2.05rem, 3.1vw, 2.72rem);
  line-height: 1;
}

.plan__price {
  justify-content: flex-start;
}

.plan__price strong {
  font-size: clamp(4.2rem, 7.4vw, 5.7rem);
}

.plans__plus {
  display: grid;
  place-items: center;
  font-size: 0;
  line-height: 0;
  padding: 0;
}

.plans__plus::before {
  content: "+";
  display: block;
  font-family: var(--body);
  font-size: 2.15rem;
  font-weight: 900;
  line-height: 1;
  transform: translateY(-0.04em);
}

.pair {
  max-width: min(100%, 68rem);
  margin-inline: auto;
  padding: clamp(1.25rem, 2.2vw, 1.75rem) clamp(1.25rem, 2.4vw, 2rem);
}

.pair p {
  font-size: clamp(1.08rem, 1.38vw, 1.25rem);
  line-height: 1.42;
}

.pair p strong {
  font-size: 1.28em;
}

.letter::before {
  opacity: 0.9;
  background-image: radial-gradient(circle, rgb(44 110 73 / 0.62) 0.16rem, transparent 0.21rem);
  background-size: 0.62rem 1.9rem;
  background-repeat: repeat-y;
}

@media (max-width: 1020px) {
  .hero__mark {
    top: clamp(0.25rem, 3vw, 1.2rem);
    right: auto;
    left: 50%;
    width: clamp(20rem, 62vw, 34rem);
    opacity: 0.055;
    transform: translateX(-50%) rotate(-8deg);
  }

  .work__lede {
    justify-self: center;
    text-align: center;
  }

  .pricing-pair {
    margin-top: 0;
  }

  .plan h3,
  .plan__price,
  .plan__note {
    text-align: left;
  }

  .plan__price {
    justify-content: flex-start;
  }
}

@media (max-width: 600px) {
  .hero__mark {
    top: -0.35rem;
    width: min(22rem, 74vw);
    max-width: 74vw;
  }

  .services .section-title {
    font-size: clamp(2.65rem, 13vw, 3.45rem);
  }

  .pricing-pair {
    display: none !important;
  }

  .plan h3,
  .plan__price,
  .plan__note {
    text-align: left;
  }

  .plan__price {
    justify-content: flex-start;
  }

  .plan__price strong {
    font-size: clamp(3.25rem, 15vw, 4.1rem);
  }
}

/* Follow-up corrections: simplify effects and tighten contact/pricing details. */

.quick__card::after {
  top: 0.92rem;
  right: auto;
  bottom: auto;
  left: 0.92rem;
}

.plans__plus {
  position: absolute;
  display: grid;
  place-items: center;
  color: #fefee3;
  font-size: 0;
  line-height: 0;
}

.plans__plus::before,
.plans__plus::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 1.38rem;
  height: 0.2rem;
  border-radius: 999px;
  background: currentColor;
  transform: translate(-50%, -50%);
}

.plans__plus::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.pair p strong {
  font-family: var(--body);
  font-weight: 950;
  font-size: 1.3em;
  color: #2c6e49;
}

.form {
  padding-top: clamp(4.5rem, 8vw, 6.8rem);
}

.form__tape {
  top: -1.35rem;
  width: clamp(9.5rem, 13.5vw, 11rem);
  transform: translateX(-116%) rotate(-3deg);
}

.letter__sprig {
  display: none;
}

.letter__cards li {
  grid-template-columns: auto minmax(0, 1fr);
  justify-items: start;
  align-items: center;
  column-gap: 0.58rem;
  padding: 0.68rem 0.72rem;
  text-align: left;
}

.letter__no {
  grid-column: 1;
  grid-row: 1;
  width: 1.72rem;
  height: 1.72rem;
}

.letter__cards strong {
  grid-column: 2;
  text-align: left;
  font-size: 0.78rem;
}

@media (max-width: 1020px) {
  .form__tape {
    transform: translateX(-72%) rotate(-3deg);
  }
}

@media (max-width: 600px) {
  .form {
    padding-top: clamp(3.8rem, 18vw, 5.2rem);
  }

  .form__tape {
    top: -1.05rem;
    left: 48%;
    width: clamp(7.8rem, 38vw, 9rem);
    transform: translateX(-50%) rotate(-3deg);
  }

  .letter__cards li:last-child {
    grid-column: auto;
  }
}

/* Latest polish pass: stamp placement, opaque paper, pricing scale, and contact pin-up details. */

.quick__icon img {
  display: none;
}

.quick__icon::before {
  display: grid;
  place-items: center;
  color: var(--pond);
  font-family: var(--body);
  font-size: clamp(1.02rem, 1.35vw, 1.28rem);
  font-weight: 950;
  line-height: 1;
}

.quick__card:nth-child(1) .quick__icon::before {
  content: "\00a3";
}

.quick__card:nth-child(2) .quick__icon::before {
  content: "50";
  font-size: clamp(0.82rem, 1.05vw, 1rem);
}

.quick__card:nth-child(3) .quick__icon::before {
  content: "?";
}

.quick__card--dark .quick__icon::before {
  color: var(--paper);
}

.brand__mark,
.footer-brand img {
  border-color: transparent;
}

.pricing-pair {
  min-height: clamp(2.35rem, 3vw, 2.7rem);
  padding: clamp(0.34rem, 0.7vw, 0.52rem) clamp(0.78rem, 1.25vw, 1rem);
  gap: 0.42rem;
  border-width: 1.5px;
  font-size: clamp(0.78rem, 0.95vw, 0.92rem);
  line-height: 1.12;
  white-space: nowrap;
}

.pricing-pair::before {
  width: 0.38rem;
  height: 0.38rem;
  box-shadow:
    0.54rem 0 0 rgb(214 140 69 / 0.78),
    1.08rem 0 0 rgb(86 158 118 / 0.82);
  flex: 0 0 auto;
}

.pricing-pair svg {
  width: 1.08rem;
  height: 1.08rem;
  flex: 0 0 auto;
}

.plan__price strong {
  font-size: clamp(3.55rem, 6.25vw, 4.8rem);
}

.plan__note {
  padding-bottom: 0;
  border-bottom: 0;
  font-size: clamp(0.9rem, 0.98vw, 1rem);
  font-weight: 800;
  line-height: 1.28;
  opacity: 0.9;
}

@media (min-width: 1021px) {
  .plans__plus {
    left: calc(50% - 2.05rem);
    top: 49%;
  }
}

.form__tape {
  top: -2rem;
  left: 48%;
}

.letter__title {
  font-size: clamp(2.35rem, 4.1vw, 3.45rem);
  line-height: 0.98;
}

.letter__sign {
  margin-top: 0.7rem;
}

@media (max-width: 1020px) {

  .form__tape {
    top: -1.45rem;
  }

  .plans__plus {
    position: relative;
    top: auto;
    left: auto;
    justify-self: center;
    transform: none;
    margin: 0.65rem 0;
  }
}

@media (max-width: 900px) and (min-width: 601px) {
  .quick {
    grid-template-columns: 1fr;
  }

  .quick__card {
    min-height: 6rem;
  }
}

@media (max-width: 600px) {

  .pricing-pair {
    min-height: 2.55rem;
    padding-inline: 0.72rem 0.95rem;
    font-size: 0.78rem;
  }

  .pricing-pair svg {
    width: 1rem;
    height: 1rem;
  }

  .plan__price strong {
    font-size: clamp(3.05rem, 13vw, 3.65rem);
  }

  .form__tape {
    top: -1.22rem;
  }

  .letter__title {
    font-size: clamp(2.05rem, 10.4vw, 2.65rem);
  }
}

/* ── Process route margin icons ──────────────────────────────────── */

/* odd cards sit left → icon in the right open lane; even cards the reverse */

/* Entrance: SVG markup is the final frame; .is-inked replays it once */

@keyframes ricon-draw { from { stroke-dashoffset: 1; } to { stroke-dashoffset: 0; } }
@keyframes ricon-fade { from { opacity: 0; } }
@keyframes ricon-rise { from { opacity: 0; transform: translateY(7px); } to { opacity: 1; transform: translateY(0); } }
@keyframes ricon-pop { from { opacity: 0; transform: scale(0.4); } to { opacity: 1; transform: scale(1); } }
@keyframes ricon-slide { from { opacity: 0; transform: translateX(-7px); } to { opacity: 1; transform: translateX(0); } }

@keyframes ricon-march-in { from { stroke-dashoffset: 30; } to { stroke-dashoffset: 0; } }

@keyframes ricon-dim {
  0%, 12%, 100% { opacity: 1; }
  6% { opacity: 0.45; }
}

@keyframes ricon-breathe {
  0%, 16%, 100% { transform: scale(1); }
  8% { transform: scale(1.08); }
}

@keyframes ricon-glint {
  0%, 100% { opacity: 1; }
  40% { opacity: 0.45; }
}

@keyframes ricon-steam {
  0%, 24%, 100% { transform: translateY(0); opacity: 1; }
  12% { transform: translateY(-2.5px); opacity: 0.75; }
}

@keyframes ricon-bob {
  0%, 18%, 100% { transform: translate(0, 0); }
  9% { transform: translate(1.5px, -2.5px); }
}

@keyframes ricon-sway {
  0%, 100% { transform: rotate(0deg); }
  50% { transform: rotate(3deg); }
}

/* ── Discuss: bubbles → fills → rolling dots → cups → clink → steam ── */
@keyframes ricon-dotroll {
  0% { opacity: 0; transform: translateY(-6px); }
  70% { opacity: 1; transform: translateY(1px); }
  100% { opacity: 1; transform: none; }
}

@keyframes ricon-dotbounce {
  0%, 12%, 100% { transform: none; }
  6% { transform: translateY(-2px); }
}

@keyframes ricon-clink-l {
  0%, 100% { transform: none; }
  38%, 58% { transform: translate(7px, -4px) rotate(7deg); }
}

@keyframes ricon-clink-r {
  0%, 100% { transform: none; }
  38%, 58% { transform: translate(-7px, -4px) rotate(-7deg); }
}

@keyframes ricon-flash {
  0%, 100% { opacity: 0; }
  35%, 65% { opacity: 1; }
}

/* ── Shape the plan: looping page → trifold → handles/guides → mock ── */
@keyframes pl-draw {
  0% { stroke-dasharray: 1; stroke-dashoffset: 1; opacity: 1; }
  8%, 88% { stroke-dasharray: 1; stroke-dashoffset: 0; opacity: 1; }
  93%, 100% { stroke-dasharray: 1; stroke-dashoffset: 0; opacity: 0; }
}

@keyframes pl-fill {
  0%, 8% { opacity: 0; }
  13%, 88% { opacity: 0.9; }
  93%, 100% { opacity: 0; }
}

@keyframes pl-wing {
  0%, 15% { transform: scaleX(0); opacity: 0; }
  17% { opacity: 1; }
  23%, 88% { transform: scaleX(1); opacity: 1; }
  93%, 100% { transform: scaleX(1); opacity: 0; }
}

@keyframes pl-pop {
  0%, 25% { transform: scale(0); opacity: 0; }
  30%, 88% { transform: scale(1); opacity: 1; }
  93%, 100% { transform: scale(1); opacity: 0; }
}

@keyframes pl-dash {
  0%, 26% { opacity: 0; stroke-dashoffset: 34; }
  36%, 88% { opacity: 0.85; stroke-dashoffset: 0; }
  93%, 100% { opacity: 0; stroke-dashoffset: 0; }
}

@keyframes pl-ct {
  0%, 38% { opacity: 0; transform: translateY(3px); }
  44%, 88% { opacity: 1; transform: none; }
  93%, 100% { opacity: 0; transform: none; }
}

/* ── Build: subtle glint on the hero image once everything is loaded ── */

/* ── Check & hand over: stamp thump, then trail + plane loop forever ── */
@keyframes ricon-stamp {
  0% { opacity: 0; transform: scale(1.7); }
  65% { opacity: 1; transform: scale(0.94); }
  100% { opacity: 1; transform: scale(1); }
}

@keyframes ricon-march-loop { from { stroke-dashoffset: 0; } to { stroke-dashoffset: -20; } }

/* ── Stay looked after: pour, grow, bloom, sway ── */
@keyframes care-pour {
  0%, 20% { transform: none; }
  33% { transform: translate(3px, -7px) rotate(14deg); }
  70% { transform: translate(3px, -7px) rotate(14deg); }
  86%, 100% { transform: none; }
}

@keyframes care-water {
  0%, 28% { opacity: 0; stroke-dashoffset: 36; }
  38% { opacity: 0.9; }
  72% { opacity: 0.9; stroke-dashoffset: -18; }
  80%, 100% { opacity: 0; stroke-dashoffset: -18; }
}

/* Hover/focus: one detail responds once, no entrance replay */

/* Single-column layout: small static icon in the card's upper-right */
@media (max-width: 880px) {

  /* the icon takes the corner the little ring ornament used to occupy */
}
