/* ============================================================
   ViewPort · warm & human
   Young Serif (display) + Karla (body). Committed indigo,
   honey accent, rounded shapes, gentle playful motion.
   ============================================================ */

/* Self-hosted fonts (same files Google Fonts serves; bundled for speed,
   offline reliability, and GDPR — no third-party request). */
@font-face {
  font-family: "Young Serif";
  src: url("fonts/youngserif-latin-ext.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Young Serif";
  src: url("fonts/youngserif-latin.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Karla";
  src: url("fonts/karla-var-latin-ext.woff2") format("woff2");
  font-weight: 300 800;
  font-display: swap;
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Karla";
  src: url("fonts/karla-var-latin.woff2") format("woff2");
  font-weight: 300 800;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  /* color */
  --bg: oklch(1 0 0);
  --leaf: oklch(0.40 0.10 265);
  --leaf-deep: oklch(0.33 0.09 265);
  --leaf-pale: oklch(0.945 0.022 265);
  --leaf-soft: oklch(0.88 0.045 265);
  --on-leaf-soft: oklch(0.95 0.018 265);
  --cream: oklch(0.975 0.015 85);
  --ink: oklch(0.24 0.02 265);
  --muted: oklch(0.45 0.025 265);
  --line: oklch(0.90 0.012 265);
  --error: oklch(0.50 0.17 25);

  /* type */
  --display: "Young Serif", Georgia, "Times New Roman", serif;
  --body: "Karla", system-ui, -apple-system, "Segoe UI", sans-serif;
  --t-h1: clamp(2.25rem, 1.2rem + 4.2vw, 3.8rem);
  --t-h2: clamp(1.7rem, 1.15rem + 2.2vw, 2.5rem);
  --t-body: 1.0625rem;
  --t-sm: 0.9rem;
  --t-xs: 0.8125rem;

  /* space */
  --s-2: 0.5rem;
  --s-3: 0.75rem;
  --s-4: 1rem;
  --s-6: 1.5rem;
  --s-8: 2rem;
  --s-10: 2.5rem;
  --s-12: 3rem;
  --sect: clamp(4rem, 8vw, 6.5rem);

  /* misc */
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;
  --ease: cubic-bezier(0.25, 1, 0.5, 1);
  --z-nav: 100;

  /* Checkmark used for affirmatives (availability, included features).
     Masked so it inherits a token colour and stays theme-agnostic. */
  --check: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
}

/* ---------- reset & base ---------- */

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 5.5rem;
}

body {
  font-family: var(--body);
  font-size: var(--t-body);
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  font-kerning: normal;
}

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

h1, h2, h3 { text-wrap: balance; }

a { color: inherit; }

::selection { background: var(--leaf); color: #fff; }

:focus-visible {
  outline: 2.5px solid var(--leaf);
  outline-offset: 3px;
  border-radius: 4px;
}
.work :focus-visible,
.plan--featured :focus-visible { outline-color: #fff; }

.wrap {
  max-width: 72rem;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: calc(var(--z-nav) + 1);
  background: var(--ink);
  color: #fff;
  padding: 0.6rem 1rem;
  border-radius: 0 0 var(--r-md) var(--r-md);
  text-decoration: none;
  font-weight: 700;
  font-size: var(--t-sm);
}
.skip-link:focus { top: 0; }

/* ---------- type roles ---------- */

.h2 {
  font-family: var(--display);
  font-weight: 400;
  font-size: var(--t-h2);
  line-height: 1.15;
  letter-spacing: -0.005em;
  margin-bottom: clamp(2rem, 4.5vw, 3.25rem);
}
.h2--light { color: #fff; }

/* ---------- buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.6rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font: inherit;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 180ms var(--ease), border-color 180ms var(--ease),
              color 180ms var(--ease), translate 160ms var(--ease), scale 160ms var(--ease),
              box-shadow 180ms var(--ease);
}
@media (hover: hover) and (pointer: fine) {
  .btn:hover { translate: 0 -2px; }
}
.btn:active { translate: 0 0; scale: 0.97; }

.btn--solid { background: var(--leaf); color: #fff; }
.btn--solid:hover { background: var(--leaf-deep); box-shadow: 0 10px 20px -12px oklch(0.33 0.09 265 / 0.55); }

.btn--soft { background: #fff; border-color: var(--line); color: var(--ink); }
.btn--soft:hover { border-color: var(--leaf); color: var(--leaf); }

.btn--invert { background: #fff; color: var(--leaf); }
.btn--invert:hover { background: var(--cream); }

.btn--sm { padding: 0.55rem 1.15rem; font-size: 0.875rem; }
.btn--full { width: 100%; }

/* ---------- header ---------- */

.site-head {
  position: sticky;
  top: 0;
  z-index: var(--z-nav);
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}

.site-head__in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 4.25rem;
}

.wordmark {
  font-family: var(--display);
  font-size: 1.4rem;
  text-decoration: none;
}
.wordmark--sm { font-size: 1.15rem; }

.nav-list {
  display: flex;
  align-items: center;
  gap: clamp(1.25rem, 2.5vw, 2.25rem);
  list-style: none;
}

.nav-list a:not(.btn) {
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  padding-block: 0.35rem;
  background: linear-gradient(currentColor, currentColor) no-repeat left 1.4em / 0% 2px;
  transition: background-size 220ms var(--ease), color 180ms var(--ease);
}
.nav-list a:not(.btn):hover { background-size: 100% 2px; color: var(--leaf); }

.nav-toggle {
  display: none;
  align-items: center;
  gap: 0.55rem;
  background: none;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.5rem 1rem;
  font: inherit;
  font-size: 0.875rem;
  font-weight: 700;
  cursor: pointer;
}
.nav-toggle__bar {
  width: 16px;
  height: 2px;
  border-radius: 2px;
  background: var(--ink);
  box-shadow: 0 5px 0 var(--ink), 0 -5px 0 var(--ink);
}

/* ---------- hero ---------- */

.hero { padding-block: var(--s-6) var(--sect); }

.hero__panel {
  background: var(--leaf-pale);
  border-radius: var(--r-xl);
  padding: clamp(2rem, 5vw, 4rem);
  display: grid;
  grid-template-columns: 1fr;
}

/* No hero image any more. Centre the copy and cap the measure, so the
   panel reads as a deliberate typographic composition rather than a
   two-column layout with one column missing. */
.hero__panel { justify-items: center; padding-block: clamp(3rem, 7vw, 5.5rem); }
.hero__copy { max-width: 44rem; text-align: center; }
.hero__copy .hero__actions { justify-content: center; }

.avail {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: #fff;
  border-radius: 999px;
  padding: 0.45rem 1rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--leaf);
  margin-bottom: var(--s-6);
}
.avail__dot {
  width: 1.15em;
  height: 1.15em;
  background: var(--leaf);
  -webkit-mask: var(--check) center / contain no-repeat;
  mask: var(--check) center / contain no-repeat;
}

.hero__title {
  font-family: var(--display);
  font-weight: 400;
  font-size: var(--t-h1);
  line-height: 1.12;
  letter-spacing: -0.005em;
}

.hero__sub {
  max-width: 32rem;
  margin-inline: auto;
  margin-top: var(--s-6);
  font-size: 1.1rem;
  line-height: 1.65;
  text-wrap: pretty;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-3);
  margin-top: var(--s-8);
}


@keyframes rise {
  from { opacity: 0; translate: 0 16px; }
  to { opacity: 1; translate: 0 0; }
}
.js .anim { animation: rise 640ms var(--ease) both; }
.js .anim--1 { animation-delay: 80ms; }
.js .anim--2 { animation-delay: 180ms; }
.js .anim--3 { animation-delay: 300ms; }
.js .anim--4 { animation-delay: 430ms; }

/* ---------- shop cards (awning + mini site) ---------- */

.shopcard {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  box-shadow:
    0 1px 2px oklch(0.24 0.02 265 / 0.04),
    0 18px 40px -18px oklch(0.33 0.09 265 / 0.28);
}


.shopcard__chrome {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 14px 12px 8px;
  background: oklch(0.958 0.010 265);
  border-bottom: 1px solid var(--line);
}
.shopcard__chrome i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: oklch(0.84 0.013 265);
}
.shopcard__url {
  margin-left: auto;
  font-size: 0.66rem;
  font-weight: 600;
  color: var(--muted);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 99px;
  padding: 1px 9px;
}

.shot {
  display: block;
  width: 100%;
  height: auto; /* beat the img height="" attribute so aspect-ratio governs the box */
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: top center;
  background: var(--leaf-pale);
  border-bottom: 1px solid var(--line);
}

.shopcard__body { padding: var(--s-6) var(--s-6) var(--s-8); }
.shopcard__name {
  font-family: var(--display);
  font-weight: 400;
  font-size: 1.3rem;
  line-height: 1.2;
}
.shopcard__role {
  font-size: var(--t-sm);
  color: var(--muted);
  margin-top: 0.25rem;
}
.shopcard__desc {
  margin-top: var(--s-3);
  font-size: 0.98rem;
  line-height: 1.6;
}

/* miniature client sites */





/* ---------- scroll reveals ---------- */

/* The entrance is a keyframe animation, not a transition, so that cards which
   also lift on hover (.work .shopcard) can own `transition` for the hover
   without replacing the reveal. No forwards fill: once the animation ends it
   releases `translate` back to the element, letting hover take over. */
.js .reveal { opacity: 0; }
.js .reveal.in {
  opacity: 1;
  animation: rise 620ms var(--ease) backwards;
}

/* ---------- services ---------- */

.services { padding-block: 0 var(--sect); }

.tiles {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-6);
}

.tile {
  background: var(--leaf-pale);
  border-radius: var(--r-lg);
  padding: var(--s-8);
}
.tile__icon {
  width: 42px;
  height: 42px;
  color: var(--leaf);
}
.tile__name {
  font-family: var(--display);
  font-weight: 400;
  font-size: 1.3rem;
  margin-top: var(--s-4);
}
.tile__desc {
  margin-top: var(--s-2);
  max-width: 46rem;
  color: var(--muted);
}

/* ---------- work (the committed green moment) ---------- */

.work {
  background: var(--leaf);
  color: #fff;
  padding-block: var(--sect);
}
.work .h2 { margin-bottom: var(--s-3); }
.work__sub {
  color: var(--on-leaf-soft);
  font-size: 1.05rem;
  margin-bottom: clamp(2rem, 4.5vw, 3.25rem);
}

.work__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-8);
}
@media (min-width: 720px) {
  .work__grid { grid-template-columns: 1fr 1fr; }
}

.work .shopcard {
  border: none;
  color: var(--ink);
  transition: translate 260ms var(--ease), rotate 260ms var(--ease), box-shadow 260ms var(--ease);
}
@media (hover: hover) and (pointer: fine) {
  .work .shopcard:hover {
    translate: 0 -6px;
    rotate: -0.5deg;
    box-shadow:
      0 1px 2px oklch(0.24 0.02 265 / 0.05),
      0 28px 52px -20px oklch(0.18 0.05 265 / 0.5);
  }
}

/* ---------- process ---------- */

.process { padding-block: var(--sect); }

.steps {
  list-style: none;
  max-width: 44rem;
}

.step {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--s-6);
  padding-bottom: var(--s-10);
}
.step:last-child { padding-bottom: 0; }
.step:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 1.5rem;
  top: 3.4rem;
  bottom: 0.4rem;
  border-left: 2px dashed var(--leaf-soft);
}

.step__num {
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: var(--leaf-pale);
  color: var(--leaf);
  font-family: var(--display);
  font-size: 1.25rem;
}

.step__name {
  font-family: var(--display);
  font-weight: 400;
  font-size: 1.3rem;
  padding-top: 0.55rem;
}
.step__desc {
  margin-top: var(--s-2);
  color: var(--muted);
  max-width: 36rem;
}

/* ---------- quotes ---------- */

.quotes { padding-block: 0 var(--sect); }

.quotes__panel {
  background: var(--leaf-pale);
  border-radius: var(--r-xl);
  padding: clamp(2rem, 5vw, 3.5rem);
}

.quotes__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--s-6);
}

.quote {
  position: relative;
  background: #fff;
  border-radius: 18px;
  padding: var(--s-6);
  box-shadow: 0 10px 24px -16px oklch(0.24 0.02 265 / 0.25);
}
.quote::after {
  content: "";
  position: absolute;
  bottom: -7px;
  left: 2.2rem;
  width: 14px;
  height: 14px;
  background: #fff;
  rotate: 45deg;
  border-radius: 0 0 3px 0;
}

.quote blockquote p {
  font-size: 1rem;
  line-height: 1.6;
}
.quote figcaption {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  margin-top: var(--s-4);
  font-size: var(--t-sm);
  color: var(--muted);
  line-height: 1.35;
}
.quote figcaption strong { color: var(--ink); font-weight: 700; }
.quote__avatar {
  flex: none;
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--leaf);
  color: #fff;
  font-family: var(--display);
  font-size: 1.05rem;
}

/* ---------- pricing ---------- */

.pricing { padding-block: 0 var(--sect); }

.plans {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(255px, 1fr));
  gap: var(--s-6);
  align-items: stretch;
}

.plan {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--leaf-pale);
  border-radius: var(--r-lg);
  padding: var(--s-8);
}
.plan--featured {
  background: var(--leaf);
  color: #fff;
  box-shadow: 0 24px 48px -20px oklch(0.33 0.09 265 / 0.55);
}
.plan__flag {
  position: absolute;
  top: -0.85rem;
  left: var(--s-8);
  background: #fff;
  color: var(--leaf);
  font-size: 0.78rem;
  font-weight: 700;
  border-radius: 999px;
  padding: 0.28rem 0.85rem;
  box-shadow: 0 4px 10px -4px oklch(0.24 0.02 265 / 0.3);
}
.plan__name {
  font-family: var(--display);
  font-weight: 400;
  font-size: 1.15rem;
}
.plan__price {
  font-family: var(--display);
  font-size: 2.3rem;
  line-height: 1.15;
  margin-top: var(--s-2);
  font-variant-numeric: tabular-nums;
}
.plan__for {
  font-size: var(--t-sm);
  color: var(--muted);
  margin-top: 0.3rem;
}
.plan--featured .plan__for { color: var(--on-leaf-soft); }
.plan__list {
  list-style: none;
  margin-block: var(--s-6);
  display: grid;
  gap: 0.65rem;
  font-size: var(--t-sm);
}
.plan__list li {
  display: flex;
  gap: 0.6rem;
  align-items: baseline;
}
.plan__list li::before {
  content: "";
  flex: none;
  width: 1.1em;
  height: 1.1em;
  background: var(--leaf);
  -webkit-mask: var(--check) center / contain no-repeat;
  mask: var(--check) center / contain no-repeat;
  translate: 0 0.15em;
}
.plan--featured .plan__list li::before { background: #fff; }
.plan .btn { margin-top: auto; }

.pricing__note {
  margin-top: var(--s-10);
  text-align: center;
  color: var(--muted);
  font-size: var(--t-sm);
  max-width: 46rem;
  margin-inline: auto;
}
.pricing__note strong { color: var(--ink); }

/* ---------- contact ---------- */

.contact { padding-block: 0 var(--sect); }

.contact__panel {
  position: relative;
  background: var(--leaf-pale);
  border-radius: var(--r-xl);
  padding: clamp(2rem, 5vw, 4rem);
}


.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}

.contact__lead { max-width: 32rem; line-height: 1.7; }
.contact__lead--sub { margin-top: var(--s-4); }
.contact__alt { margin-top: var(--s-6); font-size: var(--t-sm); }
.contact__alt a {
  color: var(--leaf);
  font-weight: 700;
  text-underline-offset: 3px;
}
.contact__alt a:hover { color: var(--leaf-deep); }

.contact__form { display: grid; gap: var(--s-4); }

.field { display: grid; gap: 0.45rem; }
.field label {
  font-size: var(--t-sm);
  font-weight: 700;
}
.field__opt { font-weight: 400; color: var(--muted); }

.field input,
.field select,
.field textarea {
  font: inherit;
  font-size: 1rem;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 0.7rem 0.95rem;
  width: 100%;
  transition: border-color 180ms var(--ease);
}
.field input::placeholder,
.field textarea::placeholder { color: oklch(0.52 0.02 265); }
.field input:hover, .field select:hover, .field textarea:hover { border-color: var(--leaf-soft); }
.field input:focus-visible,
.field select:focus-visible,
.field textarea:focus-visible {
  outline: 2.5px solid var(--leaf);
  outline-offset: 0;
  border-color: transparent;
}

.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1.5 6 6.5 11 1.5' fill='none' stroke='%23405243' stroke-width='1.8' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.95rem center;
  padding-right: 2.5rem;
}

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

.field--invalid input,
.field--invalid textarea { border-color: var(--error); }
.field__error {
  font-size: var(--t-xs);
  color: var(--error);
}

.contact__fine {
  font-size: var(--t-xs);
  min-height: 1.2em;
  color: var(--muted);
}

/* ---------- footer ---------- */

.site-foot { border-top: 1px solid var(--line); padding-block: var(--s-10); }

.site-foot__in {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--s-4) var(--s-10);
}

.site-foot__brand {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  font-size: var(--t-sm);
  color: var(--muted);
}

.site-foot__nav {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-6);
  list-style: none;
}
.site-foot__nav a {
  font-size: var(--t-sm);
  font-weight: 600;
  color: var(--muted);
  text-decoration: none;
}
.site-foot__nav a:hover { color: var(--leaf); text-decoration: underline; text-underline-offset: 3px; }

.site-foot__legal {
  margin-left: auto;
  font-size: var(--t-xs);
  color: var(--muted);
}

/* ---------- responsive ---------- */

@media (max-width: 960px) {
  .contact__grid { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .nav-toggle { display: inline-flex; }
  .nav-list {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    padding: var(--s-2) clamp(1.25rem, 4vw, 2.5rem) var(--s-6);
    display: none;
    opacity: 0;
    translate: 0 -6px;
    transition: opacity 200ms var(--ease), translate 200ms var(--ease),
                display 200ms allow-discrete;
  }
  .site-nav.open .nav-list {
    display: flex;
    opacity: 1;
    translate: 0 0;
  }
  @starting-style {
    .site-nav.open .nav-list {
      opacity: 0;
      translate: 0 -6px;
    }
  }
  .nav-list a:not(.btn) {
    display: block;
    padding-block: 0.8rem;
    font-size: 1.05rem;
    background: none;
  }
  .nav-list__cta { margin-top: var(--s-3); }
  .nav-list__cta .btn { width: 100%; }

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

  .step { gap: var(--s-4); }
  .step:not(:last-child)::before { left: 1.25rem; }
  .step__num { width: 2.5rem; height: 2.5rem; font-size: 1.1rem; }
  .step__name { padding-top: 0.35rem; }

  }

/* ---------- motion preferences ---------- */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .js .anim, .js .reveal { opacity: 1; translate: 0 0; }
  }

html.no-anim { scroll-behavior: auto; }
.no-anim *, .no-anim *::before, .no-anim *::after {
  animation: none !important;
  transition: none !important;
}
.no-anim .anim, .no-anim .reveal { opacity: 1 !important; translate: 0 0 !important; }

/* Typical desktop monitors (narrower gamut, different white handling) wash out
   the near-white panel tint that phone displays render clearly. Large screens
   get a slightly deeper tint; phones keep the original values. */
@media (min-width: 64rem) {
  :root {
    --leaf-pale: oklch(0.928 0.034 265);
    --line: oklch(0.885 0.016 265);
  }
}

.nowr { white-space: nowrap; }
