/* snyxcom — hand-written site stylesheet
   Replaces WordPress/Ohio theme + Elementor + WPBakery output.
   Layout geometry measured directly from the live site DOM at 1440x900 (2026-08-13). */

/* ---------- Fonts (self-hosted; live loads DM Sans 400 only) ---------- */
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/assets/fonts/dm-sans-400-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/assets/fonts/dm-sans-400-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body, h1, h2, h3, h4, h5, h6, p, ul, ol, figure, blockquote { margin: 0; }
ul, ol { padding: 0; list-style: none; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; padding: 0; cursor: pointer; }
input, textarea { font: inherit; }

/* ---------- Tokens ---------- */
:root {
  --color-primary: #EC1616;
  --color-primary-hover: #EB0B0B;
  --color-link-content: rgba(235, 11, 11, 0.85);
  --color-black: #111013;
  --color-text: #161518;
  --color-secondary: #54595F;
  --color-grey: #7A7A7A;
  --color-page-bg: #f8f6f9;
  --color-hero-bg: #FDEBEB;
  --color-purple-tint: rgba(146, 95, 141, 0.08);
  --color-dark: #23252B;
  --color-dark-2: #232226;
  --color-white-14: #FFFFFF14;
  --color-white-bf: rgba(255, 255, 255, 0.75);
  --color-pill-bg: #EFEFEF;

  --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-title: 'DM Sans', sans-serif;

  --radius: 10px;
  --radius-card: 16px;
  --transition: all 0.35s cubic-bezier(0.645, 0.045, 0.355, 1);

  /* Live's boxed rows aren't max-width capped: content is ~86.9% of the
     viewport (6.56% padding each side) — 1238px at 1440, ~1705px at 1920 */
  --container-pad: 6.56%;
  --col-pad: 20px;
}

/* ---------- Base ---------- */
body {
  font-family: var(--font-body);
  font-size: 1.025rem;
  line-height: 1.6;
  font-weight: 400;
  color: var(--color-text);
  background: #fff;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-title);
  font-weight: 400;
  color: var(--color-black);
  text-transform: none;
}
h1 { font-size: clamp(3.105rem, 4.5vw + 0.25rem, 4.5rem); letter-spacing: -0.045em; line-height: 1; }
h2 { font-size: clamp(2.1735rem, 3.15vw + 0.25rem, 3.15rem); letter-spacing: -0.04em; line-height: 1.05; }
h3 { font-size: clamp(2rem, 2.205vw + 0.25rem, 2.205rem); letter-spacing: -0.035em; line-height: 1.1; }
h4 { font-size: clamp(1.5rem, 1.5435vw + 0.25rem, 1.5435rem); letter-spacing: -0.03em; line-height: 1.2; }
h5 { font-size: clamp(1.25rem, 1.25332vw + 0.25rem, 1.25332rem); letter-spacing: -0.025em; line-height: 1.3; }
h6 { font-size: 1.125rem; letter-spacing: -0.02em; line-height: 1.4; }

@media (max-width: 768px) {
  h4, h5, h6 { line-height: 1.3; }
}

p { max-width: 65ch; }

a.link {
  background-image: linear-gradient(currentColor, currentColor);
  background-size: 100% 0.18em;
  background-position: 0 110%;
  background-repeat: no-repeat;
}
a.link:hover { color: var(--color-primary-hover); }

.eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 1.025rem;
  font-weight: 400;
  line-height: 16px;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.eyebrow--on-dark { color: var(--color-white-bf); }
.eyebrow--on-light { color: var(--color-grey); }

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

/* Full-bleed tinted band (lavender sections on live) */
.band { width: 100%; }
.band--lavender { background: var(--color-purple-tint); }

@media (max-width: 1024px) {
  :root { --container-pad: 20px; }
}
/* One uniform 20px gutter on mobile: the desktop column padding
   collapses so every section's content shares the same left edge */
@media (max-width: 767px) {
  :root { --col-pad: 0px; }
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: #fff;
  color: var(--color-black);
  padding: 12px 20px;
  z-index: 1000;
}
.skip-link:focus { left: 20px; top: 20px; }

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

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 24px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  font-family: var(--font-title);
  font-weight: 400;
  font-size: 0.95em;
  color: #fff;
  background: var(--color-black);
  transition: var(--transition);
  white-space: nowrap;
}
.btn { overflow: hidden; }
.btn:hover { transform: translateY(-2px); box-shadow: 0 10px 22px -8px rgba(17, 16, 19, 0.4); }
.btn:active { transform: translateY(0) scale(0.98); box-shadow: none; }
.btn--primary:hover { box-shadow: 0 10px 22px -8px rgba(236, 22, 22, 0.55); }

.btn__icon {
  width: 13px;
  height: 20px;
  transition: transform 0.35s cubic-bezier(0.645, 0.045, 0.355, 1);
  animation: btn-icon-idle 3.2s cubic-bezier(0.645, 0.045, 0.355, 1) infinite;
}
.btn:hover .btn__icon {
  transform: translateX(4px);
  animation: btn-icon-swoosh 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
}
/* gentle double-nudge every few seconds while idle */
@keyframes btn-icon-idle {
  0%, 24%, 100% { transform: translateX(0); }
  6%  { transform: translateX(4px); }
  12% { transform: translateX(0); }
  18% { transform: translateX(4px); }
}
/* fly out right, re-enter from the left, settle slightly forward */
@keyframes btn-icon-swoosh {
  0%   { transform: translateX(0); opacity: 1; }
  45%  { transform: translateX(22px); opacity: 0; }
  50%  { transform: translateX(-22px); opacity: 0; }
  100% { transform: translateX(4px); opacity: 1; }
}

/* Content CTAs go full width on mobile (header button stays a pill) */
@media (max-width: 767px) {
  main .btn { width: 100%; }
}
.btn:hover { background: var(--color-primary); }
.btn:focus-visible { box-shadow: 0 0 0 5px rgba(0, 0, 0, 0.15); outline: none; }
.btn--primary { background: var(--color-primary); }
.btn--primary:hover { background: var(--color-secondary); }
.btn--large { min-height: 52px; }
.btn--small { min-height: 36px; padding: 0 16px; font-size: 0.9em; background: #000; }

/* ---------- Header ---------- */
/* Live: fixed 108px transparent bar; logo 66px; only the button on the right */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 60;
  height: 108px;
  background: transparent;
  display: flex;
  align-items: center;
  transition: background-color 0.35s ease, transform 0.35s ease;
}
@media (max-width: 767px) {
  .site-header { height: 72px; }
  /* frosted bar once scrolled away from the top */
  .site-header.is-scrolled {
    background: rgba(255, 255, 255, 0.85);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
  }
  /* slides away while scrolling down, returns on scroll up */
  .site-header.is-hidden { transform: translateY(-100%); }
}
.site-header__inner {
  width: 100%;
  padding-inline: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-header__logo img { height: 66px; width: auto; }
@media (max-width: 1024px) {
  .site-header__logo img { height: 46px; }
}
.site-header__logo picture { display: block; }

.site-header__right { display: flex; align-items: center; gap: 24px; }

/* Live keeps the primary menu hidden at every width */
.nav { display: none; }
.hamburger { display: none; }

/* ---------- Mobile slide-in nav panel (unused while nav is hidden, kept for parity) ---------- */
.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 99999;
  overflow: hidden;
  visibility: hidden;
  opacity: 0;
  transition: var(--transition);
}
.nav-overlay.is-open { visibility: visible; opacity: 1; }
.nav-overlay__scrim {
  position: absolute;
  inset: 0;
  background: rgba(17, 16, 19, 0.9);
}
.nav-overlay__panel {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: calc(100% - 56px);
  max-width: 420px;
  background: #fff;
  box-shadow: 0 20px 32px -8px rgba(17, 16, 19, 0.15), 0 0 1px rgba(17, 16, 19, 0.05);
  padding: 12vh 3vh 3vh;
  overflow-y: auto;
  transform: translateX(3rem);
  transition: transform 0.35s ease, opacity 0.35s ease;
  opacity: 0;
  display: flex;
  flex-direction: column;
}
.nav-overlay.is-open .nav-overlay__panel { transform: none; opacity: 1; }

.nav-overlay__close {
  position: absolute;
  top: 21px;
  right: 3vh;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.35s ease;
}
.nav-overlay__close:hover { background: rgba(17, 16, 19, 0.08); }
.nav-overlay__close svg { width: 20px; height: 20px; }

.nav-overlay__menu { margin-top: 40px; display: flex; flex-direction: column; gap: 4px; }
.nav-overlay__menu a {
  display: block;
  padding: 0.45rem 0.75rem;
  min-height: 2.5rem;
  border-radius: var(--radius);
  font-size: 1.5rem;
  font-family: var(--font-title);
}
.nav-overlay__menu a:hover { background: rgba(17, 16, 19, 0.06); color: var(--color-primary); }

.nav-overlay__spacer { flex: 1; }

.nav-overlay__social { display: flex; gap: 16px; margin-top: 40px; padding: 0 0.75rem; }
.nav-overlay__social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(17, 16, 19, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav-overlay__social svg { width: 16px; height: 16px; }

.nav-overlay__meta {
  margin-top: 24px;
  padding: 0 0.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  font-size: 0.85rem;
  color: var(--color-grey);
}
.nav-overlay__meta a:hover { color: var(--color-primary); }

/* ---------- Hero ---------- */
/* Live: section pad 162/0/36; two boxed rows. Live indents the text column by a
   310px left rail; we drop it so the hero copy and logos share the same left
   edge as every other section on the page. */
.hero {
  padding-top: 162px;
  padding-bottom: 36px;
  background-color: var(--color-hero-bg);
  background-image: url("/assets/img/shape3-min-scaled.png");
  background-position: top left;
  background-repeat: no-repeat;
  background-size: cover;
}
.hero__row { display: flex; }
.hero__col { flex: 1 1 auto; min-width: 0; padding-inline: var(--col-pad); }
.hero__row--logos { margin-top: 72px; padding-top: 54px; }

/* Desktop: hold the copy and logos in a tighter measure than the full
   container so lines don't run the width of the screen. Fluid (vw) to stay in
   step with the 6.75vw heading; the widest animated word is ~41.4vw, so this
   clears it at every width. */
@media (min-width: 1025px) {
  .hero__col { max-width: 56vw; }
}

/* One uniform line rhythm across the two static lines and the animated
   line (1.1em), instead of live's tight 0.9em + padded animated row */
.hero__heading {
  font-size: 6.75vw;
  line-height: 1.1em;
  letter-spacing: -6px;
  color: var(--color-primary-hover);
  font-weight: 400;
  padding-top: 7.4px;
}
.hero__dynamic-wrap {
  font-family: var(--font-title);
  font-size: 6.75vw;
  line-height: 1.1em;
  min-height: 7.425vw;
}
.hero__dynamic {
  font-size: 6.75vw;
  line-height: 0.9em;
  letter-spacing: -6px;
  color: var(--color-primary-hover);
  font-weight: 400;
}
.hero__cursor {
  display: inline-block;
  font-size: 6.75vw;
  line-height: 1.1em;
  color: var(--color-primary-hover);
  animation: blink 1s step-end infinite;
  font-weight: 400;
}
@keyframes blink { 50% { opacity: 0; } }

.hero__subcopy {
  font-family: var(--font-title);
  font-size: 34px;
  line-height: 48px;
  letter-spacing: -0.04em;
  color: var(--color-black);
  max-width: none;
  margin-top: 40px;
}

/* Client logos inside the hero (three 4-col rows on live) */
.logo-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  /* column gutter keeps the logos apart once the tighter hero measure pulls
     the cells down toward the 140px logo width (roughly 1025-1250px) */
  gap: 27px 24px;
  align-items: center;
}
/* max-width keeps the logos inside their grid cell if the tighter hero
   measure ever squeezes a column below the 140px intrinsic width */
.logo-strip__grid img { width: 140px; max-width: 100%; height: auto; }
.logo-strip__grid picture { display: block; }
/* Small print: below the logos on desktop (live's placement), above
   them as a lead-in on mobile. Markup order is mobile-first; desktop
   reorders via flex. */
.hero__row--logos .hero__col { display: flex; flex-direction: column; }
.logo-strip__grid { order: 1; }
.logo-strip__copy {
  order: 2;
  color: var(--color-text);
  margin-top: 27px;
  padding-top: 21px;
  padding-bottom: 26px;
  max-width: none;
}

@media (max-width: 767px) {
  /* right side of the bg image is calmer — the left decorations fight
     the text at narrow widths */
  .hero { padding-top: 84px; padding-bottom: 4vh; background-position: top center; }
  /* divider between the hero copy and the client-logo block */
  .hero__row--logos {
    margin-top: 36px;
    padding-top: 32px;
    border-top: 1px solid rgba(17, 16, 19, 0.12);
  }
  .logo-strip__copy { order: 0; margin: 0 0 24px; padding: 0; }
  .hero__heading,
  .hero__dynamic,
  .hero__cursor {
    /* capped by viewport so the longest animated word stays on one line */
    font-size: min(3.2rem, 12.5vw);
    line-height: 1.15em;
    letter-spacing: -0.02em;
  }
  .hero__dynamic-wrap {
    font-size: min(3.2rem, 12.5vw);
    line-height: 1.15em;
    min-height: 1.15em;
    letter-spacing: -0.02em;
    padding-top: 0;
  }
  .hero__subcopy { font-size: 20px; line-height: 30px; margin-top: 20px; }
  .hero__row--logos { margin-top: 40px; }
  .logo-strip__grid { grid-template-columns: repeat(2, 1fr); gap: 12px 0; justify-items: center; }
}

/* ---------- Section: value prop + icon features (lavender band) ---------- */
.band--about { padding: 72px 0 90px; }
@media (max-width: 767px) {
  .band--about { padding: 30px 0 45px; }
}

.value-prop { display: flex; justify-content: space-between; }
.value-prop__text { flex: 0 0 45%; padding-inline: var(--col-pad); }
.value-prop__text h2 { margin-top: 0; padding-top: 0; }
.value-prop__text p { margin-top: 17px; font-size: 17.22px; line-height: 1.6; }
.value-prop__text .btn { margin-top: 25px; }
.value-prop__image { flex: 0 0 47.5%; padding-inline: var(--col-pad); }
.value-prop__image img { width: 100%; height: auto; }

.icon-features {
  display: flex;
  margin-top: 45px;
}
.icon-feature {
  flex: 1 1 33.333%;
  margin-inline: var(--col-pad);
  padding-top: 45px;
  border-top: 1px solid rgba(99, 93, 111, 0.35);
}
.icon-feature__header { display: flex; align-items: center; gap: 12px; margin-bottom: 8px; }
.icon-feature__icon { font-size: 2em; color: var(--color-black); }
.icon-feature__icon svg { width: 1.75em; height: 1.75em; }
.icon-feature h5 { font-size: 24px; line-height: 1.3; letter-spacing: -0.025em; }
.icon-feature p { color: var(--color-grey); }

@media (max-width: 767px) {
  .value-prop { flex-direction: column; }
  .value-prop__text, .value-prop__image { flex-basis: auto; }
  .value-prop__image { margin-top: 32px; }
  .icon-features { flex-direction: column; gap: 32px; }
}

/* ---------- Testimonial + walkthrough card row ---------- */
.testi-row { display: flex; align-items: stretch; margin-bottom: 60px; }
.testimonial {
  flex: 0 0 58%;
  padding: 36px var(--col-pad);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.testimonial blockquote {
  font-size: clamp(2.25rem, 3.1vw, 2.79rem);
  line-height: 1.15em;
  letter-spacing: -0.045em;
  font-family: var(--font-title);
  color: var(--color-black);
  margin-bottom: 44.64px;
}
/* Underline sweeps in once the testimonial scrolls into view */
.testimonial .highlight {
  background-image: linear-gradient(rgba(236, 22, 22, 0.5), rgba(236, 22, 22, 0.5));
  background-size: 0% 0.1em;
  background-repeat: no-repeat;
  background-position: 0 100%;
  transition: background-size 0.9s cubic-bezier(0.645, 0.045, 0.355, 1) 0.45s;
}
.testimonial.is-visible .highlight { background-size: 100% 0.1em; }
.testimonial__attribution {
  margin-top: 0;
  font-size: 14.76px;
  line-height: 23.616px;
  font-weight: 500;
}

/* Dark walkthrough card: hangs flush from the section above, bottom corners rounded */
.walkthrough-col { flex: 0 0 42%; padding-inline: var(--col-pad); }
.walkthrough {
  background: var(--color-dark);
  border-radius: 0 0 32px 32px;
  padding: 27px;
  color: #fff;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.walkthrough .eyebrow { margin-top: 0; margin-bottom: 32px; }
.walkthrough__media {
  position: relative;
  width: 100%;
  height: 277px;
  border-radius: 16px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.walkthrough__play {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #fff;
  color: var(--color-black);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.walkthrough__play:hover { transform: scale(1.06); }
.walkthrough h5 { color: #fff; margin-top: 26px; }
.walkthrough p { color: var(--color-white-bf); margin-top: 16px; }
.walkthrough .btn { margin-top: 25px; background: var(--color-black); }
.walkthrough .btn:hover { background: var(--color-primary); }

@media (max-width: 767px) {
  .testi-row { flex-direction: column; margin-bottom: 40px; }
  .testimonial { flex-basis: auto; padding-top: 60px; }
  .walkthrough-col { flex-basis: auto; margin-top: 32px; }
  .walkthrough { border-radius: 16px; }
}

/* ---------- Feature sections (feedback engine / user testing) ---------- */
.feature-band--first { padding: 36px 0 54px; }
.feature-band--second { padding: 54px 0 90px; }
@media (max-width: 767px) {
  .feature-band--first { padding: 30px 0 30px; }
  .feature-band--second { padding: 30px 0 45px; }
}

.feature-split { display: flex; align-items: center; }
.feature-split__media { flex: 0 0 50%; padding-inline: var(--col-pad); }
.feature-split__media img { border-radius: 16px; width: 100%; height: auto; }
.feature-split__text { flex: 0 0 50%; padding-inline: var(--col-pad); }
.feature-split--text-first .feature-split__text { flex-basis: 52.7%; }
.feature-split--text-first .feature-split__media { flex-basis: 47.3%; }
.feature-split__text h2 { margin-top: 20px; padding-top: 7.4px; }
.feature-split__text p:not(.eyebrow) { margin-top: 17px; color: var(--color-text); font-size: 17.22px; line-height: 1.6; }

/* Smaller pills with even gaps — deliberate improvement over live's
   4-col grid (which spaced pills unevenly by cell leftover) */
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 48px;
}
.tag-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 16px;
  border-radius: 100px;
  background: var(--color-pill-bg);
  border: 0.8px solid var(--color-secondary);
  color: var(--color-secondary);
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.2;
  white-space: nowrap;
}
.tag-pill svg { width: 14px; height: 14px; flex: 0 0 auto; }

@media (max-width: 767px) {
  .feature-split { flex-direction: column; }
  .feature-split__media, .feature-split__text { flex-basis: auto; width: 100%; }
  /* consistent gap whichever of text/media stacks second */
  .feature-split > * + * { margin-top: 32px; }
  /* image always leads on mobile, even where text leads on desktop */
  .feature-split--text-first .feature-split__media { order: -1; margin-top: 0; }
  .feature-split--text-first .feature-split__text { margin-top: 32px; }
  .tag-row { margin-top: 20px; }
}

/* ---------- Pricing + FAQ (three-column composition on live) ---------- */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 2fr;
  grid-template-areas:
    "cardlight carddark intro"
    "faqleft faqleft faqright";
  row-gap: 90px;
  padding-top: 18px;
  padding-bottom: 90px;
}
.pricing-intro { grid-area: intro; padding-inline: var(--col-pad); }
.pricing-card--dark-col { grid-area: carddark; }
.pricing-card--light-col { grid-area: cardlight; }
.faq--left { grid-area: faqleft; }
.faq--right { grid-area: faqright; }

.pricing-intro h2 { padding-top: 7.4px; }
.pricing-intro .note {
  display: flex;
  align-items: baseline; /* flexbox baseline = first line's baseline */
  gap: 10px;
  font-size: 17.22px;
  line-height: 38px;
  color: var(--color-grey);
  margin-top: 17px;
}
.note__star {
  flex: 0 0 auto;
  font-size: 2em;
  line-height: 1;
  /* the asterisk glyph draws entirely above the baseline — drop it so
     its optical center sits on the first line's text */
  transform: translateY(0.5em);
}
@media (max-width: 767px) {
  .pricing-intro .note { line-height: 1.6; }
}
/* "Book an introduction" panel: bordered rounded box like live's
   call-to-action widget (but with a real gap so the button never
   overlaps the copy, which it does on live) */
.pricing-intro__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 40px;
  padding: 48px;
  border: 0.8px solid #B5B5B5;
  border-radius: 16px;
}
.pricing-intro__row h4 { margin-bottom: 4px; }
.pricing-intro__row p { color: var(--color-text); font-size: 14.76px; line-height: 23.616px; }
.pricing-intro__row .btn { flex: 0 0 auto; }

.pricing-card {
  margin-inline: var(--col-pad);
  padding: 20.25px;
  border-radius: var(--radius-card);
}
.pricing-card--dark { background: var(--color-dark-2); color: #fff; }
.pricing-card--tint { background: var(--color-purple-tint); }
.pricing-card__title { margin-bottom: 0; }
.pricing-card--dark .pricing-card__title { color: #fff; }
.pricing-card__subtitle { font-size: 14.4px; line-height: 1.6; color: var(--color-secondary); }
.pricing-card--dark .pricing-card__subtitle { color: #BEBEBE; }
.pricing-card__price {
  font-family: var(--font-title);
  font-size: 68.8px;
  letter-spacing: -0.045em;
  line-height: 1;
  color: var(--color-black);
  margin-top: 16px;
}
.pricing-card--dark .pricing-card__price { color: #fff; }
.pricing-card__tag {
  display: inline-block;
  margin-top: 8px;
  padding: 7.3px 12px;
  border-radius: var(--radius);
  background: rgba(17, 16, 19, 0.08);
  font-size: 1em;
  font-weight: 500;
  line-height: 1;
}
.pricing-card--dark .pricing-card__tag { background: rgba(255, 255, 255, 0.1); color: var(--color-white-bf); }
.pricing-card__addons-label { margin-top: 16px; font-size: 1em; color: var(--color-secondary); }
.pricing-card--dark .pricing-card__addons-label { color: var(--color-white-bf); }
.pricing-card__list { margin-top: 16px; display: flex; flex-direction: column; gap: 8px; }
.pricing-card__list li { display: flex; align-items: center; gap: 8px; font-size: 15.58px; line-height: 25px; }
.pricing-card--dark .pricing-card__list li { color: var(--color-white-bf); }
.pricing-card__list .icon { color: var(--color-primary); }
.pricing-card--dark .pricing-card__list .icon { color: var(--color-white-bf); }

/* FAQ accordion columns */
.faq { padding-inline: var(--col-pad); }
.accordion-item { margin-bottom: 8px; }
.accordion-item:last-child { margin-bottom: 0; }
.accordion-button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(136, 135, 137, 0.08);
  padding: 8px 8px 8px 20px;
  border-radius: var(--radius);
  transition: var(--transition);
  text-align: left;
}
.accordion-button:hover { background: rgba(136, 135, 137, 0.16); }
.accordion-button h6 { font-size: 1em; letter-spacing: -0.02em; margin: 0; padding-right: 12px; }
.accordion-toggle {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 50%;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: var(--transition);
}
.accordion-toggle::before,
.accordion-toggle::after {
  content: "";
  position: absolute;
  background: currentColor;
  transition: var(--transition);
}
.accordion-toggle::before { width: 0.5rem; height: 0.1rem; }
.accordion-toggle::after { width: 0.1rem; height: 0.5rem; }
.accordion-item.is-open .accordion-toggle::after { opacity: 0; }
.accordion-item.is-open .accordion-toggle { transform: rotate(180deg); }

.accordion-collapse {
  height: 0;
  overflow: hidden;
  transition: height 0.35s cubic-bezier(0.645, 0.045, 0.355, 1),
              opacity 0.35s cubic-bezier(0.645, 0.045, 0.355, 1);
  opacity: 0;
}
.accordion-item.is-open .accordion-collapse { opacity: 1; }
.accordion-body { padding: 12px 20px; }
.accordion-body p { margin: 0; color: var(--color-text); font-size: 14.76px; line-height: 23.616px; }

@media (max-width: 767px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    grid-template-areas: "intro" "carddark" "cardlight" "faqright" "faqleft";
    row-gap: 32px;
    padding-bottom: 54px;
  }
  .pricing-card { margin-inline: 0; }
  .pricing-intro, .faq { padding-inline: 0; }
  .pricing-card__price { font-size: 49.68px; }
  .pricing-intro__row { flex-direction: column; align-items: flex-start; padding: 28px; gap: 20px; }
  /* the two FAQ columns stack into one list — collapse the 32px grid
     gap between them to the 8px item rhythm */
  .faq--left { margin-top: -24px; }
}

/* ---------- Project showcase (lavender band, 3-column masonry) ---------- */
.band--work { padding: 72px 0 75px; position: relative; overflow: hidden; }
/* hero artwork echoed behind the showcase, desaturated and faded */
.band--work::before {
  content: "";
  position: absolute;
  inset: -250px 0 0 0; /* pulls the artwork crop upward; band clips it */
  background-image: url("/assets/img/shape3-min-scaled.png");
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  filter: grayscale(1);
  opacity: 0.8;
  pointer-events: none;
}
.band--work > .container { position: relative; z-index: 1; }
@media (max-width: 767px) {
  .band--work { padding: 49px 0 33px; }
}
.showcase__heading {
  padding-inline: var(--col-pad);
  padding-bottom: 24px;
  border-bottom: 2px solid var(--color-primary);
}

.masonry {
  display: flex;
  gap: 32px;
  padding-inline: var(--col-pad);
  margin-top: 80px;
  align-items: flex-start;
}
.masonry__col {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  gap: 32px;
  min-width: 0;
}

.portfolio-card { position: relative; border-radius: var(--radius-card); overflow: hidden; display: block; }
.portfolio-card__image { display: block; position: relative; padding-bottom: 100%; overflow: hidden; }
.portfolio-card__image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.portfolio-card:hover .portfolio-card__image img { transform: scale3d(1.06, 1.06, 1.06); }
.portfolio-card__details { background: #fff; padding: 20px; }
.portfolio-card__title { font-size: 2em; line-height: 1.2; letter-spacing: -0.03em; }
.portfolio-card__categories {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 10px;
  font-size: 1em;
  margin-top: 8px;
  color: var(--color-grey);
  position: relative;
  transition: var(--transition);
}
.portfolio-card__categories a:hover { color: var(--color-primary); }
.portfolio-card__show-project {
  position: absolute;
  left: 20px;
  bottom: 20px;
  opacity: 0;
  transform: translate(0, 20px);
  transition: var(--transition);
  color: var(--color-primary);
  font-weight: 500;
}
.portfolio-card__show-project::after {
  content: "";
  display: block;
  width: 3rem;
  height: 2px;
  background: currentColor;
  margin-top: 4px;
}
.portfolio-card:hover .portfolio-card__categories { opacity: 0; transform: translate(0, -100%); }
.portfolio-card:hover .portfolio-card__show-project { opacity: 1; transform: translate(0, 0); }

@media (max-width: 1024px) {
  .masonry { flex-direction: column; gap: 32px; align-items: stretch; }
  .masonry__col { display: contents; }
  /* restore live's document order when columns collapse */
  .masonry__col:nth-child(1) .portfolio-card:nth-child(1) { order: 1; }
  .masonry__col:nth-child(2) .portfolio-card:nth-child(1) { order: 2; }
  .masonry__col:nth-child(3) .portfolio-card:nth-child(1) { order: 3; }
  .masonry__col:nth-child(1) .portfolio-card:nth-child(2) { order: 4; }
  .masonry__col:nth-child(3) .portfolio-card:nth-child(2) { order: 5; }
  .masonry__col:nth-child(2) .portfolio-card:nth-child(2) { order: 6; }
  .masonry__col:nth-child(1) .portfolio-card:nth-child(3) { order: 7; }
  .masonry__col:nth-child(3) .portfolio-card:nth-child(3) { order: 8; }
  .masonry__col:nth-child(2) .portfolio-card:nth-child(3) { order: 9; }
}
@media (max-width: 767px) {
  .masonry { margin-top: 40px; }
  .portfolio-card:hover .portfolio-card__categories { opacity: 1; transform: none; }
  .portfolio-card:hover .portfolio-card__show-project { opacity: 0; }
}

/* Archive/listing card variant (portfolio-category pages) */
.portfolio-card--listing .portfolio-card__categories {
  position: static;
  opacity: 1;
  transform: none;
}
.portfolio-card--listing .portfolio-card__excerpt {
  margin-top: 12px;
  color: var(--color-grey);
  font-size: 0.95em;
}
.portfolio-card--listing .portfolio-card__show-project {
  position: static;
  opacity: 1;
  transform: none;
  display: inline-block;
  margin-top: 12px;
}
.portfolio-card--listing:hover .portfolio-card__categories,
.portfolio-card--listing:hover .portfolio-card__show-project { opacity: 1; transform: none; }

/* Legacy grid used by archive pages */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 6vh;
}
@media (max-width: 1199px) {
  .projects-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .projects-grid { grid-template-columns: 1fr; gap: 24px; }
}

/* ---------- Closing CTA ---------- */
.closing-cta {
  padding: 63px var(--container-pad) 78px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}
.closing-cta__text { padding-inline: var(--col-pad); }
.closing-cta__text p { color: var(--color-grey); margin-top: 4px; }
.closing-cta .btn { margin-inline: var(--col-pad); flex: 0 0 auto; }

@media (max-width: 767px) {
  .closing-cta { flex-direction: column; align-items: stretch; padding: 49px 20px 33px; }
  .closing-cta__text, .closing-cta .btn { margin-inline: 0; padding-inline: 0; }
}

/* ---------- Simple pages: project detail / portfolio-category / author ---------- */
.page-header { padding-top: 20vh; padding-bottom: 4vh; }
.page-header .back-link { display: inline-flex; align-items: center; gap: 8px; color: var(--color-grey); margin-bottom: 24px; }
.page-header .back-link:hover { color: var(--color-primary); }
.page-header .breadcrumb { color: var(--color-grey); font-size: 0.9em; margin-top: 8px; }
@media (max-width: 767px) {
  .page-header { padding-top: 16vh; }
}

/* ---------- Project detail ----------
   Live: Ohio two-column layout — gallery stacked left, sticky content right,
   fixed back link and next-project card. Geometry measured from the live DOM
   at 1440/1250/1100/1000/768/411 (2026-08-13). */
.project-main { padding-top: 108px; }
/* mobile: 72px header height plus a little breathing room above the gallery */
@media (max-width: 767px) {
  .project-main { padding-top: 96px; }
}

.project-shell { padding-inline: 16px; padding-bottom: 8rem; }
@media (max-width: 768px) {
  .project-shell { padding-bottom: 3rem; }
}
@media (min-width: 1200px) {
  .project-shell { padding-inline: 10.5rem; }
}

@media (min-width: 769px) {
  .project-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 32px;
    align-items: start;
  }
}
/* Roomier gutters on large screens (deliberate deviation from live's 6.75rem/32px) */
@media (min-width: 1200px) {
  .project-layout { column-gap: 6rem; }
}

.project-gallery { display: grid; row-gap: 8px; }
.project-gallery img { width: 100%; height: auto; border-radius: 18px; }
/* Live bleeds the gallery edge-to-edge below the stack point; we keep
   the 16px gutter instead (agreed deviation — full-bleed felt cramped) */

@media (min-width: 769px) {
  .project-content { position: sticky; top: 0; }
}
.project-content__holder { padding-block: 48px; }
@media (min-width: 769px) {
  .project-content__holder { padding: 0 0 80px 17px; }
}
@media (min-width: 1200px) {
  .project-content__holder { padding-left: 1.7rem; }
}

.project-cats { font-size: 0.95em; font-weight: 500; max-width: none; }
.project-cats .cat:not(:last-child)::after { content: ","; }
.project-cats a { transition: var(--transition); }
.project-cats a:hover { color: var(--color-primary); }

.project-content h1 { font-size: 2.65rem; margin: 12px 0 32px; }
@media (min-width: 769px) {
  .project-content h1 { font-size: 4rem; }
}

.project-details p { max-width: none; }
.project-details p + p { margin-top: 16px; }

.project-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 28px;
}
@media (min-width: 769px) {
  .project-options { grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 48px; }
}
.project-options li { border-top: 1px solid rgba(100, 100, 102, 0.5); padding-top: 20px; }
.project-options h6 { font-size: 1em; }
.project-options p { font-size: 0.95em; margin-top: 4px; max-width: none; }

/* 56px circular icon target shared by the back link and prev/next arrows */
.icon-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  transition: background-color 0.35s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.icon-circle svg { fill: currentColor; transition: var(--transition); }
a.icon-circle:hover,
.project-back:hover .icon-circle { background-color: rgba(136, 136, 137, 0.08); }
a.icon-circle:hover svg,
.project-back:hover .icon-circle svg { opacity: 0.75; transform: scale3d(1.06, 1.06, 1.06); }

.project-back { display: none; }
@media (min-width: 1200px) {
  .project-back {
    position: fixed;
    top: 128px;
    left: 20px;
    z-index: 5;
    display: flex;
    align-items: center;
  }
}

/* Next-project card: persistent fixed bottom-right on desktop like live,
   flat full-width strip at the end of the page below the stack point */
.project-next { z-index: 102; }
.project-next__thumb { display: none; }
.project-next__holder {
  padding: 16px 16px 32px;
  border-top: 1px solid rgba(136, 135, 137, 0.16);
}
.project-next__head { display: flex; align-items: center; justify-content: space-between; }
.project-next__head h6 { font-size: 1em; }
.project-next__arrows { display: flex; margin-left: 8px; }
.project-next__title {
  font-family: var(--font-title);
  font-size: 1.25rem;
  line-height: 1.3;
  letter-spacing: -0.025em;
  color: var(--color-black);
  display: inline-block;
  transition: var(--transition);
}
.project-next__title:hover { color: var(--color-primary-hover); }
@media (min-width: 769px) {
  .project-next { position: fixed; right: 16px; bottom: 16px; width: 282px; }
  .project-next__holder {
    position: relative;
    background: #fff;
    border-top: 0;
    border-radius: 10px;
    padding: 16px 20px 20px;
  }
  .project-next__arrows { margin-right: -16px; }
  /* Peek of the next project's artwork, revealed on hover like live */
  .project-next__thumb {
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    top: -100px;
    height: 120px;
    background-size: cover;
    background-position: center;
    border-radius: 10px 10px 0 0;
    opacity: 0;
    transform: translateY(8px);
    transition: var(--transition);
  }
  .project-next:hover .project-next__thumb { opacity: 1; transform: none; }
}

.empty-state { padding: 20vh 0 10vh; text-align: center; }
.empty-state form {
  margin-top: 24px;
  display: flex;
  gap: 8px;
  max-width: 420px;
  margin-inline: auto;
}
.empty-state input[type="search"] {
  flex: 1;
  padding: 0.6rem 1rem;
  border-radius: var(--radius);
  border: 1px solid rgba(17, 16, 19, 0.2);
}
.empty-state button {
  padding: 0.6rem 1.25rem;
  border-radius: var(--radius);
  background: var(--color-black);
  color: #fff;
}

/* ---------- Video lightbox ---------- */
.video-modal { position: fixed; inset: 0; z-index: 100000; display: flex; align-items: center; justify-content: center; }
.video-modal__scrim { position: absolute; inset: 0; background: rgba(17, 16, 19, 0.9); }
.video-modal__inner { position: relative; width: min(90vw, 960px); aspect-ratio: 16 / 9; }
.video-modal__inner iframe { width: 100%; height: 100%; border: 0; border-radius: 8px; }
.video-modal__close {
  position: absolute;
  top: -44px;
  right: 0;
  color: #fff;
  font-size: 2rem;
  line-height: 1;
}

/* ---------- Scroll reveal ---------- */
[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
[data-reveal].is-visible { opacity: 1; transform: none; }
/* Live animates the hero regardless of reduced-motion; only the scroll
   reveals degrade to instant-show */
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
}
