/* =============================================
   ROCINANTE MARKETING — COMBINED STYLESHEET
   styles.css + nav.css + homepage sections
   One request. No sequential blocking.
   ============================================= */

/* ─────────────────────────────────────────────
   SELF-HOSTED FONTS (Priority 4 — ready to activate)

   To eliminate the Google Fonts external chain:
   1. Go to https://gwfh.mranftl.com/fonts (google-webfonts-helper)
   2. Search for "Barlow Condensed" → select weights 700, 900 → download zip
   3. Search for "Barlow" → select weights 400, 600 → download zip
   4. Search for "Space Mono" → select weights 400, 700 → download zip
   5. Place the .woff2 files in /fonts/ with these exact names:
        barlow-condensed-v27-latin-700.woff2
        barlow-condensed-v27-latin-900.woff2
        barlow-v12-latin-regular.woff2
        barlow-v12-latin-600.woff2
        space-mono-v13-latin-regular.woff2
        space-mono-v13-latin-700.woff2
   6. Uncomment the block below and remove the Google Fonts <link> from every HTML file
   ────────────────────────────────────────────── */

@font-face {
  font-family: 'Barlow Condensed';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/fonts/barlow-condensed-v13-latin-700.woff2') format('woff2');
}
@font-face {
  font-family: 'Barlow Condensed';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url('/fonts/barlow-condensed-v13-latin-900.woff2') format('woff2');
}
@font-face {
  font-family: 'Barlow';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/barlow-v13-latin-regular.woff2') format('woff2');
}
@font-face {
  font-family: 'Barlow';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('/fonts/barlow-v13-latin-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Space Mono';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/space-mono-v17-latin-regular.woff2') format('woff2');
}
@font-face {
  font-family: 'Space Mono';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/fonts/space-mono-v17-latin-700.woff2') format('woff2');
}


/* =============================================
   BASE STYLES (from styles.css)
   Industrial Confidence / Brutalist Posture
   ============================================= */

:root {
  --black: #111111;
  --white: #ffffff;
  --acid: #BEFF00;

  --border: 3px solid #111111;
  --border-white: 3px solid #ffffff;
  --shadow: 5px 5px 0 #111111;
  --shadow-white: 5px 5px 0 #ffffff;

  --font-condensed: 'Barlow Condensed', sans-serif;
  --font-body: 'Barlow', sans-serif;
  --font-mono: 'Space Mono', monospace;

  --max-width: 1200px;
  --gutter: 24px;

  --space-1:  4px;
  --space-2:  8px;
  --space-3:  12px;
  --space-4:  16px;
  --space-5:  20px;
  --space-6:  24px;
  --space-7:  32px;
  --space-8:  40px;
  --space-9:  48px;
  --space-10: 64px;
  --space-11: 80px;
  --space-12: 96px;
}

/* ─── RESET ─────────────────────────────────── */

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

html {
  background: var(--white);
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body), -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--white);
  color: var(--black);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

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

/* ─── TYPE ───────────────────────────────────── */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-condensed);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.0;
  letter-spacing: -0.01em;
}

/* ─── LAYOUT ─────────────────────────────────── */

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section {
  padding: var(--space-11) 0;
}

/* ─── UTILITIES ──────────────────────────────── */

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--black);
  background: var(--acid);
  padding: 4px 12px;
  width: fit-content;
  display: block;
  margin-bottom: var(--space-4);
}

.eyebrow--white {
  color: rgba(255,255,255,0.5);
  background: none;
  padding: 0;
}

.eyebrow--acid-text {
  color: var(--acid);
  background: none;
  padding: 0;
}

/* Descriptive body paragraph utility */
p.body,
.body {
  font-size: 1.05rem;
  line-height: 1.65;
  color: #444;
}

.section-divider {
  width: 48px;
  height: 4px;
  background: var(--black);
  margin: var(--space-4) 0 var(--space-6);
}

.section-divider--white {
  background: rgba(255,255,255,0.3);
}

/* ─── BUTTONS ────────────────────────────────── */

.btn {
  display: inline-block;
  font-family: var(--font-condensed);
  font-weight: 900;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 14px 28px;
  border: var(--border);
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
  /* Instant swap — no easing */
  transition: background-color 0s, color 0s, border-color 0s;
}

/* Black bg, white text */
.btn.primary {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}
.btn.primary:hover,
.btn.primary:focus-visible {
  background: var(--acid);
  color: var(--black);
  border-color: var(--black);
}

/* White bg, black text */
.btn.secondary {
  background: var(--white);
  color: var(--black);
  border-color: var(--black);
}
.btn.secondary:hover,
.btn.secondary:focus-visible {
  background: var(--acid);
  color: var(--black);
}

/* Transparent, white border */
.btn.outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn.outline:hover,
.btn.outline:focus-visible {
  background: var(--acid);
  color: var(--black);
  border-color: var(--black);
}

/* Acid bg — used as the one accent CTA */
.btn.acid {
  background: var(--acid);
  color: var(--black);
  border-color: var(--black);
}
.btn.acid:hover,
.btn.acid:focus-visible {
  background: var(--black);
  color: var(--white);
}

/* ─── MOBILE CTA BAR ─────────────────────────── */

.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  border-top: var(--border);
  padding: 10px 16px;
  gap: 10px;
  z-index: 200;
}

@media (max-width: 640px) {
  .mobile-cta-bar {
    display: flex;
  }

  .mobile-cta-bar .btn {
    flex: 1;
    text-align: center;
    font-size: 0.875rem;
    padding: 12px 8px;
  }
}

/* ─── FOOTER ─────────────────────────────────── */

.site-footer {
  background: var(--black);
  color: var(--white);
  border-top: var(--border);
}

.footer-top {
  padding: var(--space-11) 0 var(--space-10);
}

.footer-shell {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: var(--space-11);
}

/* Footer brand lockup */
.footer-brand .nav__logo {
  width: 28px;
  height: 28px;
  filter: brightness(0) invert(1);
}

.footer-brand .nav__brandName {
  font-size: 1.1rem;
  color: var(--white);
}

.footer-brand .nav__brandSub {
  color: rgba(255,255,255,0.5);
}

.footer-brand .nav__divider {
  background: rgba(255,255,255,0.25);
}

.footer-brand p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  margin-top: var(--space-6);
  margin-bottom: var(--space-7);
  max-width: 280px;
}

.footer-cta {
  display: inline-block;
  font-family: var(--font-condensed);
  font-weight: 900;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 10px 20px;
  border: 2px solid rgba(255,255,255,0.25);
  color: var(--white);
  transition: none;
}

.footer-cta:hover {
  background: var(--acid);
  color: var(--black);
  border-color: var(--acid);
}

.footer-links h2,
.footer-contact h2 {
  font-family: var(--font-condensed);
  font-weight: 900;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.55);
  margin-bottom: var(--space-6);
}

.footer-links-grid {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.footer-links-grid a {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.7);
  font-family: var(--font-condensed);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.875rem;
}

.footer-links-grid a:hover {
  color: var(--acid);
}

.footer-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.footer-contact-list a {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
}

.footer-contact-list a:hover {
  color: var(--acid);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding: var(--space-6) 0;
}

.footer-bottom-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
}

.footer-bottom-bar span,
.footer-legal a {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.05em;
}

.footer-legal a:hover {
  color: rgba(255,255,255,0.6);
}

@media (max-width: 860px) {
  .footer-shell {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-9);
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  .footer-shell {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }

  .footer-bottom-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-2);
  }
}


/* =============================================
   NAV (from nav.css)
   Dark bar. Heavy type. No decoration.
   ============================================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--black);
  border-bottom: 1px solid var(--acid);
}

/* ─── PRIMARY NAV BAR ────────────────────────── */

.nav {
  display: flex;
  align-items: center;
  gap: 2rem;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
  height: 68px;
}

/* ─── BRAND LOCKUP ───────────────────────────── */

.nav__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

.nav__logo {
  width: 38px;
  height: 38px;
}

/* Thin vertical rule between mark and wordmark */
.nav__divider {
  display: block;
  width: 1px;
  height: 34px;
  background: rgba(255,255,255,0.25);
  flex-shrink: 0;
}

.nav__brandStack {
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 2px;
}

.nav__brandName {
  font-family: var(--font-condensed);
  font-weight: 900;
  font-size: 1.2rem;
  color: var(--white);
  letter-spacing: 0.06em;
}

/* Only place "MARKETING" appears at reduced weight */
.nav__brandSub {
  font-family: var(--font-condensed);
  font-weight: 700;
  font-size: 0.7rem;
  color: var(--acid);
  letter-spacing: 0.18em;
}

/* ─── DESKTOP NAV LINKS ──────────────────────── */

.nav__links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
  margin-left: auto;
}

.nav__links a {
  font-family: var(--font-condensed);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  padding: 4px 0;
  border-bottom: 2px solid transparent;
  transition: none;
}

.nav__links a:hover,
.nav__links a:focus-visible {
  color: var(--acid);
  border-bottom-color: var(--acid);
}

/* ─── NAV CTA BUTTON ─────────────────────────── */

.nav__actions {
  flex-shrink: 0;
}

.nav__cta {
  display: inline-block;
  font-family: var(--font-condensed);
  font-weight: 900;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: var(--acid);
  color: var(--black);
  padding: 10px 20px;
  border: 2px solid var(--acid);
  text-decoration: none;
  white-space: nowrap;
  transition: none;
}

.nav__cta:hover,
.nav__cta:focus-visible {
  background: var(--white);
  border-color: var(--white);
  color: var(--black);
}

/* ─── HAMBURGER TOGGLE ───────────────────────── */

.nav__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
  flex-shrink: 0;
}

.nav__toggleBars {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 22px;
}

.nav__toggleBars span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--white);
}

/* ─── MOBILE PANEL ───────────────────────────── */

.navPanel {
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,0.1);
}

.navPanel__inner {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--space-6) var(--gutter) var(--space-8);
}

.navPanel__phone {
  font-family: var(--font-mono);
  font-size: 0.9rem;
  color: var(--acid);
  text-decoration: none;
  padding: var(--space-5) 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  display: block;
  margin-bottom: var(--space-4);
}

.navLinks {
  list-style: none;
  margin-bottom: var(--space-7);
}

.navLinks li {
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.navLinks__link {
  display: block;
  padding: 14px 0;
  font-family: var(--font-condensed);
  font-weight: 900;
  font-size: 1.15rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--white);
  text-decoration: none;
}

.navLinks__link:hover {
  color: var(--acid);
}

.navPanel__cta {
  display: block;
  background: var(--acid);
  color: var(--black);
  font-family: var(--font-condensed);
  font-weight: 900;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 16px 24px;
  text-align: center;
  text-decoration: none;
  border: 3px solid var(--acid);
  transition: none;
}

.navPanel__cta:hover {
  background: var(--white);
  border-color: var(--white);
}

/* ─── BREAKPOINT ─────────────────────────────── */

@media (max-width: 860px) {
  .nav__links,
  .nav__actions {
    display: none;
  }

  .nav__toggle {
    display: flex;
  }
}


/* =============================================
   HOMEPAGE SECTIONS
   ============================================= */


/* ─── HERO ───────────────────────────────────── */

.hero {
  background: var(--white);
  padding: var(--space-10) 0 0;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-10);
  align-items: center;
  padding-bottom: var(--space-10);
}

.hero-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 460px;
}

@media (max-width: 960px) {
  .hero-text {
    min-height: 320px;
  }
}

.hero-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.6);
  margin-bottom: var(--space-5);
  display: block;
}

.hero h1 {
  font-size: clamp(3rem, 5.5vw + 0.5rem, 6.5rem);
  line-height: 0.93;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-7);
}

/* Trade strip — horizontal pill list */
.hero-trades {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-bottom: var(--space-8);
}

.hero-trade {
  font-family: var(--font-condensed);
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 5px 11px;
  border: 2px solid var(--black);
  background: transparent;
  color: var(--black);
  line-height: 1.4;
}

/* CTA row */
.hero-cta-row {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.hero-cta-row .btn {
  font-size: 1rem;
}

/* Cycling word + cursor */
.hero-last-line {
  display: block;
  white-space: nowrap;
}

/* CLS fix: reserve horizontal space so the H1 doesn't shift
   when the typing animation fills in the first word */
.hero-cycle {
  display: inline-block;
  min-width: 5ch;
  vertical-align: baseline;
}

.hero-cursor {
  display: inline-block;
  min-width: 0.6ch;
  color: var(--acid);
  animation: cursor-blink 0.65s step-end infinite;
  font-weight: 900;
  vertical-align: baseline;
}

@keyframes cursor-blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}

/* Hero image: raw, bordered, no radius */
.hero-media {
  position: relative;
}

.hero-media picture,
.hero-media img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border: var(--border);
  display: block;
}

/* ─── STATS BAR ──────────────────────────────── */

.hero-stats {
  background: var(--black);
  border-top: var(--border);
  border-bottom: var(--border);
}

.hero-stats__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.hero-stat {
  padding: var(--space-7) var(--space-6);
  border-right: 1px solid rgba(255,255,255,0.12);
  text-align: center;
}

.hero-stat:last-child {
  border-right: none;
}

.hero-stat__value {
  font-family: var(--font-mono);
  font-size: clamp(2.1rem, 3.3vw, 3rem);
  font-weight: 700;
  color: var(--white);
  display: block;
  line-height: 1;
  margin-bottom: 6px;
}

.hero-stat__label {
  font-family: var(--font-condensed);
  font-weight: 700;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.45);
  display: block;
}


/* ─── SERVICES ───────────────────────────────── */

.services__bg-deco {
  position: absolute;
  top: -0.15em;
  right: -0.05em;
  font-family: var(--font-condensed);
  font-weight: 900;
  font-size: clamp(16rem, 30vw, 28rem);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 2px rgba(0,0,0,0.06);
  text-stroke: 2px rgba(0,0,0,0.06);
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.services__bg-deco--bl {
  top: auto;
  bottom: -0.15em;
  right: auto;
  left: -0.05em;
}

.services .container {
  position: relative;
  z-index: 1;
}

.services {
  background: var(--white);
  padding: var(--space-11) 0;
  border-bottom: var(--border);
  position: relative;
  overflow: hidden;
}

.section-intro {
  margin-bottom: var(--space-10);
}

.section-intro h2 {
  font-size: clamp(2.25rem, 3.5vw, 3.5rem);
  margin-bottom: 0;
}


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

.service-card {
  background: var(--white);
  border: 5px solid var(--black);
  padding: var(--space-8) var(--space-7);
  position: relative;
  overflow: hidden;
}

.service-card__icon {
  width: 36px;
  height: 36px;
  margin-bottom: var(--space-5);
  color: var(--black);
  flex-shrink: 0;
}

.service-card__icon svg {
  width: 36px;
  height: 36px;
  stroke: var(--black);
}

.service-card h3 {
  font-size: clamp(1.25rem, 1.5vw + 0.5rem, 1.75rem);
  margin-bottom: var(--space-4);
  line-height: 1.05;
  width: fit-content;
  background: linear-gradient(var(--acid) 0%, var(--acid) 100%) no-repeat;
  background-size: 0% 50%;
  background-position: left 80%;
  transition: background-size 0.42s cubic-bezier(0.16, 1, 0.3, 1);
  padding-bottom: 2px;
}

.service-card:hover h3 {
  background-size: 100% 50%;
}

.service-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #333;
}

.services-cta {
  margin-top: var(--space-9);
  display: flex;
  align-items: center;
  gap: var(--space-6);
}

/* ─── REPUTATION ENGINE ──────────────────────── */

.reputation {
  background: var(--black);
  padding: var(--space-11) 0;
  border-bottom: var(--border);
}

.reputation__eyebrow {
  color: var(--acid);
}

.reputation__wrap {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.95fr);
  gap: var(--space-10);
  align-items: stretch;
}

.reputation__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0;
  position: relative;
}

.reputation__content::before {
  content: none;
}

.reputation__media {
  border: var(--border-white);
  overflow: hidden;
  flex-shrink: 0;
  background: #1a1a1a;
}

.reputation__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

@media (max-width: 860px) {
  .reputation__wrap {
    grid-template-columns: 1fr;
    gap: var(--space-9);
  }

  .reputation__content {
    padding: 0;
  }
}

.reputation h2 {
  font-size: clamp(2.6rem, 4.2vw, 4.4rem);
  color: var(--white);
  margin-bottom: 0;
  line-height: 0.92;
}

.reputation__stars {
  display: block;
  font-size: 1.3rem;
  letter-spacing: 0.2em;
  color: var(--acid);
  margin-bottom: var(--space-4);
}

.reputation__subhead {
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--white);
  margin-top: var(--space-6);
  line-height: 1.4;
}

.reputation__subhead strong {
  font-weight: 700;
}

.reputation__list {
  list-style: none;
  margin: var(--space-5) 0 0;
  display: grid;
  gap: var(--space-5);
}

.reputation__list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-5);
}

.reputation__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  min-width: 24px;
  color: var(--acid);
  margin-top: 2px;
}

.reputation__icon svg {
  width: 18px;
  height: 18px;
  stroke-width: 1.5;
}

.reputation__list li div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.reputation__list li strong {
  font-family: var(--font-condensed);
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--white);
}

.reputation__list li span {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
}

.reputation__demo-btn {
  display: inline-block;
  font-family: var(--font-condensed);
  font-weight: 900;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 14px 28px;
  border: 3px solid var(--acid);
  background: var(--acid);
  color: var(--black);
  text-decoration: none;
  align-self: flex-start;
  margin-top: var(--space-6);
  transition: none;
}

.reputation__demo-btn:hover {
  background: transparent;
  color: var(--acid);
}

.reputation__platforms {
  display: flex;
  align-items: center;
  gap: var(--space-5);
  flex-wrap: wrap;
  padding-top: var(--space-7);
  margin-top: var(--space-7);
  border-top: 1px solid rgba(255,255,255,0.1);
}

.reputation__platform-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.55);
  margin-right: var(--space-2);
}

.reputation__platform-name {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.6);
}

.reputation__platform-sep {
  color: rgba(255,255,255,0.2);
  font-size: 0.65rem;
}

.reputation__platform {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
}

.reputation__platform-logo {
  width: 40px;
  height: 40px;
  opacity: 0.7;
}

.reputation__platform-logo svg {
  width: 40px;
  height: 40px;
}

/* ─── WORK / PORTFOLIO ───────────────────────── */

.work {
  background: var(--white);
  padding: var(--space-11) 0;
  border-bottom: var(--border);
}

.work h2 {
  font-size: clamp(2.25rem, 3.5vw, 3.5rem);
}

.work__intro p.body {
  font-size: 0.95rem;
  color: #444;
  max-width: 560px;
  margin-top: var(--space-5);
  line-height: 1.65;
}

.work__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
  margin-top: var(--space-9);
}

.work-card {
  border: 5px solid var(--black);
  overflow: hidden;
}

.work-card__media {
  display: block;
  overflow: hidden;
  border-bottom: 5px solid var(--black);
}

.work-card__media img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: none;
}

.work-card__media:hover img {
  opacity: 0.85;
}

.work-card__content {
  padding: var(--space-6) var(--space-6) var(--space-7);
}

.work-card__content h3 {
  font-size: 1.35rem;
  margin-bottom: var(--space-3);
  line-height: 1.1;
}

.work-card__content p {
  font-size: 0.9rem;
  color: #444;
  line-height: 1.6;
  margin-bottom: var(--space-6);
}

.work-card__content .btn {
  font-size: 0.85rem;
  padding: 10px 20px;
}

/* ─── TRUST / RELATIONSHIPS ──────────────────── */

.trust {
  background: var(--black);
  padding: var(--space-11) 0;
  border-bottom: var(--border);
  position: relative;
  overflow: hidden;
}

.trust .services__bg-deco {
  -webkit-text-stroke: 2px rgba(255,255,255,0.06);
  text-stroke: 2px rgba(255,255,255,0.06);
}

.trust .container {
  position: relative;
  z-index: 1;
}

.trust__wrap {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: var(--space-12);
  align-items: center;
}

/* Photo block — raw, bordered, no clipping */
.trust__photo-col {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
}

.trust__photo-frame {
  position: relative;
}

.trust__photo-frame img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  border: var(--border-white);
  display: block;
}

.trust__photo-tag {
  position: absolute;
  bottom: 0;
  right: 0;
  background: var(--black);
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-top: 2px solid rgba(255,255,255,0.3);
  border-left: 2px solid rgba(255,255,255,0.3);
}

/* Photo callout */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

.trust__photo-callout {
  margin-top: 12px;
  margin-left: 16px;
  animation: float 3.2s ease-in-out infinite;
  pointer-events: none;
}

.trust__photo-callout-text {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
}

/* Trust content */
.trust__content .eyebrow {
  color: var(--acid);
  background: none;
  padding: 0;
}

.trust__content h2 {
  font-size: clamp(2.25rem, 3.5vw, 3.5rem);
  color: var(--white);
  margin-bottom: var(--space-5);
}

.trust__content .section-divider {
  background: rgba(255,255,255,0.2);
}

.trust__content p.body {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.65;
  max-width: 480px;
  margin-bottom: var(--space-8);
}

/* Testimonial quote */
.trust__quote {
  border-left: 4px solid rgba(255,255,255,0.2);
  padding-left: var(--space-6);
  margin-bottom: var(--space-8);
}

.trust__quote-text {
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: var(--space-4);
}

.trust__quote-name {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.6);
}

/* ─── PRICING TEASER ─────────────────────────── */

.pricing-teaser {
  background: var(--white);
  padding: var(--space-11) 0;
  border-bottom: var(--border);
}

.pricing-teaser h2 {
  font-size: clamp(2.25rem, 3.5vw, 3.5rem);
}

.pricing-teaser__intro p {
  font-size: 0.95rem;
  color: #444;
  max-width: 520px;
  margin-top: var(--space-5);
  line-height: 1.65;
}

.pricing-teaser__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
  margin-top: var(--space-9);
}

.pricing-card {
  border: var(--border);
  padding: var(--space-8) var(--space-7);
}

/* Featured plan gets the hard shadow + acid accent */
.pricing-card--featured {
  box-shadow: var(--shadow);
  border-left: 6px solid var(--acid);
}

.pricing-card__label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.4);
  display: block;
  margin-bottom: var(--space-4);
}

.pricing-card__name {
  font-family: var(--font-condensed);
  font-weight: 900;
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: var(--space-5);
}

.pricing-card__price {
  display: flex;
  align-items: baseline;
  gap: var(--space-2);
  margin-bottom: var(--space-6);
}

.pricing-card__amount {
  font-family: var(--font-mono);
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--black);
  line-height: 1;
}

.pricing-card__period {
  font-family: var(--font-condensed);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(0,0,0,0.45);
}

.pricing-card__down {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: rgba(0,0,0,0.45);
  margin-bottom: var(--space-7);
  display: block;
}

.pricing-card__features {
  list-style: none;
  margin-bottom: var(--space-8);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  border-top: 1px solid rgba(0,0,0,0.1);
  padding-top: var(--space-6);
}

.pricing-card__features li {
  font-size: 0.9rem;
  color: #333;
  display: flex;
  gap: var(--space-3);
  align-items: flex-start;
  line-height: 1.4;
}

.pricing-card__features li::before {
  content: '—';
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: rgba(0,0,0,0.3);
  flex-shrink: 0;
  margin-top: 1px;
}

.pricing-teaser__cta {
  margin-top: var(--space-9);
  display: flex;
  align-items: center;
  gap: var(--space-5);
  flex-wrap: wrap;
}

.pricing-teaser__note {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: rgba(0,0,0,0.4);
  letter-spacing: 0.05em;
}

/* ─── RESPONSIVE ─────────────────────────────── */

@media (max-width: 960px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }

  .hero-media picture,
  .hero-media img {
    height: 340px;
  }

  .hero-stats__inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-stat:nth-child(2) {
    border-right: none;
  }

  .hero-stat:nth-child(3) {
    border-top: 1px solid rgba(255,255,255,0.12);
  }

  .hero-stat:nth-child(4) {
    border-top: 1px solid rgba(255,255,255,0.12);
  }

  .trust__wrap {
    grid-template-columns: 1fr;
    gap: var(--space-9);
  }

  .trust__photo-frame img {
    max-height: 380px;
  }
}

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

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

  .pricing-teaser__grid {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 480px) {
  .hero-stats__inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-cta-row {
    flex-direction: column;
  }

  .hero-cta-row .btn {
    text-align: center;
  }

  .hero-trades {
    gap: var(--space-2);
  }
}
