/* ==========================================================================
   Sego Web Design — main stylesheet
   --------------------------------------------------------------------------
   Reads every value from css/tokens.css. Sections are in page order.
   Mobile adjustments live at the bottom under one media query.
   ========================================================================== */

/* ---- Fonts (self-hosted, variable) ------------------------------------ */
@font-face {
  font-family: 'Lora';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('../fonts/lora-normal-400-700.woff2') format('woff2');
}
@font-face {
  font-family: 'Lora';
  font-style: italic;
  font-weight: 400 700;
  font-display: swap;
  src: url('../fonts/lora-italic-400-700.woff2') format('woff2');
}
@font-face {
  font-family: 'Public Sans';
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url('../fonts/publicsans-normal-300-700.woff2') format('woff2');
}

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

/* The hidden attribute must beat any display rule, or the form stays on
   screen after a successful send. */
[hidden] { display: none !important; }

html { scroll-behavior: smooth; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bone);
}

body {
  font-family: var(--sans);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--violet);
  text-decoration-color: rgba(92, 74, 125, .4);
  text-underline-offset: 3px;
}
a:hover { color: var(--violet-dark); }

::selection { background: var(--violet); color: var(--bone); }

input::placeholder, textarea::placeholder { color: var(--placeholder); opacity: 1; }

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

svg { display: block; }

:focus-visible {
  outline: 2px solid var(--violet);
  outline-offset: 2px;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -100px;
  z-index: 100;
  background: var(--ink);
  color: var(--bone);
  padding: 10px 16px;
  border-radius: var(--radius);
  font-weight: 600;
  text-decoration: none;
}
.skip-link:focus { top: 16px; color: var(--bone); }

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.wrap {
  max-width: var(--measure);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

/* ---- Keyframes ---------------------------------------------------------- */
@keyframes rise      { from { opacity: 0; transform: translateY(28px) } to { opacity: 1; transform: none } }
@keyframes drift     { from { transform: translateX(0) } to { transform: translateX(-50%) } }
@keyframes bloom     { 0%, 100% { transform: rotate(-4deg) } 50% { transform: rotate(4deg) } }
@keyframes spin      { to { transform: rotate(360deg) } }
@keyframes twinkle   { 0%, 100% { opacity: .15; transform: scale(.7) } 50% { opacity: 1; transform: scale(1) } }
@keyframes float     { 0%, 100% { transform: translateY(0) rotate(var(--tilt, 0deg)) } 50% { transform: translateY(-8px) rotate(var(--tilt, 0deg)) } }
@keyframes pulsering { 0% { box-shadow: 0 0 0 0 rgba(92, 74, 125, .45) } 70% { box-shadow: 0 0 0 14px rgba(92, 74, 125, 0) } 100% { box-shadow: 0 0 0 0 rgba(92, 74, 125, 0) } }
@keyframes fillbar   { 0% { width: 8% } 60% { width: 92% } 100% { width: 92% } }
@keyframes nudge     { 0%, 100% { transform: translateX(0) } 50% { transform: translateX(4px) } }
@keyframes dashmove  { to { stroke-dashoffset: -40 } }
@keyframes blinkText { 50% { visibility: hidden } }
@keyframes fadein    { from { opacity: 0; transform: translateY(16px) } to { opacity: 1; transform: none } }

/* Ambient loops. Each is one class so reduced-motion and mobile can switch
   them off together. */
.anim-bloom   { animation: bloom 9s var(--ease) infinite; transform-origin: 13px 13px; }
.anim-spin    { animation: spin 80s linear infinite; transform-origin: 100px 100px; }
.anim-spin-70 { animation-duration: 70s; }
.anim-float   { animation: float 9s var(--ease) infinite; }
.anim-float-7 { animation: float 7s var(--ease) 1s infinite; }
.anim-float-8 { animation: float 8s var(--ease) 2s infinite; }
.anim-nudge   { animation: nudge 2.4s var(--ease) infinite; }
.anim-dash    { animation: dashmove 4s linear infinite; }
.anim-pulse   { animation: pulsering 3s ease-out infinite; }
.anim-fill    { animation: fillbar 4s var(--ease) infinite; }
.anim-blink   { animation: blinkText 1.2s step-start infinite; }
.anim-drift   { animation: drift 36s linear infinite; }

.spark {
  fill: var(--violet);
  animation: twinkle 4.5s var(--ease) infinite;
  transform-box: fill-box;
  transform-origin: center;
}
.spark--late { animation: twinkle 5s var(--ease) 1.6s infinite; }
.spark--4    { animation-duration: 4s; }
.spark--late-1 { animation: twinkle 5s var(--ease) 1.4s infinite; }
.spark--late-2 { animation: twinkle 5s var(--ease) 1.8s infinite; }

/* Scroll-driven entrance. In browsers without animation-timeline support the
   zero-duration animation resolves to its end state, so nothing is hidden. */
.rise { animation: rise linear both; }
@supports (animation-timeline: view()) {
  .rise { animation-timeline: view(); animation-range: entry 0% entry 35%; }
  .rise--30 { animation-range: entry 0% entry 30%; }
  .rise--40 { animation-range: entry 0% entry 40%; }
  .rise--45 { animation-range: entry 0% entry 45%; }
}

.fade-in      { animation: fadein .7s ease-out both; }
.fade-in-slow { animation: fadein 1.1s ease-out both; }

/* ---- Grain overlay ------------------------------------------------------ */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 50;
  opacity: .35;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3CfeColorMatrix values='0 0 0 0 0.18 0 0 0 0 0.15 0 0 0 0 0.12 0 0 0 0.05 0'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---- Shared pieces ------------------------------------------------------ */
.lily { flex: none; }

.btn {
  display: inline-block;
  background: var(--violet);
  color: var(--bone);
  text-decoration: none;
  font-family: inherit;
  font-weight: 600;
  font-size: 16.5px;
  padding: 16px 30px;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background .2s, transform .2s, opacity .2s;
}
.btn:hover { background: var(--violet-dark); color: var(--bone); transform: translateY(-2px); }

.eyebrow {
  margin: 0 0 22px;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--sage);
}

.num {
  margin: 0 0 10px;
  font-family: var(--serif);
  font-size: var(--num);
  line-height: 1;
  font-weight: 400;
  color: var(--rule);
}
/* The numeral is drawn from data-num so it stays a decoration, not audited text. */
.num::before { content: attr(data-num); }
.num--sand { color: var(--stroke); }
.num--ink  { color: var(--ink-rule); }

.h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: var(--h2);
  letter-spacing: -0.015em;
  margin: 0;
}

.prose {
  font-size: 17.5px;
  line-height: 1.7;
  color: var(--prose);
}
.prose p { margin: 0 0 20px; }
.prose p:last-child { margin-bottom: 0; }

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  margin: 0 0 44px;
}

.icon-circle {
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--violet);
}

.ring {
  position: absolute;
  inset: 0;
  margin: auto;
  height: auto;
  pointer-events: none;
}
.ring circle { fill: none; stroke: var(--stroke-deep); stroke-width: .8; stroke-dasharray: 2 8; }

/* Floating decorative cards */
.chip {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--ink);
  color: var(--bone);
  border-radius: 30px;
  padding: 9px 16px;
  --tilt: -2deg;
}
.chip span:last-child { font-size: 11.5px; font-weight: 600; letter-spacing: .02em; }
.chip .dot { width: 7px; height: 7px; border-radius: 50%; background: #9CB07E; }

.card-float {
  position: absolute;
  background: var(--card);
  border: 1px solid var(--stroke);
  border-radius: 6px;
  padding: 12px 16px;
  --tilt: 2.5deg;
}
.card-float p { margin: 0; font-size: 11.5px; font-weight: 600; }
.card-float p + p { margin-top: 2px; font-size: 10.5px; color: var(--muted); font-weight: 400; }
.stars { color: var(--gold); font-size: 13px; letter-spacing: 2px; margin-bottom: 4px; }

/* ---- Header ------------------------------------------------------------- */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 20px;
  padding-bottom: 20px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  text-decoration: none;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 19px;
  letter-spacing: -0.01em;
}
.brand:hover { color: var(--ink); }
.nav { display: flex; align-items: center; gap: 22px; font-size: 14.5px; }
.nav__link { color: var(--ink); text-decoration: none; }
.nav__link:hover { color: var(--violet); }
.nav__cta {
  color: var(--bone);
  background: var(--ink);
  text-decoration: none;
  padding: 9px 18px;
  border-radius: var(--radius);
  font-weight: 600;
  transition: background .2s;
}
.nav__cta:hover { background: var(--violet-dark); color: var(--bone); }

/* ---- Hero --------------------------------------------------------------- */
.hero {
  padding-top: 80px;
  padding-bottom: 72px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 48px;
}
.hero__copy { flex: 1 1 520px; max-width: 900px; }
.hero__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: var(--h1);
  line-height: 1.04;
  letter-spacing: -0.025em;
  margin: 0 0 30px;
  text-wrap: balance;
}
.hero__title em { color: var(--violet); font-style: italic; }
.hero__lede {
  font-size: var(--lede);
  line-height: 1.65;
  max-width: 580px;
  margin: 0 0 40px;
  color: var(--body);
}
.hero__lede b { color: var(--violet); }
.hero__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 22px; }
.hero__secondary { font-size: 15.5px; }

.hero__art { flex: 1 1 320px; display: flex; justify-content: center; }
.hero__stage { position: relative; width: min(400px, 100%); padding: 44px 8px 40px; }
.hero__stage .ring { width: 112%; left: -6%; top: 0; bottom: 0; }

/* Mini client site (browser mock) */
.minisite {
  position: relative;
  background: var(--card);
  border: 1px solid var(--stroke);
  border-radius: 8px;
  overflow: hidden;
  --tilt: 0deg;
}
.minisite__bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  border-bottom: 1px solid var(--rule);
  background: var(--sand);
}
.minisite__bar i { width: 8px; height: 8px; border-radius: 50%; background: var(--stroke); }
.minisite__url {
  margin-left: 10px;
  background: var(--card);
  border-radius: 20px;
  padding: 3px 14px;
  font-size: 10.5px;
  color: var(--muted);
  letter-spacing: .02em;
}
.minisite__body { padding: 20px 22px 22px; }
.minisite__nav { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.mock-brand { display: flex; align-items: center; gap: 6px; }
.mock-brand span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--green-dark);
}
.mock-lines { display: flex; gap: 10px; }
.mock-lines i { width: 22px; height: 4px; border-radius: 2px; background: var(--rule); }
.minisite__title {
  margin: 0 0 12px;
  font-size: 19px;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.015em;
  color: #33302B;
}
.minisite__photo { height: 170px; border-radius: 5px; margin-bottom: 14px; overflow: hidden; }
.minisite__photo img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 23%; }
.minisite__actions { display: flex; align-items: center; gap: 12px; }
.mock-btn {
  background: var(--green);
  color: var(--bone);
  font-size: 11.5px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 30px;
}
.mock-tel {
  font-size: 11px;
  color: var(--green);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.hero__review { top: 52px; right: -14px; }
.hero__chip { bottom: 8px; left: -10px; }

/* ---- Marquee ------------------------------------------------------------ */
.marquee {
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  overflow: hidden;
  padding: 14px 0;
  background: var(--bone);
}
.marquee__track { display: flex; width: max-content; }
.marquee__track span {
  display: flex;
  align-items: center;
  gap: 28px;
  padding-right: 28px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}
.marquee__track span::before { content: '✦'; color: var(--violet); font-size: 10px; }

/* ---- 01 What I usually find -------------------------------------------- */
.section--sand { background: var(--sand); }
.section--rule { border-top: 1px solid var(--rule); }
.section-pad { padding-top: 88px; padding-bottom: 88px; }

.find {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}
.find .prose { max-width: 560px; align-self: end; }

/* ---- 02 What you get ---------------------------------------------------- */
.get {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 56px;
  align-items: center;
}
.get__list { display: flex; flex-direction: column; max-width: 800px; }
.get__list .h2 { margin-bottom: 40px; }
.deliverable {
  display: flex;
  gap: 22px;
  align-items: center;
  padding: 22px 0;
  border-top: 1px solid var(--rule);
  font-size: 18px;
  line-height: 1.55;
  transition: padding-left .25s;
}
.deliverable:hover { padding-left: 10px; }
.deliverable .icon-circle { width: 44px; height: 44px; border: 1.5px solid var(--stroke); }
.deliverable svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

.get__art { display: flex; justify-content: center; }
.get__stage { position: relative; padding: 20px 36px 28px; }
.get__stage .ring { width: 118%; left: -9%; top: 0; bottom: 0; }

.phone {
  position: relative;
  width: min(300px, 72vw);
  border: 1.5px solid var(--stroke-deep);
  border-radius: 30px;
  background: var(--card);
  padding: 22px 20px 20px;
  --tilt: 1.5deg;
}
.phone__notch { width: 52px; height: 6px; border-radius: 3px; background: var(--rule); margin: 0 auto 18px; }
.phone__nav { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.phone__nav .mock-brand span { font-size: 9.5px; letter-spacing: .08em; }
.mock-burger { display: flex; flex-direction: column; gap: 3px; }
.mock-burger i { width: 16px; height: 2.5px; border-radius: 2px; background: var(--stroke); }
.phone__title {
  margin: 0 0 12px;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: #33302B;
}
.phone__photo { height: 128px; border-radius: 8px; overflow: hidden; margin-bottom: 14px; }
.phone__photo img { width: 100%; height: 100%; object-fit: cover; }
.phone__actions { display: flex; gap: 8px; margin-bottom: 14px; }
.phone__actions span {
  flex: 1;
  font-size: 11px;
  font-weight: 600;
  text-align: center;
  border-radius: 24px;
}
.phone__call { background: var(--green); color: var(--bone); padding: 10px 0; }
.phone__book { border: 1.5px solid var(--green); color: var(--green); padding: 9px 0; }
.phone__speed { border-top: 1px solid var(--rule); padding-top: 12px; }
.phone__speed-row { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 6px; }
.phone__speed-label { font-size: 9.5px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
.phone__speed-val { font-size: 11px; font-weight: 700; color: var(--green); }
.phone__bar { height: 6px; border-radius: 3px; background: var(--sand); overflow: hidden; }
.phone__bar i { display: block; height: 100%; border-radius: 3px; background: var(--green); }

.get__listing { top: 148px; right: -38px; display: flex; align-items: center; gap: 10px; padding: 10px 14px; }
.get__listing svg { width: 18px; height: 18px; fill: none; stroke: var(--violet); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.get__listing p { font-size: 11px; }
.get__listing p + p { margin-top: 1px; font-size: 10px; color: var(--sage); }
.get__repo { bottom: -2px; left: -30px; padding: 9px 15px; }
.get__repo svg { width: 14px; height: 14px; fill: none; stroke: var(--bone); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.get__repo span:last-child { font-size: 11px; }

/* ---- 03 Recent work ----------------------------------------------------- */
.work__sub { margin: 0; font-size: 16px; color: var(--muted); }
.work__head .h2 { margin-bottom: 12px; }

.ba-graphic { position: relative; padding: 10px 26px 10px 10px; }
.ba-graphic__row { display: flex; align-items: center; gap: 18px; }
.ba-spark { position: absolute; pointer-events: none; }
.ba-spark--tl { top: -10px; left: -20px; width: 34px; height: 34px; }
.ba-spark--br { bottom: -8px; right: -4px; width: 28px; height: 28px; }
.ba-card { border-radius: 8px; padding: 12px; }
.ba-card--before { width: 120px; border: 1.5px solid var(--stroke); background: var(--sand); --tilt: -2deg; }
.ba-card--after  { width: 132px; border: 1.5px solid var(--stroke-deep); background: var(--card); --tilt: 2deg; }
.ba-card p { margin: 0 0 8px; font-size: 8.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.ba-card--before p { color: var(--border); }
.ba-card--after p { color: var(--green); }
.ba-line { height: 7px; border-radius: 3px; background: #D5C9B0; margin-bottom: 5px; }
.ba-line--w88 { width: 88%; }
.ba-line--w70 { width: 70%; }
.ba-line--w80 { width: 80%; margin-bottom: 10px; }
.ba-hatch { height: 26px; border-radius: 4px; background: repeating-linear-gradient(-45deg, #D5C9B0 0 6px, #CDBFA3 6px 12px); }
.ba-line--green { height: 8px; width: 76%; background: var(--green); margin-bottom: 6px; }
.ba-line--l1 { height: 6px; width: 90%; background: var(--rule); }
.ba-line--l2 { height: 6px; width: 64%; background: var(--rule); margin-bottom: 10px; }
.ba-btns { display: flex; gap: 6px; }
.ba-btns span { flex: 1; height: 16px; border-radius: 10px; }
.ba-btns span:first-child { background: var(--green); }
.ba-btns span:last-child { border: 1.2px solid var(--green); }
.arrow { flex: none; }
.arrow path { fill: none; stroke: var(--violet); stroke-linecap: round; stroke-linejoin: round; }

.cases { display: flex; flex-direction: column; gap: 80px; }
.case {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px 48px;
  align-items: center;
}
.case__copy { max-width: 420px; }
.case__copy .icon-circle {
  width: 52px;
  height: 52px;
  border: 1.5px solid var(--stroke-deep);
  background: var(--card);
  margin-bottom: 16px;
}
.case__copy .icon-circle svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.case__title { margin: 0 0 10px; font-family: var(--serif); font-size: 22px; font-weight: 600; color: var(--ink); }
.case__desc { margin: 0; font-size: 16px; line-height: 1.65; color: var(--body); }
.case__pair { display: flex; gap: 16px; align-items: center; justify-content: center; flex-wrap: wrap; }
.shot { display: flex; flex-direction: column; gap: 10px; align-items: center; }
.shot__label { font-size: 11px; font-weight: 700; letter-spacing: .12em; }
.shot__label--before { color: var(--border); }
.shot__label--after { color: var(--green); }

/* Browser frame around each mock */
.frame {
  width: 216px;
  border: 1.5px solid var(--stroke);
  border-radius: 16px;
  overflow: hidden;
  background: #FFF;
  box-shadow: 0 20px 40px -24px rgba(46, 38, 32, .45);
}
.frame--dark { background: #26262F; }
.frame__bar {
  display: flex;
  align-items: center;
  gap: 5px;
  background: #E8E2D2;
  padding: 7px 9px;
  border-bottom: 1px solid #D5CBB4;
}
.frame--dark .frame__bar { background: #1D1D24; border-bottom-color: #33333E; }
.frame__dots { display: flex; gap: 3px; }
.frame__dots i { width: 6px; height: 6px; border-radius: 50%; }
.frame__dots i:nth-child(1) { background: #C97B6A; }
.frame__dots i:nth-child(2) { background: #D8BE7A; }
.frame__dots i:nth-child(3) { background: #8AA98C; }
.frame__url {
  flex: 1;
  background: #F6F2E7;
  border-radius: 9px;
  font-size: 7.5px;
  color: var(--border);
  padding: 3px 9px;
  font-family: monospace;
  white-space: nowrap;
  overflow: hidden;
}
.frame--dark .frame__url { background: #2C2C36; color: #8B8AA0; }
.frame__page { height: 352px; overflow: hidden; display: flex; flex-direction: column; position: relative; }
.frame__page > div { display: flex; flex-direction: column; flex: 1; }
.frame__page p { margin: 0; }
.frame__page img { object-fit: cover; }

/* Mock: Riverbend before (2000s brochure) */
.m-riv-old { background: #FFF; font-family: 'Times New Roman', serif; }
.m-riv-old__hd { background: linear-gradient(#4A7BB5, #2A4E7E); padding: 8px 9px; }
.m-riv-old__hd p:first-child { font-size: 13px; font-weight: 700; color: #FFF; text-shadow: 1px 1px 0 #1A3050; }
.m-riv-old__hd p:last-child { margin-top: 1px; font-size: 8px; font-style: italic; color: #CFE0F5; }
.m-oldnav { background: #D8D8D8; border-bottom: 1px solid #999; padding: 4px 9px; font-size: 8px; color: #0000CC; }
.m-riv-old__body { padding: 8px 9px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.m-riv-old__welcome { text-align: center; font-size: 11.5px; font-weight: 700; color: #660099; }
.m-riv-old__banner { background: #FFFF99; border: 1px dashed #CC9900; padding: 3px; text-align: center; font-size: 8px; color: #663300; }
.m-old-fig { text-align: center; }
.m-old-fig img { margin: 0 auto; }
.m-riv-old__fig img { width: 88%; height: 96px; border: 2px groove #999; }
.m-old-fig p { margin-top: 1px; font-size: 7px; font-style: italic; color: #555; }
.m-old-text { font-size: 8px; line-height: 1.5; color: #333; text-align: justify; }
.m-riv-old__call { text-align: center; font-size: 10px; font-weight: 700; color: #CC0000; }
.m-riv-old__btns { margin-top: auto; display: flex; justify-content: center; gap: 6px; padding-bottom: 2px; }
.m-riv-old__btns span { font-family: Arial, sans-serif; font-size: 8px; background: #D4D0C8; border: 2px outset #FFF; padding: 2px 8px; color: #000; }

/* Mock: Riverbend after */
.m-riv-new { background: #FDFBF5; }
.m-riv-new__hd { display: flex; align-items: center; gap: 5px; padding: 10px 11px 0; }
.m-riv-new__hd i { width: 8px; height: 8px; border-radius: 50%; background: var(--green); }
.m-riv-new__hd b { font-family: var(--serif); font-size: 9.5px; font-weight: 600; color: var(--ink); }
.m-riv-new__hd span { margin-left: auto; font-size: 7.5px; font-weight: 700; color: var(--bone); background: var(--green); padding: 3px 9px; border-radius: 10px; }
.m-riv-new__body { padding: 12px 11px 11px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.m-riv-new__title { font-family: var(--serif); font-size: 17px; line-height: 1.2; letter-spacing: -0.01em; color: var(--ink); }
.m-riv-new__sub { font-size: 8.5px; line-height: 1.55; color: var(--muted); }
.m-riv-new__cta { display: flex; align-items: center; gap: 7px; }
.m-riv-new__cta b { font-size: 8px; font-weight: 700; color: var(--bone); background: var(--green); padding: 5px 11px; border-radius: 14px; }
.m-riv-new__cta u { font-size: 8px; font-weight: 600; color: var(--green); }
.m-riv-new__img { width: 100%; height: 150px; border-radius: 8px; }
.m-reviews { margin-top: auto; font-size: 8px; color: var(--border); }
.m-reviews b { color: #B96D45; font-weight: 400; }

/* Mock: Whitmore before */
.m-whit-old { background: #EDEDED; font-family: 'Times New Roman', serif; }
.m-whit-old__hd { background: #5C1F1F; padding: 9px; text-align: center; }
.m-whit-old__hd p:first-child { font-size: 8.5px; font-weight: 700; letter-spacing: .06em; color: #E8C88A; }
.m-whit-old__hd p:last-child { margin-top: 1px; font-size: 11.5px; font-weight: 700; color: #E8C88A; }
.m-whit-old__nav { background: #FFF; border-bottom: 1px solid #AAA; padding: 4px; text-align: center; font-size: 7.5px; color: #0000CC; }
.m-whit-old__body { padding: 9px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.m-whit-old__fig img { width: 74%; height: 82px; border: 3px ridge #AAA; }
.m-whit-old__text { color: #222; line-height: 1.55; }
.m-whit-old__tel { text-align: center; font-size: 8px; font-weight: 700; color: #5C1F1F; }
.m-whit-old__foot { margin-top: auto; font-size: 7.5px; color: #777; text-align: center; }

/* Mock: Whitmore after (dark) */
.m-whit-new { background: #26262F; }
.m-whit-new__hd { padding: 10px 11px 8px; font-family: var(--serif); font-size: 9px; font-weight: 600; letter-spacing: .08em; color: #D8CBA8; }
.m-whit-new__img { width: 100%; height: 100px; filter: brightness(.85); }
.m-whit-new__body { padding: 11px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.m-whit-new__title { font-family: var(--serif); font-size: 16.5px; line-height: 1.25; letter-spacing: -0.01em; color: #F0EBDD; }
.m-whit-new__sub { font-size: 8.5px; line-height: 1.55; color: #A9A7B8; }
.m-whit-new__cta { align-self: flex-start; font-size: 8px; font-weight: 700; color: #26262F; background: #D8CBA8; padding: 5px 11px; border-radius: 2px; }
.m-whit-new__tags { display: flex; gap: 5px; }
.m-whit-new__tags span { font-size: 7.5px; color: #D8CBA8; border: 1px solid #4A4A58; padding: 2px 8px; border-radius: 10px; }
.m-whit-new__meta { font-size: 8px; color: #8B8AA0; }
.m-whit-new__quote { margin-top: auto; font-size: 7.5px; line-height: 1.5; color: #8B8AA0; border-top: 1px solid #3A3A46; padding-top: 6px; }

/* Mock: AAA before */
.m-aaa-old { background: #FFF; font-family: Arial, sans-serif; }
.m-aaa-old__hd { background: #FFF200; padding: 7px 9px; border-bottom: 3px solid #E00; }
.m-aaa-old__hd p:first-child { font-size: 11px; font-weight: 900; color: #E00; }
.m-aaa-old__hd p:last-child { margin-top: 1px; font-size: 7px; font-weight: 700; color: #000; }
.m-aaa-old__body { padding: 8px 9px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.m-aaa-old__list { font-size: 8px; font-weight: 700; color: #0000CC; }
.m-aaa-old__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; }
.m-aaa-old__grid img { width: 100%; height: 52px; border: 1px solid #666; }
.m-aaa-old__note { font-size: 7px; color: #333; }
.m-aaa-old__call { text-align: center; font-size: 10.5px; font-weight: 900; color: #E00; }
.m-aaa-old__quotes { border: 1px solid #999; background: #F5F5DC; padding: 4px 6px; }
.m-aaa-old__quotes p { font-size: 7.5px; line-height: 1.5; color: #333; }
.m-aaa-old__mail { text-align: center; font-size: 8px; color: #0000CC; }
.m-aaa-old__foot { margin-top: auto; text-align: center; font-size: 7px; color: #777; font-family: 'Courier New', monospace; }

/* Mock: Hearth & Frame after */
.m-hf-new { background: #FDFBF5; }
.m-hf-new__hd { background: linear-gradient(150deg, var(--green-dark), var(--green)); padding: 10px 11px; }
.m-hf-new__hd p:first-child { font-family: var(--serif); font-size: 9px; font-weight: 600; color: #DDE5DD; }
.m-hf-new__hd p:last-child { margin-top: 5px; font-family: var(--serif); font-size: 15px; line-height: 1.25; letter-spacing: -0.01em; color: var(--card); }
.m-hf-new__body { padding: 10px 11px 11px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.m-hf-new__img { width: 100%; height: 110px; border-radius: 8px; }
.m-hf-new__projects { display: flex; flex-direction: column; gap: 4px; }
.m-hf-new__projects div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid var(--rule);
  border-radius: 5px;
  padding: 4px 8px;
  background: #FFF;
}
.m-hf-new__projects b { font-size: 8px; font-weight: 600; color: var(--ink); }
.m-hf-new__projects span { font-size: 7.5px; color: var(--border); }
.m-hf-new .m-reviews { margin-top: 0; }
.m-hf-new__cta { display: flex; align-items: center; gap: 6px; margin-top: auto; }
.m-hf-new__cta b { font-size: 8px; font-weight: 700; color: var(--card); background: #B96D45; padding: 5px 11px; border-radius: 14px; }
.m-hf-new__cta span { font-size: 8px; font-weight: 600; color: var(--green); }

/* ---- 04 How it works ---------------------------------------------------- */
.path-graphic { position: relative; padding: 8px 6px; }
.path-graphic svg { display: block; }
.path-graphic .path { fill: none; stroke: var(--stroke-deep); stroke-width: 1.5; stroke-dasharray: 3 7; }
.path-graphic .node { fill: var(--sand); stroke: var(--stroke-deep); stroke-width: 1.5; }
.path-graphic .runner { fill: var(--violet); }
.path-graphic .done circle { fill: var(--green); }
.path-graphic .done path { fill: none; stroke: var(--bone); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.path-graphic .lbl {
  position: absolute;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.path-graphic .lbl--start { left: -6px; bottom: -6px; color: var(--border); }
.path-graphic .lbl--live { right: -10px; top: -2px; color: var(--green); }

.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 0 40px; }
.step { border-top: 2px solid var(--ink); padding: 22px 0 28px; }
.step__head { display: flex; align-items: center; gap: 14px; margin: 0 0 14px; }
.step .icon-circle { width: 46px; height: 46px; border: 1.5px solid var(--stroke-deep); background: var(--card); }
.step .icon-circle svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.step__num { font-family: var(--serif); font-size: 38px; font-weight: 400; color: var(--violet); line-height: 1; }
.step__title { margin: 0 0 10px; font-family: var(--serif); font-size: 20px; font-weight: 600; }
.step__body { margin: 0; font-size: 16.5px; line-height: 1.65; color: var(--body); }

/* ---- 05 What it costs --------------------------------------------------- */
.pricing { padding-top: 96px; padding-bottom: 96px; }
.tag-graphic { position: relative; padding: 10px 18px; }
.tag-graphic__row { display: flex; align-items: center; gap: 16px; }
.tag-graphic .ba-spark--tl { top: -14px; left: -14px; }
.tag-graphic .ba-spark--br { bottom: -10px; right: -10px; }
.tag { --tilt: -3deg; }
.tag .shape { fill: var(--card); stroke: var(--stroke-deep); stroke-width: 1.5; }
.tag .hole { fill: var(--sand); stroke: var(--stroke-deep); stroke-width: 1.5; }
.tag .t1 { font-family: var(--serif); font-size: 19px; font-weight: 600; fill: var(--ink); }
.tag .t2 { font-size: 8.5px; font-weight: 700; letter-spacing: 1.2px; fill: var(--border); }
.tag-pills { display: flex; flex-direction: column; gap: 8px; --tilt: 2deg; }
.tag-pills div {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--card);
  border: 1px solid var(--stroke);
  border-radius: 20px;
  padding: 7px 13px;
}
.tag-pills i { width: 9px; height: 9px; border-radius: 50%; }
.tag-pills i.full { background: var(--green); }
.tag-pills i.half { border: 1.5px solid var(--green); }
.tag-pills span { font-size: 10.5px; font-weight: 600; color: var(--green-dark); white-space: nowrap; }

.tiers { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; align-items: stretch; }
.tier {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border: 1px solid var(--rule);
  border-top: 3px solid var(--stroke);
  border-radius: 4px;
  padding: 30px 28px 34px;
  background: var(--card);
  transition: transform .25s, border-color .25s;
}
.tier:hover { transform: translateY(-6px); border-color: var(--violet); }
.tier--featured {
  border: 1.5px solid var(--violet);
  border-top: 3px solid var(--violet);
  padding-top: 38px;
  background: var(--paper);
  box-shadow: 0 14px 34px -18px rgba(46, 38, 32, .35);
}
.tier__badge {
  position: absolute;
  top: -13px;
  left: 28px;
  background: var(--violet);
  color: var(--bone);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 20px;
}
.tier__name { font-family: var(--serif); font-size: 21px; font-weight: 600; }
.tier__price { font-family: var(--serif); font-size: var(--price); font-weight: 500; letter-spacing: -0.02em; line-height: 1; }
.tier__body { margin: 0; font-size: 16px; line-height: 1.65; color: var(--body); flex: 1; }
.tier__time { margin: 0; font-size: 13.5px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--sage); }
.tier--featured .tier__time { color: var(--violet); }
.pricing__note { margin: 36px 0 0; font-size: 16px; color: var(--body); }

/* ---- 06 After it launches ----------------------------------------------- */
.section--ink { background: var(--ink); color: var(--bone); }
.after { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 48px; }
.after .h2 { color: var(--bone); margin-bottom: 24px; }
.after__lede { margin: 0; font-size: 17px; line-height: 1.7; color: var(--ink-copy); max-width: 460px; }
.after__plans { display: flex; flex-direction: column; align-self: end; }
.plan { border-top: 1px solid var(--ink-rule); padding: 24px 0; }
.plan__price { margin: 0 0 8px; font-family: var(--serif); font-size: 28px; color: var(--bone); }
.plan__body { margin: 0; font-size: 15.5px; line-height: 1.6; color: var(--ink-muted); }

/* ---- 07 Who this works for ---------------------------------------------- */
.fit {
  padding-top: 150px;
  padding-bottom: 150px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 72px;
  align-items: center;
}
.fit .h2 { margin-bottom: 28px; }
.fit .prose { max-width: 520px; }
.fit__art { display: flex; justify-content: center; }
.fit__stage { position: relative; width: min(400px, 88vw); aspect-ratio: 1; }
.fit__stage .ring { inset: -6%; width: 112%; height: 112%; }
.fit__core {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 118px;
  height: 118px;
  border-radius: 50%;
  background: var(--green);
  color: var(--bone);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-align: center;
  box-shadow: 0 16px 36px -18px rgba(46, 38, 32, .5);
}
.fit__core svg { width: 26px; height: 26px; fill: none; stroke: var(--bone); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.fit__core span { font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.pill {
  position: absolute;
  background: var(--card);
  border: 1px solid var(--stroke);
  border-radius: 28px;
  padding: 12px 24px;
  font-size: 15px;
  font-weight: 600;
  color: var(--green-dark);
  white-space: nowrap;
}
.pill--1 { top: 7%; left: 50%; --tilt: -2deg; animation: float 8s var(--ease) infinite; }
.pill--2 { top: 28%; right: -2%; --tilt: 2deg; animation: float 7s var(--ease) .8s infinite; }
.pill--3 { bottom: 24%; right: 1%; --tilt: -2.5deg; animation: float 9s var(--ease) 1.6s infinite; }
.pill--4 { bottom: 6%; left: 50%; --tilt: 2deg; animation: float 8.5s var(--ease) 2.4s infinite; }
.pill--5 { bottom: 24%; left: 0; --tilt: -2deg; animation: float 7.5s var(--ease) 3.2s infinite; }
.pill--6 { top: 28%; left: -2%; --tilt: 2.5deg; animation: float 9.5s var(--ease) 4s infinite; }
/* The float keyframe owns `transform`, so the centering shift uses the
   separate `translate` property and survives the animation. */
.pill--1, .pill--4 { translate: -50% 0; }

/* ---- 08 Who you're actually hiring -------------------------------------- */
.about {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 48px;
  align-items: center;
}
.about__photo { max-width: 380px; }
.about__photo img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; border-radius: 4px; }
.about .h2 { margin-bottom: 24px; }
.about .prose { max-width: 520px; }

/* ---- 09 Questions people ask -------------------------------------------- */
.faq-head { margin-bottom: 36px; }
.bubbles { position: relative; padding: 12px 20px; }
.bubbles__col { display: flex; flex-direction: column; gap: 12px; align-items: flex-start; }
.bubbles .ba-spark--tl { top: -12px; left: -10px; width: 32px; height: 32px; }
.bubbles .ba-spark--br { bottom: -8px; right: -6px; width: 26px; height: 26px; }
.bubble {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
}
.bubble--q { background: var(--card); border: 1px solid var(--stroke); border-radius: 18px 18px 18px 4px; --tilt: -1.5deg; }
.bubble--a { align-self: flex-end; background: var(--green); border-radius: 18px 18px 4px 18px; --tilt: 1.5deg; box-shadow: 0 12px 26px -16px rgba(46, 38, 32, .5); animation: float 7s var(--ease) 1.4s infinite; }
.bubble__q {
  flex: none;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1.5px solid var(--stroke-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 600;
  color: var(--violet);
}
.bubble__lines { display: flex; flex-direction: column; gap: 4px; }
.bubble__lines i { height: 6px; border-radius: 3px; background: var(--rule); }
.bubble__lines .w96 { width: 96px; }
.bubble__lines .w64 { width: 64px; }
.bubble__lines .w110 { width: 110px; }
.bubble__lines .w72 { width: 72px; }
.bubble--a .bubble__lines i { background: #7E9080; }
.bubble--a svg { flex: none; width: 18px; height: 18px; fill: none; stroke: var(--bone); stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }

.faqs { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 0 56px; }
.faq { border-top: 1px solid var(--rule); padding: 22px 0 26px; }
.faq__q { margin: 0 0 8px; font-weight: 600; font-size: 16.5px; }
.faq__a { margin: 0; font-size: 15.5px; line-height: 1.65; color: var(--body); }

/* ---- 10 Contact --------------------------------------------------------- */
.contact {
  padding-top: 140px;
  padding-bottom: 150px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 64px 72px;
  align-items: center;
}
.contact__copy { max-width: 480px; }
.contact__copy .lily { margin-bottom: 26px; }
.contact__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: var(--h2-lg);
  letter-spacing: -0.02em;
  margin: 0 0 22px;
  text-wrap: balance;
  line-height: 1.15;
}
.contact__lede { margin: 0 0 28px; font-size: 17.5px; line-height: 1.65; color: var(--body); }
.contact__form-col { max-width: 460px; width: 100%; }

.form { display: flex; flex-direction: column; gap: 20px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field label { font-size: 14px; font-weight: 600; color: var(--body); }
.field input, .field textarea {
  font-size: 16px;
  font-family: inherit;
  color: var(--ink);
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 13px 15px;
  min-height: 48px;
  width: 100%;
}
.field textarea { resize: vertical; min-height: 72px; }
.field input:focus-visible, .field textarea:focus-visible {
  outline: 2px solid var(--violet);
  outline-offset: 1px;
  border-color: var(--violet);
}
.field input[aria-invalid="true"], .field textarea[aria-invalid="true"] { border-color: var(--error); }
.field__error { margin: 0; font-size: 13.5px; color: var(--error); }
.field__error:empty { display: none; }

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.form__alert {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--error);
  border: 1px solid var(--error-line);
  border-radius: var(--radius);
  background: var(--error-bg);
  padding: 12px 15px;
}
.form__alert a { color: var(--error); font-weight: 600; }

.form__submit {
  align-self: flex-start;
  font-size: 17px;
  padding: 16px 32px;
  min-height: 52px;
}
.form__submit:disabled { opacity: .65; cursor: default; transform: none; }
.form__submit:focus-visible { outline-offset: 2px; }

.form__success {
  border: 1.5px solid var(--stroke-deep);
  border-radius: 4px;
  background: var(--card);
  padding: 36px 32px;
}
.form__success svg { width: 30px; height: 30px; fill: none; stroke: var(--green); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; margin-bottom: 14px; }
.form__success p { margin: 0; font-family: var(--serif); font-size: 21px; line-height: 1.45; color: var(--ink); }

.contact__alt { margin: 26px 0 0; font-size: 15.5px; line-height: 1.6; color: var(--muted); }
.contact__alt a { color: var(--violet); font-weight: 600; }
.contact__alt .tel { white-space: nowrap; }

/* ---- Sticky CTA (mobile only, shown by JS) ------------------------------ */
.sticky-cta {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: rgba(243, 237, 225, .94);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-top: 1px solid var(--rule);
  animation: fadein .3s ease-out both;
}
.sticky-cta .btn { display: block; text-align: center; padding: 15px 20px; }
.sticky-cta .btn:hover { transform: none; }

/* ---- Footer ------------------------------------------------------------- */
.site-footer { border-top: 1px solid var(--rule); background: var(--sand); }
.site-footer .wrap {
  padding-top: 24px;
  padding-bottom: 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  font-size: 13.5px;
  color: var(--muted);
}
.site-footer .brand { font-family: inherit; font-weight: 400; font-size: inherit; color: inherit; gap: 9px; }
.footer__links { display: flex; gap: 18px; flex-wrap: wrap; }
.footer__links a { color: var(--muted); }
.footer__links a:hover { color: var(--violet); }

/* ---- Legal page --------------------------------------------------------- */
.legal { max-width: 680px; padding-top: 64px; padding-bottom: 120px; }
.legal h1 { font-family: var(--serif); font-weight: 500; font-size: var(--h2-lg); letter-spacing: -0.02em; line-height: 1.15; margin: 0 0 12px; }
.legal .updated { margin: 0 0 40px; font-size: 14px; color: var(--muted); }
.legal h2 { font-family: var(--serif); font-weight: 500; font-size: 24px; margin: 40px 0 12px; }
.legal p, .legal li { font-size: 17px; line-height: 1.7; color: var(--prose); }
.legal p { margin: 0 0 18px; }

/* ==========================================================================
   Mobile (matches the "Sego Homepage Mobile" design)
   ========================================================================== */
@media (max-width: 720px) {
  .nav__link { display: none; }
  .nav__cta { padding: 13px 22px; }

  .hero__title { font-size: clamp(31px, 9vw, 42px); }
  .hero__actions { flex-direction: column; align-items: stretch; gap: 16px; }
  .hero__actions .btn { display: block; text-align: center; }
  .hero__secondary { text-align: center; padding: 8px 0; }
  .hero__stage { padding: 28px 0; }
  .hero__stage .ring { width: 100%; left: 0; }
  .hero__review { top: 10px; right: 10px; }
  .hero__chip { left: 10px; }

  .num { font-size: 44px; color: var(--stroke-deep); }
  .num--sand { color: #A08F63; }
  .num--ink { color: var(--ink-rule); }

  .get__stage { padding: 20px 0 28px; }
  .get__stage .ring { width: 100%; left: 0; }
  .get__listing { right: 0; }
  .get__repo { left: 0; }

  .ba-graphic { padding: 10px 4px; max-width: 100%; }
  .case__pair { flex-direction: column; gap: 14px; }
  .case__pair .arrow { transform: rotate(90deg); margin: 4px 0; }

  .fit { padding-top: 96px; padding-bottom: 96px; }
  .fit__art { display: none; }

  .contact { padding-top: 96px; padding-bottom: 110px; }
  .form__submit { align-self: stretch; width: 100%; }

  .sticky-cta.is-visible { display: block; }

  /* Ambient loops are off on small screens, as in the mobile design. */
  .anim-bloom, .anim-spin, .anim-float, .anim-float-7, .anim-float-8,
  .anim-nudge, .anim-dash, .anim-pulse, .pill, .bubble--a { animation: none; }
  .spark { animation: none; opacity: .55; transform: none; }
}

/* ==========================================================================
   Reduced motion: no loops, no entrances, everything in its final state
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
  .spark { opacity: .55; }
  .phone__bar i { width: 92%; }
  .rise, .fade-in, .fade-in-slow { opacity: 1; transform: none; }
  .sticky-cta { animation: none; }
}
