/* ============================================================
   Stanizai Digital, design system
   Warm stone ground · ink text · jade accent
   Tonal bands carry the rhythm; the footer is the only dark surface.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,300..800&family=Inter:wght@400;500;600&display=swap');

/* ---------- Tokens ---------- */
:root {
  /* Ink, used for text, the anchor band, and the footer */
  --ink-900: #0a0c0f;
  --ink-800: #0e1116;
  --ink-700: #151920;
  --ink-600: #1d222a;

  /* Warm off-white ladder, cleaner than the earlier stone, still not white */
  --paper: #f1eee7;
  --paper-alt: #f8f6f2;
  --paper-sunk: #e7e2d8;
  /* Dark tail: the closing band and the footer, one step apart */
  --shell: #17191d;
  --shell-deep: #0f1113;
  /* Hairlines are visible on purpose, structure reads as intent */
  --paper-line: rgba(16, 20, 26, 0.16);
  --paper-line-strong: rgba(16, 20, 26, 0.32);

  /* Jade, bright for fills, deep for text on paper */
  --jade-400: #45f0b0;
  --jade-500: #17d98d;
  --jade-600: #0eb975;
  --jade-700: #04613f;
  --jade-800: #046844;

  /* Text roles */
  --on-light-hi: #10141a;
  --on-light-mid: #4c545e;
  --on-light-low: #4e535b;
  --on-dark-hi: #f7f4ed;
  --on-dark-mid: #a8afba;
  --on-dark-low: #8a919e;
  --line-dark: rgba(247, 244, 237, 0.12);

  /* Spacing scale (4px rhythm) */
  --s-1: 4px;
  --s-2: 8px;
  --s-3: 12px;
  --s-4: 16px;
  --s-5: 24px;
  --s-6: 32px;
  --s-7: 48px;
  --s-8: 64px;
  --s-9: 96px;
  --s-10: 128px;
  --s-11: 160px;

  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 14px;
  --radius-xl: 20px;

  --container: 1200px;

  /* Layered, warm-tinted shadows, never a flat grey box */
  --shadow-raised: 0 1px 2px rgba(24, 20, 12, 0.05), 0 4px 10px rgba(24, 20, 12, 0.05),
    0 12px 28px rgba(24, 20, 12, 0.06);
  --shadow-float: 0 2px 5px rgba(24, 20, 12, 0.06), 0 12px 28px rgba(24, 20, 12, 0.08),
    0 30px 64px rgba(24, 20, 12, 0.09);
  --shadow-jade: 0 2px 8px rgba(5, 135, 90, 0.22), 0 12px 30px rgba(5, 135, 90, 0.18);

  /* Motion */
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-spring: cubic-bezier(0.34, 1.42, 0.64, 1);
  --dur-fast: 160ms;
  --dur: 240ms;
  --dur-slow: 420ms;
  --dur-reveal: 640ms;
  --dur-wipe: 900ms;
}

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

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

body {
  margin: 0;
  background: var(--paper);
  color: var(--on-light-hi);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

/* ---------- Typography ---------- */
h1,
h2,
h3,
h4 {
  font-family: 'Bricolage Grotesque', 'Inter', sans-serif;
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -0.035em;
  margin: 0;
  text-wrap: balance;
}

h1 {
  font-size: clamp(2.75rem, 7.2vw, 5.6rem);
  font-weight: 700;
  letter-spacing: -0.045em;
}
h2 {
  font-size: clamp(2.1rem, 4.6vw, 3.5rem);
}
h3,
.h3 {
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

p {
  margin: 0;
  text-wrap: pretty;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--jade-700);
  margin-bottom: var(--s-4);
}
.eyebrow::before {
  content: '';
  width: 22px;
  height: 1px;
  background: currentColor;
  opacity: 0.6;
}

.lede {
  font-size: clamp(1.05rem, 1.6vw, 1.22rem);
  line-height: 1.72;
  color: var(--on-light-mid);
  max-width: 62ch;
}

.section-head {
  max-width: 680px;
  margin-bottom: var(--s-8);
}

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--s-5);
}

.section {
  position: relative;
  padding-block: clamp(80px, 9vw, 116px);
}

/* Tonal bands keep an all-light page from going flat */
.section--alt {
  background: var(--paper-alt);
}
.section--sunk {
  background: var(--paper-sunk);
}

/* The dark tail, closing band runs straight into the footer */
.section--deep {
  background: var(--shell);
  color: var(--on-dark-hi);
}
.section--deep .lede,
.section--deep p {
  color: var(--on-dark-mid);
}
.section--deep .eyebrow {
  color: var(--jade-500);
}
.section--deep .btn--ghost {
  --btn-fg: var(--on-dark-hi);
  border-color: rgba(247, 244, 237, 0.28);
}
.section--deep .btn--ghost:hover {
  background: rgba(247, 244, 237, 0.08);
  border-color: rgba(247, 244, 237, 0.5);
}
.section--deep .btn--jade {
  --btn-bg: var(--paper);
  --btn-fg: var(--ink-900);
  box-shadow: none;
}
.section--deep .btn--jade:hover {
  background: #fff;
}
.section--deep .btn:focus-visible,
.section--deep .link-arrow:focus-visible {
  outline-color: var(--jade-500);
}

/* Grain, depth without a texture image */
.grain::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.16;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.16'/%3E%3C/svg%3E");
}
.section--deep.grain::after {
  mix-blend-mode: overlay;
  opacity: 0.25;
}

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--ink-900);
  --btn-fg: var(--paper);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-2);
  min-height: 50px;
  padding: 0 26px;
  border: 0;
  border-radius: var(--radius-sm);
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-family: inherit;
  font-size: 0.94rem;
  font-weight: 600;
  letter-spacing: -0.005em;
  cursor: pointer;
  white-space: nowrap;
  box-shadow: none;
  transition: transform var(--dur) var(--ease-spring), box-shadow var(--dur) var(--ease-out),
    background-color var(--dur) var(--ease-out);
}
.btn:hover {
  transform: translateY(-1px);
  background: #000;
}
.btn:active {
  transform: translateY(0);
}
.btn:focus-visible {
  outline: 2px solid var(--ink-900);
  outline-offset: 3px;
}
.btn svg {
  transition: transform var(--dur) var(--ease-out);
}
.btn:hover svg {
  transform: translateX(3px);
}

/* Primary conversion action: deep forest, not a bright fill */
.btn--jade {
  --btn-bg: #0b3b2a;
  --btn-fg: var(--paper);
}
.btn--jade:hover {
  background: #072a1e;
}

.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--on-light-hi);
  border: 1px solid var(--paper-line-strong);
}
.btn--ghost:hover {
  background: rgba(16, 20, 26, 0.05);
  border-color: var(--ink-900);
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--jade-700);
  padding: var(--s-1) 0;
  transition: gap var(--dur) var(--ease-out);
}
.link-arrow:hover {
  gap: var(--s-3);
}
.link-arrow:focus-visible {
  outline: 2px solid var(--ink-900);
  outline-offset: 4px;
  border-radius: 4px;
}

/* ---------- Navigation ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(241, 238, 231, 0.82);
  backdrop-filter: saturate(170%) blur(14px);
  -webkit-backdrop-filter: saturate(170%) blur(14px);
  border-bottom: 1px solid var(--paper-line);
  transition: border-color var(--dur) var(--ease-out), background-color var(--dur) var(--ease-out);
}
.nav[data-scrolled='true'] {
  border-bottom-color: var(--paper-line-strong);
  background: rgba(241, 238, 231, 0.96);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-5);
  min-height: 72px;
}
.nav__cta {
  min-height: 42px;
  padding: 0 18px;
  font-size: 0.9rem;
}
.nav__links {
  display: none;
  align-items: center;
  gap: var(--s-6);
}
.nav__link {
  position: relative;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--on-light-mid);
  padding: var(--s-2) 0;
  transition: color var(--dur) var(--ease-out);
}
.nav__link:hover,
.nav__link[aria-current='page'] {
  color: var(--on-light-hi);
}
.nav__link::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--jade-700);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur) var(--ease-out);
}
.nav__link:hover::after,
.nav__link[aria-current='page']::after {
  transform: scaleX(1);
}
.nav__link:focus-visible {
  outline: 2px solid var(--ink-900);
  outline-offset: 4px;
  border-radius: 3px;
}

.nav__cta {
  display: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: var(--s-3);
  padding: var(--s-2) 0;
  color: var(--on-light-hi);
}
.brand:focus-visible {
  outline: 2px solid var(--ink-900);
  outline-offset: 4px;
  border-radius: var(--radius-sm);
}
.brand__mark {
  width: 34px;
  height: 34px;
  flex: none;
}
.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}
.brand__name {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.brand__sub {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--on-light-low);
}
.footer .brand {
  color: var(--on-dark-hi);
}
.footer .brand__sub {
  color: var(--on-dark-low);
}

.nav__toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 1px solid var(--paper-line);
  border-radius: var(--radius-sm);
  background: transparent;
  color: var(--on-light-hi);
  cursor: pointer;
  transition: background-color var(--dur) var(--ease-out);
}
.nav__toggle:hover {
  background: rgba(16, 20, 26, 0.05);
}
.nav__toggle:focus-visible {
  outline: 2px solid var(--ink-900);
  outline-offset: 3px;
}

.nav__mobile {
  display: none;
  flex-direction: column;
  gap: var(--s-1);
  padding: var(--s-4) 0 var(--s-6);
  border-top: 1px solid var(--paper-line);
}
.nav__mobile[data-open='true'] {
  display: flex;
}
.nav__mobile a:not(.btn) {
  padding: var(--s-3) 0;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--on-light-mid);
}
.nav__mobile a:not(.btn):hover {
  color: var(--on-light-hi);
}
.nav__mobile a:not(.btn):focus-visible {
  outline: 2px solid var(--ink-900);
  outline-offset: 3px;
  border-radius: 3px;
}
.nav__mobile .btn {
  margin-top: var(--s-3);
}

@media (min-width: 900px) {
  .nav__links,
  .nav__cta {
    display: flex;
  }
  .nav__toggle {
    display: none;
  }
  .nav__mobile {
    display: none !important;
  }
}

/* ---------- Cards ---------- */
.card {
  position: relative;
  background: var(--paper-alt);
  border: 1px solid var(--paper-line);
  border-radius: var(--radius-lg);
  padding: var(--s-6);
  box-shadow: 0 1px 2px rgba(24, 20, 12, 0.035);
  transition: transform var(--dur) var(--ease-out), border-color var(--dur) var(--ease-out),
    box-shadow var(--dur) var(--ease-out);
}
.card:hover {
  border-color: var(--paper-line-strong);
  box-shadow: var(--shadow-raised);
}
.section--alt .card {
  background: var(--paper);
}
.section--sunk .card {
  background: var(--paper-alt);
}

.card h3 {
  margin-bottom: var(--s-3);
}
.card p {
  color: var(--on-light-mid);
  font-size: 0.97rem;
  line-height: 1.7;
}

.grid {
  display: grid;
  gap: var(--s-5);
}
@media (min-width: 700px) {
  .grid--2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid--3 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1000px) {
  .grid--3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ---------- Scroll reveal ----------
   Gated behind .js, which an inline snippet in <head> sets. Without
   JavaScript the content simply renders, it never starts invisible,
   so a blocked or failed script can't blank the page for a reader
   or a crawler that doesn't run JS. */
.js .rv {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity var(--dur-reveal) var(--ease-out), transform var(--dur-reveal) var(--ease-out);
}
.js .rv.is-in {
  opacity: 1;
  transform: none;
}
.js .rv.d1 {
  transition-delay: 70ms;
}
.js .rv.d2 {
  transition-delay: 140ms;
}
.js .rv.d3 {
  transition-delay: 210ms;
}
.js .rv.d4 {
  transition-delay: 280ms;
}

/* Image reveal: a left-to-right wipe. Same .js gate as .rv, so without
   JavaScript nothing is ever clipped.

   The clip goes on the <img>, never on the element the observer watches.
   Clipping the observed element to zero width makes IntersectionObserver
   compute a zero-area intersection rect, so it never fires the class that
   would un-clip it, the image hides itself from the thing that reveals it
   and stays invisible forever. Keep the observed box unclipped. */
.js .wipe img {
  clip-path: inset(0 100% 0 0);
  transition: clip-path var(--dur-wipe) var(--ease-out);
}
.js .wipe.is-in img {
  clip-path: inset(0 0 0 0);
}
.js .gal .gal__item:nth-child(2) img {
  transition-delay: 120ms;
}
.js .gal .gal__item:nth-child(3) img {
  transition-delay: 240ms;
}
.js .gal .gal__item:nth-child(4) img {
  transition-delay: 360ms;
}

@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 .rv {
    opacity: 1;
    transform: none;
  }
  .js .wipe img {
    clip-path: none;
  }
}

/* ---------- FAQ ---------- */
.faqs {
  max-width: 820px;
  border-top: 1px solid var(--paper-line);
}
.faq {
  border-bottom: 1px solid var(--paper-line);
}
.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-4);
  padding: var(--s-5) 0;
  cursor: pointer;
  list-style: none;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  transition: color var(--dur) var(--ease-out);
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq summary::after {
  content: '';
  flex: none;
  width: 11px;
  height: 11px;
  border-right: 2px solid var(--jade-700);
  border-bottom: 2px solid var(--jade-700);
  transform: rotate(45deg) translate(-2px, -2px);
  transition: transform var(--dur) var(--ease-out);
}
.faq[open] summary::after {
  transform: rotate(225deg) translate(-2px, -2px);
}
.faq summary:hover {
  color: var(--jade-700);
}
.faq summary:focus-visible {
  outline: 2px solid var(--ink-900);
  outline-offset: 3px;
  border-radius: 4px;
}
.faq p {
  padding: 0 0 var(--s-5);
  max-width: 68ch;
  color: var(--on-light-mid);
  line-height: 1.75;
}

/* ---------- Contact form ---------- */
.cform {
  display: grid;
  gap: var(--s-5);
  margin-top: var(--s-7);
}
.cform__row {
  display: grid;
  gap: var(--s-5);
}
@media (min-width: 640px) {
  .cform__row {
    grid-template-columns: 1fr 1fr;
  }
}
.cform label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--on-light-low);
  margin-bottom: var(--s-2);
}
.cform input,
.cform textarea {
  width: 100%;
  font: inherit;
  font-size: 0.97rem;
  color: var(--on-light-hi);
  background: var(--paper-alt);
  border: 1px solid var(--paper-line-strong);
  border-radius: var(--radius-sm);
  padding: 13px 14px;
  transition: border-color var(--dur) var(--ease-out), box-shadow var(--dur) var(--ease-out);
}
.cform textarea {
  min-height: 140px;
  resize: vertical;
  line-height: 1.65;
}
.cform ::placeholder {
  color: var(--on-light-low);
  opacity: 0.72;
}
.cform input:hover,
.cform textarea:hover {
  border-color: var(--on-light-low);
}
.cform input:focus-visible,
.cform textarea:focus-visible {
  outline: none;
  border-color: var(--jade-700);
  box-shadow: 0 0 0 3px rgba(5, 135, 90, 0.16);
}
/* Honeypot. Hidden from people, left in the DOM for bots to fill. */
.cform input[name='_honey'] {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}
.cform button {
  justify-self: start;
}
.cform__note {
  font-size: 0.88rem;
  color: var(--on-light-low);
  line-height: 1.6;
}
.cform__note a {
  color: var(--jade-700);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--shell-deep);
  border-top: 1px solid rgba(247, 244, 237, 0.08);
  color: var(--on-dark-hi);
  padding-block: var(--s-9) var(--s-6);
}
.footer__grid {
  display: grid;
  gap: var(--s-7);
  margin-bottom: var(--s-8);
}
@media (min-width: 760px) {
  .footer__grid {
    grid-template-columns: 1.6fr 1fr 1fr;
  }
}
.footer h4,
.footer .foot-h {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--on-dark-low);
  margin-bottom: var(--s-4);
}
.footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
}
.footer a {
  color: var(--on-dark-mid);
  font-size: 0.95rem;
  transition: color var(--dur) var(--ease-out);
}
.footer a:hover {
  color: var(--jade-500);
}
.footer a:focus-visible {
  outline: 2px solid var(--jade-500);
  outline-offset: 3px;
  border-radius: 3px;
}
.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-3) var(--s-5);
  justify-content: space-between;
  align-items: center;
  padding-top: var(--s-5);
  border-top: 1px solid var(--line-dark);
  color: var(--on-dark-low);
  font-size: 0.85rem;
}

/* ---------- Utility ---------- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  left: var(--s-4);
  top: -60px;
  z-index: 200;
  padding: var(--s-3) var(--s-5);
  background: var(--ink-900);
  color: var(--paper);
  border-radius: var(--radius-sm);
  font-weight: 600;
  transition: top var(--dur) var(--ease-out);
}
.skip-link:focus {
  top: var(--s-4);
}

/* ============================================================
   Shared components used by more than one page
   ============================================================ */

/* Device frames */
.browser {
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--paper-line-strong);
  box-shadow: 0 2px 6px rgba(24, 20, 12, 0.06), 0 18px 44px rgba(24, 20, 12, 0.11),
    0 44px 90px rgba(24, 20, 12, 0.1);
}
.browser img {
  width: 100%;
  height: auto;
  display: block;
}

/* Secondary frames from the same build.
   An annotated walkthrough, not a contact sheet: each screenshot runs the
   full width of the container so the interface inside it is actually legible,
   with a caption saying what you are looking at. The old 2-up grid shrank
   every screen to ~560px, at which point the work in them read as texture. */
.gal {
  display: flex;
  flex-direction: column;
  gap: clamp(56px, 7vw, 104px);
}
.gal__cap {
  display: grid;
  gap: var(--s-3);
  margin-bottom: var(--s-5);
}
@media (min-width: 900px) {
  .gal__cap {
    grid-template-columns: 190px 1fr;
    gap: var(--s-7);
    align-items: baseline;
  }
}
.gal__label {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--jade-700);
  padding-top: 4px;
  border-top: 1px solid var(--paper-line-strong);
}
.gal__text {
  margin: 0;
  max-width: 60ch;
  color: var(--on-light-mid);
  font-size: 1.02rem;
  line-height: 1.7;
}
.gal figure {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--paper-line);
  background: #fff;
  box-shadow: 0 2px 6px rgba(24, 20, 12, 0.06), 0 18px 44px rgba(24, 20, 12, 0.1),
    0 44px 90px rgba(24, 20, 12, 0.09);
}
.gal img {
  width: 100%;
  height: auto;
  display: block;
}
/* The phone sits beside its caption at true phone scale, so it reads as a
   phone rather than towering over the desktop screens. The cap applies at
   every width: below 900px the grid collapses to one column, and without it
   the phone stretched to the full container and upscaled a 400px source. */
.gal__phone {
  display: grid;
  gap: var(--s-6);
  align-items: start;
}
.gal__phone figure {
  max-width: 320px;
  margin-inline: auto;
}
@media (min-width: 900px) {
  .gal__phone {
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: var(--s-9);
    /* Centred against the phone. Top-aligned, a two-line caption beside a
       650px-tall phone leaves the whole left column empty. */
    align-items: center;
  }
  .gal__phone .gal__cap {
    display: block;
    margin: 0;
    justify-self: end;
    max-width: 40ch;
  }
  .gal__phone .gal__label {
    display: inline-block;
    margin-bottom: var(--s-4);
  }
}

/* ---------- Pricing tiers ---------- */
.tiers {
  align-items: start;
}
.tier {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.tier--featured {
  border-color: var(--ink-900);
  box-shadow: var(--shadow-raised);
}
.tier__badge {
  position: absolute;
  top: calc(var(--s-4) * -1);
  left: var(--s-6);
  padding: var(--s-1) var(--s-3);
  border-radius: 999px;
  background: var(--ink-900);
  color: var(--paper);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.tier__name {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.tier .tier__tagline {
  color: var(--on-light-low);
  font-size: 0.9rem;
  margin-bottom: var(--s-5);
}
.tier .tier__price {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.05rem;
  color: var(--on-light-mid);
  letter-spacing: -0.02em;
}
.tier__price span {
  font-size: clamp(2.3rem, 4vw, 2.9rem);
  font-weight: 700;
  color: var(--on-light-hi);
  letter-spacing: -0.04em;
  margin-right: var(--s-2);
}
.tier .tier__monthly {
  color: var(--jade-700);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: var(--s-6);
}
.tier__list {
  list-style: none;
  margin: 0 0 var(--s-6);
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  flex: 1;
}
.tier__list li {
  position: relative;
  padding-left: var(--s-6);
  font-size: 0.95rem;
  color: var(--on-light-mid);
  line-height: 1.55;
}
.tier__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 15px;
  height: 9px;
  border-left: 2px solid var(--jade-600);
  border-bottom: 2px solid var(--jade-600);
  transform: rotate(-45deg);
  border-radius: 1px;
}
.tier__cta {
  width: 100%;
}

.tiers__note {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--s-3) var(--s-5);
  justify-content: center;
  margin-top: var(--s-7);
  color: var(--on-light-low);
  font-size: 0.93rem;
  text-align: center;
}

