/* ==========================================================================
   OC Product Studio: Home page styles (review build)
   Plain modern CSS. All colors/spacing/type come from tokens.css.
   Motion is CSS-first and gated behind prefers-reduced-motion.
   ========================================================================== */

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

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  font-family: var(--font-sans);
  font-size: var(--text-base);
  line-height: var(--leading-normal);
  color: var(--text-primary);
  background: var(--surface-base);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; }
ul, ol { list-style: none; padding: 0; }

h1, h2, h3 {
  line-height: var(--leading-tight);
  letter-spacing: var(--tracking-tight);
  font-weight: var(--weight-medium);
  text-wrap: balance;
}

p { text-wrap: pretty; }

/* --------------------------------------------------------------------------
   Accessibility helpers
   -------------------------------------------------------------------------- */
.skip-link {
  position: absolute;
  left: var(--space-4);
  top: var(--space-4);
  z-index: var(--z-toast);
  transform: translateY(-150%);
  background: var(--text-primary);
  color: var(--text-inverse);
  padding: var(--space-3) var(--space-5);
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  transition: transform var(--dur-fast) var(--ease-out);
}
.skip-link:focus { transform: translateY(0); }

:where(a, button, input, textarea, [tabindex]):focus-visible {
  outline: var(--focus-ring);
  outline-offset: var(--focus-offset);
  border-radius: var(--radius-xs);
}

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

.section { padding-block: var(--section-y); }
.section--subtle { background: var(--surface-subtle); }
.section--dark { background: var(--surface-dark); color: var(--text-inverse); }

.section__head { max-width: var(--container-wide); margin-bottom: var(--space-12); }
.section__head--row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--space-6);
  max-width: none;
}
.section__title { font-size: var(--text-2xl); }

/* --------------------------------------------------------------------------
   Eyebrow / labels
   -------------------------------------------------------------------------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  font-weight: var(--weight-medium);
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: var(--space-4);
}
.eyebrow::before {
  content: "";
  width: var(--space-6);
  height: 2px;
  background: var(--accent);   /* accent used functionally as a marker */
  border-radius: var(--radius-full);
}
.eyebrow--inverse { color: var(--text-inverse); }
.eyebrow--inverse::before { background: var(--accent); }

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--btn-py) var(--btn-px);
  background: var(--btn-bg);
  color: var(--btn-color);
  border: 1px solid var(--btn-bg);
  border-radius: var(--btn-radius);
  font-size: var(--btn-size);
  font-weight: var(--btn-weight);
  letter-spacing: var(--btn-tracking);
  text-decoration: none;
  cursor: pointer;
  transition: background var(--dur-fast) var(--ease-out),
              border-color var(--dur-fast) var(--ease-out),
              color var(--dur-fast) var(--ease-out),
              transform var(--dur-fast) var(--ease-spring);
}
.btn:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: #fff;
  transform: translateY(-2px);
}
.btn:active { transform: translateY(0); }

.btn--ghost {
  background: transparent;
  color: var(--btn-ghost-color);
  border-color: var(--btn-ghost-border);
}
.btn--ghost:hover {
  background: var(--btn-ghost-hover-bg);
  color: var(--btn-ghost-hover-color);
  border-color: var(--btn-ghost-hover-bg);
}

.btn--on-dark {
  background: var(--surface-base);
  color: var(--text-primary);
  border-color: var(--surface-base);
}
.btn--on-dark:hover {
  background: var(--accent-light);
  border-color: var(--accent-light);
  color: var(--surface-dark);
}

.btn--lg {
  font-size: var(--text-base);
  padding: var(--space-4) var(--space-8);
}

/* --------------------------------------------------------------------------
   Arrow links
   -------------------------------------------------------------------------- */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  letter-spacing: var(--tracking-wide);
  text-decoration: none;
  color: var(--text-primary);
  width: fit-content;
}
.link-arrow span { transition: transform var(--dur-fast) var(--ease-out); }
.link-arrow:hover span { transform: translateX(4px); }
.link-arrow--lg { font-size: var(--text-base); white-space: nowrap; }
.section--dark .link-arrow { color: var(--text-inverse); }

/* --------------------------------------------------------------------------
   Badge
   -------------------------------------------------------------------------- */
.badge {
  display: inline-block;
  align-self: flex-start;
  background: var(--badge-bg);
  color: var(--text-primary);   /* token badge-color fails contrast; espresso passes */
  border-radius: var(--badge-radius);
  padding: var(--badge-py) var(--badge-px);
  font-size: var(--badge-size);
  font-weight: var(--badge-weight);
  letter-spacing: var(--badge-tracking);
  text-transform: uppercase;
  margin-bottom: var(--space-4);
}

/* --------------------------------------------------------------------------
   Wordmark (Direction A2)
   -------------------------------------------------------------------------- */
.wordmark {
  display: inline-flex;
  align-items: baseline;
  gap: var(--wm-gap);
  text-decoration: none;
  color: var(--wm-color);
  font-family: var(--wm-font);
}
.wordmark__mark {
  font-size: var(--wm-mark-size);
  font-weight: var(--wm-mark-weight);
  letter-spacing: var(--wm-mark-tracking);
  line-height: 1;
}
.wordmark__desc {
  font-size: var(--wm-desc-size);
  font-weight: var(--wm-desc-weight);
  letter-spacing: var(--wm-desc-tracking);
  text-transform: uppercase;
  line-height: 1;
}
.wordmark--inverse { color: var(--wm-color-inverse); }

/* --------------------------------------------------------------------------
   Header / navigation
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: var(--z-nav);
  transition: background var(--dur-base) var(--ease-out),
              border-color var(--dur-base) var(--ease-out),
              backdrop-filter var(--dur-base) var(--ease-out);
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  background: var(--nav-bg-scroll);
  border-bottom-color: var(--nav-border);
  backdrop-filter: saturate(1.2) blur(12px);
  -webkit-backdrop-filter: saturate(1.2) blur(12px);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
  min-height: var(--nav-height);
}
.nav__menu {
  display: flex;
  align-items: center;
  gap: var(--space-8);
}
.nav__list {
  display: flex;
  align-items: center;
  gap: var(--space-6);
}
.nav__list a {
  font-size: var(--nav-link-size);
  letter-spacing: var(--nav-link-tracking);
  color: var(--nav-link-color);
  text-decoration: none;
  padding-block: var(--space-2);
  position: relative;
  transition: color var(--dur-fast) var(--ease-out);
}
.nav__list a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur-fast) var(--ease-out);
}
.nav__list a:hover { color: var(--nav-link-hover); }
.nav__list a:hover::after { transform: scaleX(1); }

.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  background: transparent;
  border: 0;
  cursor: pointer;
}
.nav__toggle-bar {
  display: block;
  width: 22px;
  height: 2px;
  margin-inline: auto;
  background: var(--text-primary);
  border-radius: var(--radius-full);
  transition: transform var(--dur-fast) var(--ease-out),
              opacity var(--dur-fast) var(--ease-out);
}
.nav__toggle[aria-expanded="true"] .nav__toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav__toggle[aria-expanded="true"] .nav__toggle-bar:nth-child(2) {
  transform: rotate(-45deg);
}

@media (max-width: 860px) {
  .nav__toggle { display: flex; }
  .nav__menu {
    position: absolute;
    inset: var(--nav-height) 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: var(--space-2);
    padding: var(--space-4) var(--container-x) var(--space-6);
    background: var(--surface-base);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 18px 40px -28px rgba(62, 39, 35, 0.5);
    clip-path: inset(0 0 100% 0);
    opacity: 0;
    pointer-events: none;
    transition: clip-path var(--dur-base) var(--ease-out),
                opacity var(--dur-base) var(--ease-out);
  }
  .nav__menu.is-open {
    clip-path: inset(0 0 0 0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  .nav__list a {
    display: block;
    padding-block: var(--space-3);
    border-bottom: 1px solid var(--border);
  }
  .nav__list a::after { display: none; }
  .nav__cta { margin-top: var(--space-4); }
}

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */
.hero { padding-block: clamp(3rem, 1.5rem + 7vw, 7rem); overflow: clip; }
/* Three borderless regions: text (left) + visual (right), then a CTA band below */
.hero__inner {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3.5rem);
}
.hero__top {
  display: grid;
  grid-template-columns: 1.3fr 0.85fr;
  align-items: center;
  gap: clamp(2rem, 5vw, 4.5rem);
}
.hero__text { text-align: left; }
.hero__title {
  font-size: var(--text-hero);
  font-weight: var(--weight-semibold);
  margin-block: var(--space-2) var(--space-5);
}
.hero__sub {
  font-size: var(--text-md);
  color: var(--text-secondary);
  max-width: 48ch;
}
.hero__bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-4);
  text-align: center;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  justify-content: center;
}
.hero__meta {
  font-size: var(--text-sm);
  color: var(--text-tertiary);
  max-width: 60ch;
  margin-inline: auto;
}
/* Right-column product visual (borderless region) */
.hero__visual { width: 100%; max-width: 460px; justify-self: center; }

/* Hero visual stage (placeholder composition) */
.hero__stage {
  position: relative;
  aspect-ratio: 4 / 5;
  display: grid;
  place-items: center;
}
.ph-tile--hero {
  width: 78%;
  aspect-ratio: 4 / 5;
  position: relative;
  z-index: var(--z-raised);
}
.ph-tile--sm {
  position: absolute;
  right: 2%;
  bottom: 6%;
  width: 42%;
  aspect-ratio: 1 / 1;
  z-index: calc(var(--z-raised) + 1);
  box-shadow: 0 30px 60px -30px rgba(62, 39, 35, 0.45);
}
.spin-badge {
  position: absolute;
  left: 0;
  top: 8%;
  z-index: calc(var(--z-raised) + 2);
  display: grid;
  place-items: center;
  width: clamp(72px, 9vw, 104px);
  aspect-ratio: 1;
  border-radius: var(--radius-full);
  background: var(--accent);
  color: #fff;
  box-shadow: 0 20px 40px -18px rgba(161, 69, 37, 0.6);
}
.spin-badge__text {
  font-weight: var(--weight-bold);
  font-size: var(--text-lg);
  letter-spacing: var(--tracking-wide);
}
.spin-badge__ring {
  position: absolute;
  inset: 8px;
  border: 1.5px dashed rgba(255, 255, 255, 0.7);
  border-radius: var(--radius-full);
}
.ph-note {
  margin-top: var(--space-4);
  font-size: var(--text-xs);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--text-tertiary);
  text-align: center;
}
.ph-note--inverse { color: var(--text-inverse-dim); }

/* --------------------------------------------------------------------------
   Placeholder tiles (stand in for real photography)
   -------------------------------------------------------------------------- */
.ph-tile {
  display: grid;
  place-items: center;
  padding: var(--space-6);
  border-radius: var(--radius-lg);
  border: 1px dashed var(--border-accent);
  background:
    linear-gradient(135deg, var(--accent-pale), var(--secondary-light));
  color: var(--text-secondary);
  overflow: hidden;
}
.ph-tile__label {
  font-size: var(--text-xs);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  text-align: center;
  color: var(--text-secondary);
}
.ph-tile--portrait { aspect-ratio: 3 / 4; }
.ph-tile--landscape { aspect-ratio: 4 / 3; }
.ph-tile--square { aspect-ratio: 1 / 1; }

/* --------------------------------------------------------------------------
   Positioning strip
   -------------------------------------------------------------------------- */
.strip {
  background: var(--surface-raised);
  border-block: 1px solid var(--border);
  padding-block: var(--section-y-sm);
}
.strip__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr);
  gap: var(--space-8);
  align-items: center;
}
.strip__lead {
  font-size: var(--text-lg);
  font-weight: var(--weight-medium);
  letter-spacing: var(--tracking-snug);
}
.strip__points {
  display: grid;
  gap: var(--space-3);
}
.strip__points li {
  position: relative;
  padding-left: var(--space-6);
  color: var(--text-secondary);
  font-size: var(--text-base);
}
.strip__points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: var(--space-3);
  height: 2px;
  background: var(--accent);
  border-radius: var(--radius-full);
}

/* --------------------------------------------------------------------------
   Cards / services
   -------------------------------------------------------------------------- */
.cards.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--grid-gutter);
}
.card {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--card-radius);
  padding: var(--card-padding);
  transition: transform var(--dur-base) var(--ease-out),
              box-shadow var(--dur-base) var(--ease-out),
              border-color var(--dur-base) var(--ease-out);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px -32px rgba(62, 39, 35, 0.45);
  border-color: var(--border-accent);
}
.card__title { font-size: var(--text-lg); }
.card__body { color: var(--text-secondary); font-size: var(--text-sm); flex: 1; }
.card .link-arrow { margin-top: var(--space-2); }
.card--feature {
  background: var(--surface-dark);
  color: var(--text-inverse);
  border-color: var(--surface-dark);
}
.card--feature .card__body { color: var(--text-inverse-dim); }
.card--feature .link-arrow { color: var(--text-inverse); }

/* --------------------------------------------------------------------------
   360 differentiator band
   -------------------------------------------------------------------------- */
.spin__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.spin__body {
  color: var(--text-inverse-dim);
  font-size: var(--text-md);
  margin-block: var(--space-5) var(--space-6);
  max-width: 50ch;
}
.spin__list {
  display: grid;
  gap: var(--space-3);
  margin-bottom: var(--space-8);
}
.spin__list li {
  position: relative;
  padding-left: var(--space-6);
  color: var(--text-inverse);
  font-size: var(--text-base);
}
.spin__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: var(--space-3);
  height: var(--space-3);
  border: 2px solid var(--accent);
  border-radius: var(--radius-full);
}

/* Interactive spin mock */
.spin__demo { display: grid; justify-items: center; gap: var(--space-4); }
.spin-mock {
  position: relative;
  width: 100%;
  max-width: 420px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at 50% 38%, rgba(245, 241, 230, 0.10), transparent 60%);
  border: 1px solid var(--border-inverse);
  border-radius: var(--radius-xl);
}
.spin-mock__object {
  width: 46%;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--accent-light), var(--secondary));
  box-shadow: 0 30px 60px -30px rgba(0, 0, 0, 0.6);
}
.spin-mock__hint {
  position: absolute;
  bottom: var(--space-5);
  font-size: var(--text-2xs);
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  color: var(--text-inverse-dim);
  padding: var(--space-1) var(--space-3);
  border: 1px solid var(--border-inverse);
  border-radius: var(--radius-full);
}

/* --------------------------------------------------------------------------
   Selected work
   -------------------------------------------------------------------------- */
.work__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--grid-gutter);
}
.work__grid .ph-tile { transition: transform var(--dur-base) var(--ease-out); }
.work__grid .ph-tile:hover { transform: translateY(-4px) scale(1.01); }
.work__invite {
  margin-top: var(--space-10);
  text-align: center;
  color: var(--text-secondary);
  font-size: var(--text-md);
}
.work__invite a { color: var(--text-primary); font-weight: var(--weight-medium); text-underline-offset: 3px; }

/* --------------------------------------------------------------------------
   Process
   -------------------------------------------------------------------------- */
.process__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--grid-gutter);
  counter-reset: step;
}
.process__step {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  padding-top: var(--space-5);
  border-top: 2px solid var(--border-strong);
}
.process__num {
  font-size: var(--text-xl);
  font-weight: var(--weight-bold);
  letter-spacing: var(--tracking-wide);
  color: var(--accent-dark);
  line-height: 1;
}
.process__step-title { font-size: var(--text-md); }
.process__step p { color: var(--text-secondary); font-size: var(--text-sm); }
.process__note {
  margin-inline: auto;
  margin-block: var(--space-12);
  max-width: var(--container-wide);
  text-align: center;
  color: var(--text-tertiary);
  font-size: var(--text-sm);
}

/* --------------------------------------------------------------------------
   Audience
   -------------------------------------------------------------------------- */
.audience__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--grid-gutter);
}
.audience__item {
  padding: var(--space-8) var(--space-6);
  background: var(--surface-raised);
  border: 1px solid var(--border);
  border-radius: var(--card-radius);
}
.audience__name { font-size: var(--text-md); margin-bottom: var(--space-3); }
.audience__item p { color: var(--text-secondary); font-size: var(--text-sm); }

/* --------------------------------------------------------------------------
   Closing CTA
   -------------------------------------------------------------------------- */
.cta {
  background: var(--surface-dark-alt);
  color: var(--text-inverse);
  padding-block: var(--section-y);
}
.cta__inner { max-width: var(--container-wide); text-align: center; margin-inline: auto; }
.cta__title { font-size: var(--text-2xl); }
.cta__sub {
  color: var(--text-inverse-dim);
  font-size: var(--text-md);
  margin-block: var(--space-4) var(--space-8);
}
.cta__actions { display: flex; flex-wrap: wrap; gap: var(--space-4); justify-content: center; }

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.site-footer {
  background: var(--surface-dark);
  color: var(--text-inverse);
  padding-top: var(--section-y-sm);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  gap: var(--space-10) var(--space-8);
  padding-bottom: var(--space-12);
}
.footer__tagline {
  margin-top: var(--space-4);
  color: var(--text-inverse-dim);
  font-size: var(--text-sm);
  max-width: 32ch;
}
.footer__heading {
  font-size: var(--text-xs);
  font-weight: var(--weight-medium);
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
  color: var(--text-inverse-dim);
  margin-bottom: var(--space-4);
}
.footer__nav ul { display: grid; gap: var(--space-2); }
.footer__nav a,
.footer__contact a {
  color: var(--text-inverse);
  text-decoration: none;
  font-size: var(--text-sm);
  transition: color var(--dur-fast) var(--ease-out);
}
.footer__nav a:hover,
.footer__contact a:hover { color: var(--accent-light); }
.footer__contact p { margin-bottom: var(--space-2); }
.footer__area {
  margin-top: var(--space-4);
  color: var(--text-inverse-dim);
  font-size: var(--text-xs);
  line-height: var(--leading-normal);
  max-width: 34ch;
}
.footer__bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding-block: var(--space-6);
  border-top: 1px solid var(--border-inverse);
  font-size: var(--text-xs);
  color: var(--text-inverse-dim);
}
.footer__bar a { color: var(--text-inverse-dim); text-decoration: none; }
.footer__bar a:hover { color: var(--text-inverse); }

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 980px) {
  .cards.services__grid { grid-template-columns: repeat(2, 1fr); }
  .process__steps { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .hero__top { grid-template-columns: 1fr; }
  .strip__inner { grid-template-columns: 1fr; gap: var(--space-6); }
  .spin__grid { grid-template-columns: 1fr; }
  .work__grid { grid-template-columns: repeat(2, 1fr); }
  .audience__grid { grid-template-columns: 1fr; }
  .section__head--row { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 520px) {
  .cards.services__grid { grid-template-columns: 1fr; }
  .process__steps { grid-template-columns: 1fr; }
  .work__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
}

/* --------------------------------------------------------------------------
   Motion: scroll reveals (gated, only when supported AND motion allowed)
   Default state is fully visible, so unsupported browsers lose nothing.
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: no-preference) {
  @supports (animation-timeline: view()) {
    .reveal {
      opacity: 0;
      transform: translateY(2rem);
      animation: reveal-in linear both;
      animation-timeline: view();
      animation-range: entry 0% cover 32%;
    }
    @keyframes reveal-in {
      to { opacity: 1; transform: none; }
    }
  }

  /* Gentle float on the hero placeholder composition */
  .ph-float-a { animation: float-a 7s var(--ease-in-out) infinite alternate; }
  .ph-float-b { animation: float-b 6s var(--ease-in-out) infinite alternate; }
  .ph-float-c { animation: float-c 5s var(--ease-in-out) infinite alternate; }

  @keyframes float-a { to { transform: translateY(-10px); } }
  @keyframes float-b { to { transform: translateY(12px); } }
  @keyframes float-c { to { transform: translateY(-8px) rotate(-4deg); } }

  /* Slow rotation hint on the spin mock object */
  .ph-spin { animation: spin-hint 18s linear infinite; }
  @keyframes spin-hint {
    to { transform: rotate(360deg); }
  }
}

/* Reduced motion: everything visible and still */
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
  .ph-float-a, .ph-float-b, .ph-float-c, .ph-spin { animation: none; }
}


/* ==========================================================================
   INNER PAGES
   Shared components for Work, Services, 360, About, Pricing, Contact,
   Thanks, 404, Privacy. All token-driven.
   ========================================================================== */

/* — Utilities ----------------------------------------------------------- */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0);
  white-space: nowrap; border: 0;
}
.prose { max-width: 52rem; }   /* left-aligned reading column, anchored to the section edge */
.lead {
  font-size: var(--text-md);
  color: var(--text-secondary);
  max-width: 60ch;
}

/* — Breadcrumb ---------------------------------------------------------- */
.breadcrumb { padding-top: var(--space-6); }
.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  letter-spacing: var(--tracking-wide);
  color: var(--text-tertiary);
}
.breadcrumb a { color: var(--text-secondary); text-decoration: none; }
.breadcrumb a:hover { color: var(--text-primary); }
.breadcrumb li:not(:last-child)::after {
  content: "/";
  margin-left: var(--space-2);
  color: var(--text-tertiary);
}
.breadcrumb [aria-current="page"] { color: var(--text-primary); }

/* — Page hero (left-aligned; anchors to the same left edge as the sections below,
   so the page flows at one consistent width from the hero down) */
.page-hero {
  padding-block: clamp(2.5rem, 1.5rem + 5vw, 5.5rem) var(--section-y-sm);
}
.page-hero__title {
  font-size: var(--text-3xl);
  font-weight: var(--weight-semibold);
  margin: var(--space-3) 0 var(--space-5);
  max-width: 32ch;
}
.page-hero__lead {
  font-size: var(--text-md);
  color: var(--text-secondary);
  max-width: 65ch;        /* readable line length, left-aligned */
}
.page-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  justify-content: flex-start;
  margin-top: var(--space-8);
}

/* — Current nav link ---------------------------------------------------- */
.nav__list a.is-current { color: var(--text-primary); }
.nav__list a.is-current::after { transform: scaleX(1); }

/* ==========================================================================
   Work / portfolio
   ========================================================================== */
.work-filter {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-bottom: var(--space-8);
}
.work-filter input { position: absolute; opacity: 0; pointer-events: none; }
.work-filter label {
  display: inline-block;
  padding: var(--space-2) var(--space-4);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  letter-spacing: var(--tracking-wide);
  color: var(--text-secondary);
  cursor: pointer;
  transition: background var(--dur-fast) var(--ease-out),
              color var(--dur-fast) var(--ease-out),
              border-color var(--dur-fast) var(--ease-out);
}
.work-filter label:hover { border-color: var(--text-primary); color: var(--text-primary); }
.work-filter input:checked + label {
  background: var(--text-primary);
  border-color: var(--text-primary);
  color: var(--surface-base);
}
.work-filter input:focus-visible + label { outline: var(--focus-ring); outline-offset: var(--focus-offset); }

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--grid-gutter);
}
.gallery .ph-tile { transition: transform var(--dur-base) var(--ease-out); }
.gallery .ph-tile:hover { transform: translateY(-4px) scale(1.01); }

/* CSS-only category filter (the radios + gallery share .work-filtering) */
.work-filtering:has(#f-product:checked) .gallery > :not(.cat-product),
.work-filtering:has(#f-spins:checked)   .gallery > :not(.cat-spins),
.work-filtering:has(#f-food:checked)    .gallery > :not(.cat-food),
.work-filtering:has(#f-ecom:checked)    .gallery > :not(.cat-ecom) {
  display: none;
}

/* ==========================================================================
   Services
   ========================================================================== */
.svc {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: center;
  padding-block: var(--section-y-sm);
  border-top: 1px solid var(--border);
}
.svc:nth-child(even) .svc__media { order: 2; }
.svc__title { font-size: var(--text-xl); margin-bottom: var(--space-3); }
.svc__body { color: var(--text-secondary); margin-bottom: var(--space-5); }
.svc__list { display: grid; gap: var(--space-2); margin-bottom: var(--space-5); }
.svc__list li {
  position: relative;
  padding-left: var(--space-6);
  font-size: var(--text-sm);
  color: var(--text-secondary);
}
.svc__list li::before {
  content: "";
  position: absolute; left: 0; top: 0.6em;
  width: var(--space-3); height: 2px;
  background: var(--accent); border-radius: var(--radius-full);
}
.svc__media { aspect-ratio: 4 / 3; }

/* ==========================================================================
   360 viewer
   ========================================================================== */
.viewer {
  margin: 0;
  display: grid;
  gap: var(--space-4);
  justify-items: center;
}
.viewer__stage {
  width: 100%;
  max-width: 460px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  position: relative;
  background:
    radial-gradient(circle at 50% 42%, var(--surface-raised), var(--surface-subtle) 72%);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  cursor: var(--viewer-cursor);
  touch-action: pan-y;
  overflow: hidden;
}
.viewer__stage.is-grabbing { cursor: grabbing; }
.viewer__frame {
  width: 86%;
  height: 86%;
  object-fit: contain;
  user-select: none;
  -webkit-user-drag: none;
  pointer-events: none;
}
.viewer__grab {
  position: absolute;
  bottom: var(--space-4);
  font-size: var(--text-2xs);
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  color: var(--text-tertiary);
  background: var(--surface-base);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  padding: var(--space-1) var(--space-3);
  pointer-events: none;
}
.viewer__control { width: 100%; max-width: 460px; display: grid; gap: var(--space-2); }
.viewer__control-label {
  font-size: var(--text-xs);
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
  color: var(--text-secondary);
}
.viewer__control input[type="range"] {
  width: 100%;
  accent-color: var(--accent);
}
.viewer__control input[type="range"]:focus-visible {
  outline: var(--focus-ring);
  outline-offset: var(--focus-offset);
}
.viewer__caption {
  font-size: var(--text-sm);
  color: var(--text-tertiary);
  max-width: 46ch;
  text-align: center;
}
.viewer--on-dark .viewer__stage {
  background: radial-gradient(circle at 50% 42%, rgba(245,241,230,0.10), transparent 70%);
  border-color: var(--border-inverse);
}
.viewer--on-dark .viewer__grab {
  background: transparent;
  border-color: var(--border-inverse);
  color: var(--text-inverse-dim);
}
.viewer--on-dark .viewer__control-label { color: var(--text-inverse); }
.viewer--on-dark .viewer__caption { color: var(--text-inverse-dim); }

/* Feature rows on the 360 page */
.feature-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--grid-gutter);
}
.feature {
  padding: var(--space-6);
  background: var(--surface-raised);
  border: 1px solid var(--border);
  border-radius: var(--card-radius);
}
.feature__title { font-size: var(--text-md); margin-bottom: var(--space-2); }
.feature p { font-size: var(--text-sm); color: var(--text-secondary); }

/* Stat strip (proven results) */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--grid-gutter);
}
.stat {
  padding: var(--space-6);
  background: var(--surface-raised);
  border: 1px solid var(--border);
  border-radius: var(--card-radius);
}
.stat__num {
  font-size: var(--text-xl);
  font-weight: var(--weight-semibold);
  color: var(--accent-dark);
  line-height: 1.1;
}
.stat__label {
  margin-top: var(--space-2);
  font-size: var(--text-sm);
  color: var(--text-secondary);
}

/* Tools strip ("tools I work in") */
.tools { padding-block: var(--section-y-sm); border-top: 1px solid var(--border); }
.tools__title {
  text-align: center;
  font-size: var(--text-xs);
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
  color: var(--text-tertiary);
  margin-bottom: var(--space-6);
}
.tools__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--space-6) var(--space-10);
}
.tools__item img {
  height: 26px;
  width: auto;
  filter: brightness(0);          /* force every logo to a uniform silhouette */
  opacity: 0.55;                  /* muted on the linen base */
  transition: opacity var(--dur-fast) var(--ease-out);
}
.tools__item img:hover { opacity: 0.9; }

/* ==========================================================================
   FAQ (native details/summary)
   ========================================================================== */
.faq { max-width: var(--container-wide); display: grid; gap: var(--space-3); }
.faq__item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--surface-raised);
  overflow: hidden;
}
.faq__item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding: var(--space-5) var(--space-6);
  font-size: var(--text-md);
  font-weight: var(--weight-medium);
  cursor: pointer;
  list-style: none;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+";
  font-size: var(--text-lg);
  color: var(--accent-dark);
  transition: transform var(--dur-fast) var(--ease-out);
}
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__item summary:focus-visible { outline: var(--focus-ring); outline-offset: calc(-1 * var(--focus-offset)); }
.faq__answer { padding: 0 var(--space-6) var(--space-5); color: var(--text-secondary); font-size: var(--text-sm); }

/* ==========================================================================
   Pricing
   ========================================================================== */
.tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--grid-gutter);
  align-items: start;
}
.tier {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  padding: var(--space-8) var(--space-6);
  background: var(--surface-raised);
  border: 1px solid var(--border);
  border-radius: var(--card-radius);
}
.tier--featured {
  background: var(--surface-dark);
  color: var(--text-inverse);
  border-color: var(--surface-dark);
}
.tier--featured .tier__desc,
.tier--featured .tier__features li { color: var(--text-inverse-dim); }
.tier__name { font-size: var(--text-lg); }
.tier__price { font-size: var(--text-2xl); font-weight: var(--weight-semibold); }
.tier__price small { font-size: var(--text-sm); font-weight: var(--weight-regular); color: inherit; opacity: 0.75; }
.tier__desc { font-size: var(--text-sm); color: var(--text-secondary); }
.tier__features { display: grid; gap: var(--space-2); margin-block: var(--space-2) var(--space-4); }
.tier__features li {
  position: relative; padding-left: var(--space-6);
  font-size: var(--text-sm); color: var(--text-secondary);
}
.tier__features li::before {
  content: ""; position: absolute; left: 0; top: 0.55em;
  width: var(--space-3); height: var(--space-3);
  border: 2px solid var(--accent); border-radius: var(--radius-full);
}
.tier .btn { margin-top: auto; }
.tier--featured .btn {
  background: var(--surface-base); color: var(--text-primary); border-color: var(--surface-base);
}
.tier--featured .btn:hover { background: var(--accent-light); border-color: var(--accent-light); color: var(--surface-dark); }

.addon {
  margin-top: var(--space-8);
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: var(--space-4);
  padding: var(--space-6);
  background: var(--accent-pale);
  border: 1px solid var(--border-accent);
  border-radius: var(--card-radius);
}
.addon__title { font-size: var(--text-md); }
.addon p { font-size: var(--text-sm); color: var(--text-secondary); }
.price-note {
  margin-inline: auto;
  margin-block: var(--space-12);
  max-width: var(--container-wide);
  text-align: center;
  font-size: var(--text-sm);
  color: var(--text-tertiary);
}

/* — Review flag (visible placeholder marker) ---------------------------- */
.review-flag {
  display: inline-block;
  font-size: var(--text-2xs);
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  font-weight: var(--weight-medium);
  color: var(--color-error);
  background: #fff;
  border: 1px dashed var(--color-error);
  border-radius: var(--radius-sm);
  padding: 0 var(--space-2);
  margin-left: var(--space-2);
}

/* ==========================================================================
   Contact form
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.form { display: grid; gap: var(--space-5); }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-5); }
.field { display: grid; gap: var(--space-2); }
.field label {
  font-size: var(--input-label-size);
  letter-spacing: var(--input-label-track);
  text-transform: uppercase;
  color: var(--text-secondary);
  font-weight: var(--weight-medium);
}
.field .req { color: var(--accent-dark); }
.field input,
.field select,
.field textarea {
  width: 100%;
  font: inherit;
  font-size: var(--input-size);
  color: var(--input-color);
  background: var(--input-bg);
  border: 1px solid var(--input-border);
  border-radius: var(--input-radius);
  padding: var(--input-py) var(--input-px);
  transition: border-color var(--dur-fast) var(--ease-out),
              box-shadow var(--dur-fast) var(--ease-out);
}
.field textarea { resize: vertical; min-height: 8rem; }
.field input::placeholder,
.field textarea::placeholder { color: var(--input-placeholder); }
.field input:focus-visible,
.field select:focus-visible,
.field textarea:focus-visible {
  outline: none;
  border-color: var(--input-focus);
  box-shadow: 0 0 0 var(--focus-width) var(--border-accent);
}
.form__status {
  font-size: var(--text-sm);
  padding: var(--space-3) var(--space-4);
  border-radius: var(--radius-md);
  display: none;
}
.form__status.is-visible { display: block; }
.form__status--ok { background: var(--accent-pale); color: var(--text-primary); border: 1px solid var(--border-accent); }
.form__aside {
  padding: var(--space-8) var(--space-6);
  background: var(--surface-raised);
  border: 1px solid var(--border);
  border-radius: var(--card-radius);
}
.form__aside h2 { font-size: var(--text-md); margin-bottom: var(--space-4); }
.form__aside p { font-size: var(--text-sm); color: var(--text-secondary); margin-bottom: var(--space-3); }
.form__aside a { color: var(--text-primary); }
.turnstile-slot {
  border: 1px dashed var(--border-strong);
  border-radius: var(--radius-md);
  padding: var(--space-4);
  font-size: var(--text-xs);
  color: var(--text-tertiary);
  text-align: center;
}

/* ==========================================================================
   Thanks / 404 (centered states)
   ========================================================================== */
.state {
  min-height: 64vh;
  display: grid;
  place-content: center;
  text-align: center;
  gap: var(--space-5);
  padding-block: var(--section-y);
}
.state__title { font-size: var(--text-3xl); font-weight: var(--weight-semibold); }
.state__sub { font-size: var(--text-md); color: var(--text-secondary); max-width: 48ch; margin-inline: auto; }
.state__actions { display: flex; flex-wrap: wrap; gap: var(--space-4); justify-content: center; }

/* ==========================================================================
   Inner-page responsive
   ========================================================================== */
@media (max-width: 980px) {
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .feature-row { grid-template-columns: 1fr; }
  .tiers { grid-template-columns: 1fr; }
}
@media (max-width: 860px) {
  .svc { grid-template-columns: 1fr; }
  .svc:nth-child(even) .svc__media { order: 0; }
  .contact-grid { grid-template-columns: 1fr; }
  .form__row { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
  .gallery { grid-template-columns: 1fr; }
}


/* ==========================================================================
   ITERATION 2 — dark-band buttons, de-washed accents, richer motion
   ========================================================================== */

/* --- Dark-band buttons: secondary was invisible (dark on dark) --------- */
.cta .btn,
.section--dark .btn,
.leadblock .btn {
  background: var(--surface-base);
  color: var(--text-primary);
  border-color: var(--surface-base);
}
.cta .btn:hover,
.section--dark .btn:hover,
.leadblock .btn:hover {
  background: var(--accent-light);
  border-color: var(--accent-light);
  color: var(--surface-dark);
}
.cta .btn--ghost,
.section--dark .btn--ghost {
  background: transparent;
  color: var(--text-inverse);
  border-color: var(--text-inverse-dim);
}
.cta .btn--ghost:hover,
.section--dark .btn--ghost:hover {
  background: var(--surface-base);
  color: var(--text-primary);
  border-color: var(--surface-base);
}

/* --- De-wash: warm-neutral placeholders instead of faded pink ---------- */
.ph-tile {
  background: linear-gradient(135deg, var(--surface-base) 0%, var(--surface-subtle) 100%);
  border: 1px solid var(--border-strong);
}
.ph-tile__label { color: var(--text-secondary); }

.addon {
  background: var(--surface-subtle);
  border: 1px solid var(--border-strong);
  border-left: 3px solid var(--accent);
}

/* ==========================================================================
   Motion pass (CSS-first, all gated). Ideas adapted from jh3y + reactbits:
   Blur Text, Shiny Text, Spotlight Card, Aurora. Falls back to calm + static.
   ========================================================================== */
@media (prefers-reduced-motion: no-preference) {

  /* Entrance: blur + rise (reactbits "Blur Text") */
  .hero__text > *,
  .hero__bottom > *,
  .page-hero > * { animation: blur-rise 0.5s var(--ease-out) both; }
  .hero__text > *:nth-child(1), .page-hero > *:nth-child(1) { animation-delay: 0.02s; }
  .hero__text > *:nth-child(2), .page-hero > *:nth-child(2) { animation-delay: 0.07s; }
  .hero__text > *:nth-child(3), .page-hero > *:nth-child(3) { animation-delay: 0.12s; }
  .page-hero > *:nth-child(4) { animation-delay: 0.17s; }
  @keyframes blur-rise {
    from { opacity: 0; transform: translateY(0.9rem); filter: blur(6px); }
    to   { opacity: 1; transform: none; filter: blur(0); }
  }

  /* Button sheen sweep on hover (jh3y / reactbits "Shiny Text") */
  .btn { position: relative; overflow: hidden; }
  .btn::after {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(120deg, transparent 32%, rgba(255, 255, 255, 0.3) 50%, transparent 68%);
    transform: translateX(-120%);
    transition: transform var(--dur-slow) var(--ease-out);
    pointer-events: none;
  }
  .btn:hover::after { transform: translateX(120%); }

  /* Pointer-follow spotlight on cards (reactbits "Spotlight Card") */
  .card, .feature, .tier, .audience__item { position: relative; isolation: isolate; }
  .card::before, .feature::before, .tier::before, .audience__item::before {
    content: "";
    position: absolute; inset: 0;
    border-radius: inherit;
    background: radial-gradient(180px circle at var(--mx, 50%) var(--my, 50%),
      color-mix(in srgb, var(--accent) 20%, transparent), transparent 60%);
    opacity: 0;
    transition: opacity var(--dur-base) var(--ease-out);
    z-index: -1;
    pointer-events: none;
  }
  .card:hover::before, .feature:hover::before,
  .tier:hover::before, .audience__item:hover::before { opacity: 1; }

  /* Drifting aurora glow on dark CTA bands (reactbits "Aurora") */
  .cta { position: relative; overflow: hidden; }
  .cta::before {
    content: "";
    position: absolute; inset: -45%;
    background:
      radial-gradient(40% 40% at 30% 32%, color-mix(in srgb, var(--accent) 32%, transparent), transparent 70%),
      radial-gradient(38% 38% at 74% 66%, color-mix(in srgb, var(--secondary) 26%, transparent), transparent 70%);
    animation: cta-drift 20s var(--ease-in-out) infinite alternate;
    z-index: 0;
    pointer-events: none;
  }
  .cta__inner { position: relative; z-index: 1; }
  @keyframes cta-drift {
    to { transform: translate3d(5%, 4%, 0) rotate(7deg) scale(1.12); }
  }
}

/* color-mix fallback: if unsupported, the glow layers simply do not paint,
   leaving the solid dark band. No action needed. */

/* ==========================================================================
   Pull quote (founder statement on About)
   ========================================================================== */
.pullquote {
  max-width: var(--container-prose);
  margin-block: var(--space-8);
  padding-left: var(--space-6);
  border-left: 3px solid var(--accent);
  font-size: var(--text-lg);
  font-weight: var(--weight-medium);
  color: var(--text-primary);
  font-style: normal;
}

/* ==========================================================================
   Utility bar (sitewide, above the header)
   Thin contact strip: clickable email + phone + a short local descriptor.
   Espresso on linen text = high contrast; fixed height so it adds no CLS.
   ========================================================================== */
.utilitybar {
  background: var(--surface-dark);
  color: var(--text-inverse);
}
.utilitybar__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;          /* thin strip, content centered */
  text-align: center;
  gap: var(--space-1) var(--space-5);
  padding-block: var(--space-2);
  font-size: var(--text-sm);        /* >= 14px for readable, accessible contacts */
  letter-spacing: var(--tracking-wide);
}
.utilitybar__tag { color: var(--text-inverse); margin: 0; }
.utilitybar__contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-2) var(--space-5);
  margin: 0;
}
.utilitybar__contact a {
  color: var(--text-inverse);
  text-decoration: none;
}
.utilitybar__contact a:hover { text-decoration: underline; text-underline-offset: 3px; }
@media (max-width: 560px) {
  .utilitybar__tag { display: none; }   /* keep the actionable contacts centered, drop the descriptor */
}

/* ==========================================================================
   Compact lead block (shared "Start a project" capture, near page bottoms)
   Dark band to match the approved closing aesthetic. Intro + a 3-field
   Web3Forms form (reuses .field input styling, relabelled for dark).
   ========================================================================== */
.leadblock {
  background: var(--surface-dark-alt);
  color: var(--text-inverse);
}
.leadblock__inner {
  padding-block: var(--section-y-sm);
  display: grid;
  grid-template-columns: 1fr minmax(0, 460px);   /* form stays a tight, comfortable width */
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.leadblock__title { font-size: var(--text-xl); }
.leadblock__lead {
  margin-top: var(--space-3);
  color: var(--text-inverse-dim);
  font-size: var(--text-md);
  max-width: 42ch;
}
.leadform { display: grid; gap: var(--space-4); width: 100%; max-width: 460px; }
.leadform__row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-4); }
.leadform .field label { color: var(--text-inverse); }
.leadform .field .req { color: var(--accent-light); }
.leadform .field textarea { min-height: 4.5rem; }
.leadform .btn { justify-self: start; }
@media (max-width: 860px) {
  .leadblock__inner { grid-template-columns: 1fr; }   /* stack: intro then form */
  .leadform { max-width: 520px; }
}
@media (max-width: 520px) {
  .leadform__row { grid-template-columns: 1fr; }
}
