/* ============================================================
   HANDLED STUDIO  v7
   Navy #1E3D51 · Yellow #F4C85A · Green #69DE5F
   Fonts: Gloock (headings) + Barlow (body)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,400;0,500;0,600;0,700;1,400;1,700&family=Gloock&display=swap');

@font-face {
  font-family: 'Gloock';
  src: url('assets/fonts/Gloock-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --navy:   #1E3D51;
  --green:  #69DE5F;
  --yellow: #F4C85A;
  --white:  #FFFFFF;
  --serif:  'Gloock', Georgia, serif;
  --sans:   'Barlow', 'Helvetica Neue', Arial, sans-serif;
  --max:    1240px;
  --pad:    clamp(1.5rem, 5vw, 80px);
}

/* ── Reset ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--sans); font-weight: 500; background: var(--navy); color: var(--white); -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
em { font-style: italic; }

/* ── Layout ──────────────────────────────────────────────── */
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 var(--pad); }

/* ── Highlight boxes ─────────────────────────────────────── */
.hl, .hl-y {
  display: inline;
  padding: 0 0.2em 0.08em;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  line-height: 1.35;
}
.hl   { background: var(--green);  color: var(--navy); }
.hl-y { background: var(--yellow); color: var(--navy); }
/* White-text variant for use inside light-on-dark headings */
.hl-w { background: var(--green); color: inherit; display: inline; padding: 0 0.2em 0.08em; box-decoration-break: clone; -webkit-box-decoration-break: clone; }

/* ── Stacked CTA button ──────────────────────────────────── */
.btn-cta {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-family: inherit;
  text-decoration: none;
}
.btn-kicker {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding-left: 22px;
  margin-bottom: 5px;
  display: none;
}
.btn-main {
  background: #69DE5F;
  color: #1E3D51;
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: none;
  padding: 8px 12px 8px 22px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border: none;
  cursor: pointer;
  transition: background 0.15s;
  white-space: nowrap;
  box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}
.btn-cta:hover .btn-main { background: #52cc49; }
.btn-dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #1E3D51;
  color: #69DE5F;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 700;
  flex-shrink: 0;
  line-height: 1;
}
.btn-cta:hover .btn-dot { background: #0F1F2B; }
/* Reversed — for sections with green (#69DE5F) background */
.btn-cta--rev .btn-main { background: #1E3D51; color: #fff; }
.btn-cta--rev .btn-dot { background: #69DE5F; color: #1E3D51; }
.btn-cta--rev:hover .btn-main { background: #0F1F2B; }
.btn-cta--rev:hover .btn-dot { background: #52cc49; }
/* Kicker colour by background context */
.btn-cta--dark .btn-kicker { color: rgba(255,255,255,0.4); }
.btn-cta--light .btn-kicker { color: rgba(30,61,81,0.5); }
.btn-cta--rev .btn-kicker { color: rgba(30,61,81,0.5); }
/* Menu position */
.menu .btn-cta { margin-top: 2.5rem; align-self: flex-start; }
/* Show kicker only in mobile menu popup */
.menu .btn-cta .btn-kicker { display: block; }
/* Offers card btn-cta — full width, centred pill */
.offers__card .btn-cta { margin-top: 1.25rem; align-self: stretch; }
.offers__card .btn-cta .btn-main { width: 100%; justify-content: center; }
/* Work page case study btn-cta spacing */
.wk-work .btn-cta { margin-top: 1.5rem; }

/* ── Buttons — same text size, reduced height ────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 1.06rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  min-width: 195px;
  height: 50px;
  padding: 0 1.75rem;
  border-radius: 100px;
  transition: background 0.2s, color 0.2s, transform 0.15s;
  cursor: pointer;
  border: none;
  white-space: nowrap;
}
.btn:hover         { background: var(--green)  !important; color: var(--navy) !important; transform: translateY(-1px); }
.btn-gold          { background: var(--yellow); color: var(--navy); }
.btn-dark          { background: var(--navy);   color: var(--white); }
.btn-green         { background: var(--green);  color: var(--navy); }
.btn-green:hover   { background: var(--yellow) !important; color: var(--navy) !important; transform: translateY(-1px); }


/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: var(--navy);
  height: 70px;
}
.nav__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo { display: flex; align-items: center; gap: 10px; color: var(--white); }

@keyframes logoPulse {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.12); }
}
.nav__logomark {
  height: 36px;
  width: auto;
  display: block;
  animation: logoPulse 2.8s ease-in-out infinite;
}
.nav__logotype {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
}
.nav__right { display: flex; align-items: center; gap: 1.2rem; }
.nav__hamburger { display: flex; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav__hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; }


/* ============================================================
   MOBILE MENU
   ============================================================ */
.menu {
  position: fixed;
  inset: 0;
  z-index: 300;
  max-width: 460px;
  background: linear-gradient(135deg, #1E3D51 0%, #1a5c30 45%, #3ddb57 100%);
  padding: 2rem var(--pad);
  display: flex;
  flex-direction: column;
  left: auto;
  right: 0;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
}
.menu.open { transform: translateX(0); }
.menu__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 3rem; gap: 1.5rem; }
.menu__logo { display: flex; align-items: center; gap: 10px; color: var(--white); font-family: var(--sans); font-weight: 700; font-size: 0.88rem; letter-spacing: 0.1em; text-transform: uppercase; flex: 1; }
.menu__logomark { height: 36px; width: auto; display: block; filter: brightness(0) invert(1); }
.menu__close { background: none; border: none; color: var(--white); font-size: 1.3rem; cursor: pointer; }
.menu__nav { display: flex; flex-direction: column; }
.menu__link { font-family: var(--sans); font-size: 1.1rem; font-weight: 600; color: var(--white); padding: 1rem 0; border-bottom: 1px solid rgba(255,255,255,0.2); letter-spacing: 0.02em; }
.menu__link.active { color: var(--yellow); }
.menu__link:hover { color: var(--yellow); }
.menu__cta { margin-top: 2.5rem; align-self: flex-start; }


/* ============================================================
   HERO — grid with aside bottom-aligned, body below headline
   ============================================================ */
.hero { background: var(--navy); padding-top: 70px; }

.hero__top {
  max-width: var(--max);
  margin: 0 auto;
  padding: 80px var(--pad) 60px;
  display: grid;
  grid-template-columns: 1fr 280px;
  grid-template-areas:
    "headline aside"
    "body     aside";
  column-gap: 2rem;
  row-gap: 1.75rem;
}
.hero__headline {
  grid-area: headline;
  font-family: var(--serif);
  font-size: clamp(1.9rem, 3.5vw, 4.1rem);
  font-weight: 700;
  line-height: 1.05;
  color: var(--white);
  align-self: end;
}
.hero__aside {
  grid-area: aside;
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-end;
  align-self: end;
}
.hero__aside p { font-size: 1rem; color: rgba(255,255,255,0.75); line-height: 1.55; margin-bottom: 1.4rem; }
.hero__body {
  grid-area: body;
  align-self: start;
}
.hero__body p { font-size: 1rem; color: rgba(255,255,255,0.75); line-height: 1.75; max-width: 580px; }

/* ── Hero image slider ───────────────────────────────────── */
.hero__slider-wrap { overflow: hidden; width: 100%; user-select: none; position: relative; }
.hero__slider-track { display: flex; gap: 20px; }

.slider__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  font-size: 1.1rem;
  background: rgba(30, 61, 81, 0.65);
  color: var(--white);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: background 0.2s, transform 0.15s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.slider__arrow:hover { background: var(--navy); transform: translateY(-50%) scale(1.08); }
.slider__arrow--prev { left: 1rem; }
.slider__arrow--next { right: 1rem; }
.hero__slide {
  flex: 0 0 calc((100vw - 40px) / 3);
  max-width: 460px;
  height: clamp(300px, 33vw, 440px);
  overflow: hidden;
  background: #2a5060;
}
.hero__slide img { width: 100%; height: 100%; object-fit: cover; }


/* ============================================================
   BRAND PROBLEM
   ============================================================ */
.brand { background: var(--navy); padding: 90px var(--pad); }
.brand__inner { max-width: var(--max); margin: 0 auto; }
.brand__headline { font-family: var(--serif); font-size: clamp(1.7rem, 3.8vw, 4.1rem); font-weight: 700; line-height: 1.15; color: var(--white); margin-bottom: 70px; }

.brand__cols { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.brand__lead { font-size: 0.95rem; font-weight: 700; color: var(--white); margin-bottom: 1.5rem; }
.brand__body { font-size: 0.97rem; color: rgba(255,255,255,0.68); line-height: 1.8; margin-bottom: 1.25rem; }
.brand__closer { font-size: 0.97rem; color: rgba(255,255,255,0.68); line-height: 1.8; margin-bottom: 2.5rem; }
.brand__closer em { color: var(--white); font-weight: 700; }
.brand__img { border-radius: 6px; overflow: hidden; background: #2a5060; aspect-ratio: 3/2.5; }
.brand__img img { width: 100%; height: 100%; object-fit: cover; }


/* ============================================================
   ONE TEAM  — Yellow background
   ============================================================ */
.one-team { background: var(--yellow); padding: 90px var(--pad); text-align: center; }
.one-team__headline { font-family: var(--serif); font-size: clamp(1.9rem, 4.3vw, 4.5rem); font-weight: 700; color: var(--navy); line-height: 1.1; margin-bottom: 55px; }
.one-team__body { font-size: 1rem; color: var(--navy); line-height: 1.85; max-width: 880px; margin: 0 auto 1.5rem; }
.one-team__kicker { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 2rem; }


/* ============================================================
   FOR YOU IF  — Yellow bg with mountain, navy card box inset
   ============================================================ */
.for-you { background: var(--yellow); position: relative; overflow: hidden; }

.for-you::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('assets/Mountain.avif') center / cover no-repeat;
  opacity: 0.1;
  pointer-events: none;
}
.for-you__heading-wrap { position: relative; z-index: 1; text-align: center; padding: 70px var(--pad) 60px; }
.for-you__heading { font-family: var(--serif); font-size: clamp(1.5rem, 3.3vw, 3.5rem); font-weight: 700; color: var(--navy); }

.for-you__cards { position: relative; z-index: 1; background: var(--navy); margin: 0 var(--pad) 70px; padding: 70px var(--pad) 90px; border-radius: 8px; }
.for-you__grid { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 3.5rem; }
.for-you__card { text-align: center; }

/* Clock icon — conic-gradient slice + radial gradient base */
.for-you__icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background:
    conic-gradient(from 280deg at 50% 50%,
      rgba(255, 235, 195, 0.62) 0deg 58deg,
      transparent 58deg 360deg
    ),
    radial-gradient(circle at 38% 32%, #E0A060, #8B4010);
  margin: 0 auto 1.5rem;
  will-change: transform;
  position: relative;
}
/* Centre dot */
.for-you__icon::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 5px; height: 5px;
  background: rgba(255,255,255,0.85);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.for-you__title { font-family: var(--serif); font-size: 1.3rem; font-weight: 700; color: var(--white); margin-bottom: 0.75rem; line-height: 1.3; }
.for-you__text { font-size: 0.9rem; color: rgba(255,255,255,0.62); line-height: 1.75; }


/* ============================================================
   PLUG AND PLAY
   ============================================================ */
.plug { background: var(--navy); padding: 90px var(--pad); }
.plug__inner { max-width: var(--max); margin: 0 auto; }
.plug__headline { font-family: var(--serif); font-size: clamp(1.7rem, 3.8vw, 3.7rem); font-weight: 700; color: var(--white); line-height: 1.1; margin-bottom: 65px; }
.plug__cols { display: grid; grid-template-columns: 1fr 1.3fr; gap: 5rem; align-items: center; }
.plug__subtitle { font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 0.75rem; }
.plug__body { font-size: 0.97rem; color: rgba(255,255,255,0.68); line-height: 1.8; margin-bottom: 1.2rem; }
.plug__kicker { font-size: 0.97rem; font-weight: 700; font-style: italic; color: var(--white); margin-bottom: 2.5rem; }
.plug__img { border-radius: 6px; overflow: hidden; background: #2a5060; aspect-ratio: 4/3; }
.plug__img img { width: 100%; height: 100%; object-fit: cover; }


/* ============================================================
   SERVICES LIST — no dividing lines
   ============================================================ */
.services { background: var(--navy); padding: 40px var(--pad) 80px; }
.services__inner { max-width: var(--max); margin: 0 auto; }
.services__line { font-family: var(--serif); font-size: clamp(1.3rem, 3.1vw, 3.3rem); font-weight: 700; color: var(--white); line-height: 1.25; padding: 0.3rem 0; }


/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how { background: var(--navy); padding: 60px var(--pad) 100px; }
.how__inner { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 260px 1fr; gap: 4rem; align-items: start; }
.how__left h2 { font-family: var(--serif); font-size: clamp(1.5rem, 2.8vw, 2.7rem); font-weight: 700; color: var(--white); margin-bottom: 1rem; line-height: 1.15; }
.how__subtext { font-size: 0.92rem; color: rgba(255,255,255,0.65); line-height: 1.65; margin-bottom: 2.5rem; }
.how__steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.how__img-wrap { width: 100%; aspect-ratio: 3/4; border-radius: 4px; overflow: hidden; background: #2a5060; margin-bottom: 1.25rem; }
.how__img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.how__num { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.38); margin-bottom: 0.5rem; }
.how__step-title { font-family: var(--serif); font-size: 1.5rem; font-weight: 700; color: var(--white); margin-bottom: 0.8rem; }
.how__step-body { font-size: 0.88rem; color: rgba(255,255,255,0.62); line-height: 1.75; }


/* ============================================================
   PRODUCTION EXPERIENCE
   ============================================================ */
.production-top { background: var(--yellow); padding: 90px var(--pad); text-align: center; }
.production-top__headline { font-family: var(--serif); font-size: clamp(1.5rem, 3.8vw, 3.5rem); font-weight: 700; color: var(--navy); line-height: 1.1; margin-bottom: 1.5rem; max-width: var(--max); margin-left: auto; margin-right: auto; }
.production-top__body { font-size: 1rem; color: var(--navy); line-height: 1.85; max-width: 820px; margin: 0 auto 2.5rem; }

.production-stats { background: var(--navy); padding: 60px var(--pad); }
.production-stats__inner { max-width: var(--max); margin: 0 auto; display: flex; align-items: center; }
.production-stats__block { flex: 1; text-align: center; }
.production-stats__divider { width: 1px; align-self: stretch; background: rgba(255,255,255,0.1); margin: 0 24px; flex-shrink: 0; }
.production-stats__num { font-family: var(--serif); font-size: 36px; font-weight: 700; color: #8aff6c; line-height: 1; margin-bottom: 6px; }
.production-stats__label { font-family: var(--sans); font-size: 16px; font-weight: 500; color: var(--white); margin-bottom: 4px; }
.production-stats__qual { font-family: var(--sans); font-size: 15px; font-weight: 400; color: rgba(255,255,255,0.65); line-height: 1.4; }


/* ============================================================
   PORTFOLIO
   ============================================================ */
.portfolio { background: var(--navy); padding: 80px var(--pad) 90px; text-align: center; }
.portfolio__headline { font-family: var(--serif); font-size: clamp(1.3rem, 3.3vw, 3.1rem); font-weight: 700; color: var(--white); line-height: 1.1; margin-bottom: 1.5rem; }
.portfolio__cta { margin-bottom: 3rem; }
.portfolio__grid { display: grid; grid-template-columns: 1.8fr 1fr; gap: 1rem; text-align: left; max-width: var(--max); margin: 0 auto; }
.portfolio__item { display: block; }
.portfolio__item img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: 4px; display: block; background: #2a5060; }
.portfolio__caption { font-size: 0.85rem; color: var(--white); margin-top: 0.75rem; font-weight: 600; }


/* ============================================================
   TESTIMONIALS
   ============================================================ */
/* ── Testimonials pull-quote strip ───────────────────────── */
.testimonials { background: var(--navy); padding: 60px var(--pad); }
.testimonials__inner { max-width: var(--max); margin: 0 auto; }
.testimonials__heading { font-family: var(--serif); font-size: clamp(1.3rem, 3.3vw, 3.1rem); font-weight: 700; color: var(--white); margin-bottom: 2rem; line-height: 1.2; }
.tq-hl { background: #8aff6c; color: #162a3a; padding: 2px 8px; }

.tq-featured { border-left: 3px solid #8aff6c; padding: 20px 24px; margin-bottom: 2rem; }
.tq-featured__quote { font-family: var(--serif); font-size: 24px; font-weight: 400; color: var(--white); line-height: 1.5; margin-bottom: 14px; }
.tq-featured__foot { display: flex; align-items: center; gap: 1rem; }
.tq-featured__name { font-size: 17px; font-weight: 600; color: var(--white); }
.tq-featured__company { font-size: 16px; font-weight: 400; color: rgba(255,255,255,0.5); font-style: italic; }
.tq-pill { font-size: 14px; color: #8aff6c; background: rgba(138,255,108,0.1); padding: 3px 0; border-radius: 100px; width: 96px; text-align: center; display: inline-block; }
.tq-featured__foot .tq-pill { margin-left: auto; }

.tq-slider-wrap {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  cursor: grab;
}
.tq-slider-wrap:active { cursor: grabbing; }
.tq-slider-wrap::-webkit-scrollbar { display: none; }
.tq-track { display: flex; gap: 14px; }
.tq-card { width: calc((100% - 28px) / 3); flex-shrink: 0; scroll-snap-align: start; background: rgba(255,255,255,0.10); border-radius: 8px; padding: 24px; display: flex; flex-direction: column; transition: background 0.2s; }
.tq-card:hover { background: rgba(255,255,255,0.18); }
.tq-card .tq-pill { margin-bottom: 14px; }
.tq-card__quote { font-size: 19px; color: rgba(255,255,255,0.7); line-height: 1.6; flex: 1; margin-bottom: 20px; }
.tq-card__attr { border-top: 0.5px solid rgba(255,255,255,0.08); padding-top: 14px; }
.tq-card__name { font-size: 19px; font-weight: 600; color: var(--white); }
.tq-card__company { font-size: 17px; font-weight: 400; color: rgba(255,255,255,0.4); font-style: italic; }

.tq-dots { display: flex; justify-content: center; gap: 8px; }
.tq-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 24px;
}
.tq-arrow {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.7);
  font-size: 16px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s, color 0.15s;
  flex-shrink: 0;
}
.tq-arrow:hover { background: rgba(255,255,255,0.18); color: #fff; }
.tq-dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.15); border: none; cursor: pointer; transition: background 0.25s ease; padding: 0; }
.tq-dot.active { background: #8aff6c; }

.logos { display: flex; align-items: center; justify-content: space-between; gap: 2rem; padding-top: 3rem; flex-wrap: wrap; }
.logos__item img { height: 44px; width: auto; opacity: 1; filter: brightness(0) invert(1); transition: opacity 0.2s; }
.logos__item img:hover { opacity: 0.75; }
/* NFL (2) and Lewis Build (5) are wordmarks — need more height */
.logos__item:nth-child(2) img,
.logos__item:nth-child(5) img { height: 72px; }


/* ============================================================
   JOURNAL
   ============================================================ */
.journal { background: linear-gradient(to bottom, var(--navy) 0%, var(--green) 100%); padding: 80px 0 0; }
.journal__header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.5rem; padding: 0 var(--pad); max-width: var(--max); margin-left: auto; margin-right: auto; }
.journal__heading { font-family: var(--serif); font-size: clamp(1.3rem, 2.8vw, 2.3rem); font-weight: 700; color: var(--white); }
.journal__rule { border: none; border-top: 1px solid rgba(255,255,255,0.2); margin: 0 var(--pad) 2.5rem; }
.journal__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; max-width: var(--max); margin: 0 auto; padding: 0 var(--pad); }
.journal__img { width: 100%; aspect-ratio: 3/2; overflow: hidden; border-radius: 4px; background: #2a5060; margin-bottom: 1.25rem; }
.journal__img img { width: 100%; height: 100%; object-fit: cover; }
.journal__meta { font-size: 0.78rem; color: var(--navy); margin-bottom: 0.6rem; }
.journal__title { font-family: var(--serif); font-size: 1.2rem; font-weight: 700; color: var(--navy); line-height: 1.35; margin-bottom: 0.75rem; }
.journal__excerpt { font-size: 0.88rem; color: var(--navy); line-height: 1.7; opacity: 0.8; }
.journal__card-link { display: block; text-decoration: none; }
.journal__card-link:hover .journal__title { color: #2d5a77; }


/* ============================================================
   CTA  — Bright green background
   ============================================================ */
.cta { background: var(--green); padding: 80px var(--pad); }
.cta__inner { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: end; }
.cta__headline { font-family: var(--serif); font-size: clamp(1.7rem, 3.8vw, 3.7rem); font-weight: 700; color: var(--navy); line-height: 1.1; margin-bottom: 1.25rem; }
.cta__body { font-size: 0.97rem; color: var(--navy); line-height: 1.8; }
.cta__right { text-align: right; }
.cta__kicker { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 1.5rem; }
/* CTA button: yellow hover */
.cta .btn:hover { background: var(--yellow) !important; color: var(--navy) !important; }


/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--navy); padding-top: 60px; }
.footer__top { max-width: var(--max); margin: 0 auto; padding: 0 var(--pad) 3rem; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; }
.footer__logo { display: flex; align-items: center; gap: 10px; color: var(--white); font-family: var(--sans); font-weight: 700; font-size: 0.85rem; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 2rem; }
.footer__tagline { font-family: var(--serif); font-size: clamp(1.3rem, 2.8vw, 2.5rem); font-weight: 700; color: var(--yellow); line-height: 1.1; margin-bottom: 2rem; }
.footer__ack { font-size: 0.82rem; color: rgba(255,255,255,0.45); line-height: 1.7; max-width: 420px; }

.footer__nl-heading { font-family: var(--serif); font-size: 1.8rem; font-weight: 700; color: var(--yellow); margin-bottom: 0.75rem; }
.footer__nl-sub { font-size: 0.88rem; color: rgba(255,255,255,0.6); line-height: 1.6; margin-bottom: 1.5rem; }
.footer__form { display: flex; flex-direction: column; gap: 0.75rem; }
.footer__label { font-size: 0.82rem; color: rgba(255,255,255,0.7); }
.footer__input { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15); border-radius: 4px; padding: 0.75rem 1rem; color: var(--white); font-family: var(--sans); font-size: 0.9rem; width: 100%; }
.footer__input:focus { outline: 2px solid var(--green); border-color: transparent; }
.footer__check { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.82rem; color: rgba(255,255,255,0.6); line-height: 1.5; cursor: pointer; }
.footer__submit { align-self: flex-start; margin-top: 0.5rem; }
.footer__audit-wrap { background: #162d3d; border: 2px solid #0f2030; border-radius: 16px; padding: 2rem 1.75rem; position: relative; margin-top: 20px; }
.footer__audit-eyebrow { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: #0f2030; color: #fff; font-size: 0.82rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; padding: 4px 32px; border-radius: 20px; white-space: nowrap; }
.footer__audit-heading { font-family: var(--serif); font-size: 28px; font-weight: 700; color: var(--white); line-height: 1.3; margin-bottom: 4px; }
.footer__audit-sub { font-size: 12px; color: rgba(255,255,255,0.45); margin-bottom: 12px; }
.footer__audit-divider { display: none; }
.footer__audit-links { display: flex; flex-direction: column; gap: 6px; }
.footer__audit-item { display: flex; align-items: center; gap: 10px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: 7px; padding: 10px 12px; text-decoration: none; transition: background 0.18s, border-color 0.18s; }
.footer__audit-item:hover { background: rgba(105,222,95,0.1); border-color: rgba(105,222,95,0.5); }
.footer__audit-icon { width: 30px; height: 30px; background: rgba(255,255,255,0.08); border-radius: 6px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.footer__audit-item-text { display: flex; flex-direction: column; flex: 1; }
.footer__audit-item-name { font-size: 13px; font-weight: 600; color: var(--white); line-height: 1.3; }
.footer__audit-item-desc { font-size: 11px; color: rgba(255,255,255,0.4); line-height: 1.4; }
.footer__audit-arrow { font-size: 12px; color: #69DE5F; flex-shrink: 0; }
.footer__audit-note { font-size: 11px; color: rgba(255,255,255,0.25); text-align: center; margin-top: 10px; }

.footer__nav { max-width: var(--max); margin: 0 auto; padding: 2.5rem var(--pad); border-top: 1px solid rgba(255,255,255,0.1); display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.footer__col-title { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 1rem; }
.footer__col ul { display: flex; flex-direction: column; gap: 0.75rem; }
.footer__link { font-size: 0.9rem; color: rgba(255,255,255,0.65); }
.footer__link:hover { color: var(--white); }
.footer__link-active { color: var(--yellow); }

.footer__bottom { max-width: var(--max); margin: 0 auto; padding: 1.5rem var(--pad); border-top: 1px solid rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: space-between; font-size: 0.8rem; color: rgba(255,255,255,0.35); }
.footer__bottom a { color: rgba(255,255,255,0.35); }
.footer__bottom a:hover { color: var(--white); }


/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  /* Hero: headline → body → aside on mobile */
  .hero__top {
    grid-template-columns: 1fr;
    grid-template-areas:
      "headline"
      "body"
      "aside";
    row-gap: 1.5rem;
  }
  .hero__aside { text-align: left; align-items: flex-start; justify-content: flex-start; }
  .brand__cols { grid-template-columns: 1fr; }
  .plug__cols { grid-template-columns: 1fr; }
  .how__inner { grid-template-columns: 1fr; }
  .how__steps { grid-template-columns: 1fr 1fr; }
  .cta__inner { grid-template-columns: 1fr; }
  .cta__right { text-align: left; }
  .footer__top { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .for-you__grid { grid-template-columns: 1fr 1fr; }
  .production-stats__inner { flex-direction: column; align-items: stretch; }
  .production-stats__divider { width: 100%; height: 1px; align-self: auto; margin: 16px 0; }
  .production-stats__block { text-align: center; }
  .portfolio__grid { grid-template-columns: 1fr; }
  /* tq-card: single column on mobile */
  .tq-card { width: 85vw; }
  .journal__grid { grid-template-columns: 1fr 1fr; }
  .footer__nav { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 680px) {
  .hero__slide { flex: 0 0 80vw; max-width: none; }
  .how__img-wrap { aspect-ratio: 16/9; }
  .for-you__grid { grid-template-columns: 1fr; }
  .for-you__cards { margin: 0 1rem 40px; }
  .how__steps { grid-template-columns: 1fr; }
  /* production-stats stacks at 900px already */
  .tq-featured__quote { font-size: 22px; }
  .journal__grid { grid-template-columns: 1fr; }
  .footer__nav { grid-template-columns: 1fr 1fr; }
  /* Logos: 3 on first row, 2 centered on second */
  .logos { flex-direction: row; flex-wrap: wrap; justify-content: center; gap: 1.5rem 1rem; }
  .logos__item { flex: 0 0 calc(33.33% - 0.75rem); display: flex; justify-content: center; align-items: center; }
  /* Handled banners: more breathing room between wrapped lines */
  .services__line { line-height: 1.55; padding: 0.45rem 0; }
  /* Journal: lighter background so navy text is legible */
  .journal { background: linear-gradient(to bottom, #2d6840 0%, var(--green) 100%); }
}


/* ============================================================
   FULLY HANDLED PAGE
   ============================================================ */

/* ── FH Hero ─────────────────────────────────────────────── */
.fh-hero { background: var(--navy); padding-top: 70px; }
.fh-hero__top {
  max-width: var(--max);
  margin: 0 auto;
  padding: 100px var(--pad) 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.fh-hero__headline {
  font-family: var(--serif);
  font-size: clamp(1.9rem, 3.5vw, 4.1rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.05;
}
.fh-hero__image {
  width: 100%;
  overflow: hidden;
  background: #1a1a1a;
  max-height: 52vh;
}
.fh-hero__image img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; display: block; max-height: 52vh; }


/* ── Built for businesses ────────────────────────────────── */
.fh-built { background: var(--yellow); padding: 90px var(--pad); }
.fh-built__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.fh-built__text { display: flex; flex-direction: column; justify-content: center; }
.fh-built__image { border-radius: 6px; overflow: hidden; background: #c0a030; }
.fh-built__image img { width: 100%; height: auto; display: block; }
.fh-built__headline {
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3.8vw, 4.1rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.fh-built__body { font-size: 0.97rem; color: var(--navy); line-height: 1.8; margin-bottom: 1.2rem; }


/* ── Not alone ───────────────────────────────────────────── */
.fh-alone { background: var(--yellow); padding: 70px var(--pad); border-top: 1px solid rgba(30,61,81,0.12); }
.fh-alone__inner { max-width: 820px; margin: 0 auto; text-align: center; }
.fh-alone__headline {
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3.8vw, 4.1rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 2rem;
}


/* ── Pain points ─────────────────────────────────────────── */
.fh-pain { background: var(--yellow); padding: 70px var(--pad) 90px; }
.fh-pain__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
}
.fh-pain__title {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 0.85rem;
}
.fh-pain__body { font-size: 0.9rem; color: var(--navy); line-height: 1.75; opacity: 0.78; }


/* ── Introducing Fully Handled ───────────────────────────── */
.fh-intro { background: var(--navy); padding: 100px var(--pad); text-align: center; }
.fh-intro__inner { max-width: 860px; margin: 0 auto; }
.fh-intro__eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.fh-intro__headline {
  font-family: var(--serif);
  font-size: clamp(1.9rem, 3.5vw, 4.1rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 2.5rem;
}
.fh-intro__lead {
  font-size: 1.1rem;
  color: var(--white);
  font-weight: 600;
  margin-bottom: 1.25rem;
}
.fh-intro__body {
  font-size: 1rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.fh-intro__closer {
  font-size: 1rem;
  color: var(--white);
  font-weight: 600;
  margin-bottom: 2.5rem;
}


/* ── Not just design support ─────────────────────────────── */
.fh-support { background: var(--navy); padding: 0 var(--pad) 80px; }
.fh-support__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3.5rem;
  align-items: center;
}
.fh-support__image { border-radius: 6px; overflow: hidden; background: #2a5060; }
.fh-support__image img { width: 100%; height: 100%; object-fit: cover; display: block; min-height: 420px; }
.fh-support__headline {
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3.8vw, 4.1rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.25rem;
}
.fh-support__sub { font-size: 1rem; color: rgba(255,255,255,0.68); line-height: 1.75; margin-bottom: 1.75rem; }
/* Icon cards grid */
.fh-support__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.fh-support__card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 12px 12px;
}
.fh-support__icon {
  width: 28px;
  height: 28px;
  background: transparent;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  margin-bottom: 8px;
}
.fh-support__card-title {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 3px;
  line-height: 1.3;
}
.fh-support__card-sub {
  font-size: 0.73rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.4;
}


/* ── Handled list ────────────────────────────────────────── */
.fh-handled-list { background: var(--navy); padding: 80px var(--pad) 100px; }
.fh-handled-list__inner { max-width: var(--max); margin: 0 auto; }
.fh-handled-list__eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
  margin-bottom: 2.5rem;
}
.fh-handled-list__lines { list-style: none; }
.fh-handled-list__lines li {
  font-family: var(--serif);
  font-size: clamp(1.35rem, 3.0vw, 3.3rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.25;
}


/* ── What changes ────────────────────────────────────────── */
.fh-changes { background: var(--yellow); padding: 100px var(--pad); text-align: center; }
.fh-changes__inner { max-width: 860px; margin: 0 auto; }
.fh-changes__headline {
  font-family: var(--serif);
  font-size: clamp(1.9rem, 3.8vw, 4.1rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: 2rem;
  white-space: nowrap;
}
@media (max-width: 700px) {
  .fh-changes__headline { white-space: normal; }
}
.fh-changes__body {
  font-size: 1rem;
  color: var(--navy);
  line-height: 1.85;
  margin-bottom: 1rem;
  opacity: 0.82;
}


/* ── Comparison table ────────────────────────────────────── */
.fh-ct { background: var(--navy); padding: 90px var(--pad) 100px; }
.fh-ct__inner { max-width: var(--max); margin: 0 auto; }

/* Hero */
.fh-ct__hero { text-align: center; margin-bottom: 3rem; }
.fh-ct__headline {
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}
.fh-ct__hl {
  background: #7ed957;
  color: #1a2e38;
  padding: 0 0.2em;
  border-radius: 4px;
}
.fh-ct__sub { font-size: 1rem; color: #9ab8c2; }

/* Table wrap */
.fh-ct__wrap {
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.08);
  overflow-x: auto;
}
.fh-ct__table {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
  font-size: 1rem;
  color: #cde0e8;
}

/* Header row */
.fh-ct__head-row { background: rgba(255,255,255,0.04); }
.fh-ct__th {
  padding: 1rem 1.1rem;
  text-align: left;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #9ab8c2;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.fh-ct__th--label { width: 18%; }
.fh-ct__th--fh {
  background: rgba(126,217,87,0.10);
  color: #7ed957;
  border-left: 1px solid rgba(126,217,87,0.2);
  border-right: 1px solid rgba(126,217,87,0.2);
}
.fh-ct__rec {
  display: block;
  font-size: 0.65rem;
  font-weight: 600;
  color: #7ed957;
  letter-spacing: 0.06em;
  margin-top: 0.3rem;
  text-transform: none;
}

/* Section header rows */
.fh-ct__section-row td {
  background: rgba(255,255,255,0.03);
  color: #7ed957;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.6rem 1.1rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

/* Data rows */
.fh-ct__row { border-bottom: 1px solid rgba(255,255,255,0.05); }
.fh-ct__row:hover { background: rgba(255,255,255,0.03); }
.fh-ct__row td { padding: 0.85rem 1.1rem; vertical-align: middle; }
.fh-ct__label { color: #9ab8c2; font-size: 0.92rem; white-space: nowrap; }

/* Fully Handled column */
.fh-ct__td--fh {
  background: rgba(126,217,87,0.05);
  border-left: 1px solid rgba(126,217,87,0.2);
  border-right: 1px solid rgba(126,217,87,0.2);
}

/* Icons */
.fh-ct__c { color: #7ed957; font-weight: 700; }
.fh-ct__x { color: #e05252; opacity: 0.7; font-weight: 700; }
.fh-ct__m { color: #f5a623; font-weight: 700; }

/* Pills */
.fh-ct__pill {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 20px;
}
.fh-ct__pill--green { background: rgba(126,217,87,0.15); color: #7ed957; }
.fh-ct__pill--amber { background: rgba(245,166,35,0.15);  color: #f5a623; }
.fh-ct__pill--red   { background: rgba(224,82,82,0.15);   color: #e05252; }

/* CTA */
.fh-ct__cta { text-align: right; margin-top: 2rem; }
.fh-ct__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--yellow);
  color: var(--navy);
  font-family: var(--sans);
  font-weight: 700;
  font-size: 1.06rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0 1.75rem;
  height: 50px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s, transform 0.15s;
}
.fh-ct__btn:hover { background: var(--green) !important; color: var(--navy) !important; transform: translateY(-1px); }

/* ── Responsive switch ───────────────────────────────────── */
@media (min-width: 768px) {
  .comparison-table-wrap { display: block; }
  .comparison-accordion  { display: none; }
}
@media (max-width: 767px) {
  .comparison-table-wrap { display: none; }
  .comparison-accordion  { display: block; }
  .fh-ct__cta { text-align: center; }
}

/* ── Mobile accordion ────────────────────────────────────── */
.comparison-accordion {
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
  background: transparent;
}

/* Section headers */
.ca-section-header {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #7ed957;
  padding: 7px 12px;
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

/* Accordion item */
.ca-item { border-bottom: 1px solid rgba(255,255,255,0.07); }
.ca-item:last-child { border-bottom: none; }

/* Trigger button */
.ca-trigger {
  width: 100%;
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 12px;
  text-align: left;
}
.ca-trigger__label {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  font-family: sans-serif;
}
.ca-trigger__arrow {
  color: #7ed957;
  font-size: 22px;
  font-weight: 300;
  line-height: 1;
  display: inline-block;
  transition: transform 0.2s ease;
}
.ca-trigger[aria-expanded="true"] .ca-trigger__arrow { transform: rotate(45deg); }

/* Body panel */
.ca-body { display: none; padding-bottom: 8px; }

/* Option cards */
.ca-card {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 8px 12px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.ca-card:last-child { border-bottom: none; }
.ca-opt {
  font-size: 11px;
  font-weight: 600;
  color: #9ab8c2;
  min-width: 100px;
}
.ca-val {
  font-size: 11px;
  color: #cde0e8;
  text-align: right;
}

/* Fully Handled card */
.ca-card--fh {
  background: rgba(126,217,87,0.07);
  border-left: 2px solid #7ed957;
}
.ca-card--fh .ca-opt { color: #7ed957; }
.ca-card--fh .ca-val { color: #d8f5c0; font-weight: 600; }

/* Pills inside accordion */
.ca-pill { font-size: 10px; }


/* ── Real production experience ──────────────────────────── */
.fh-experience { background: var(--yellow); padding: 90px var(--pad); text-align: center; }
.fh-experience__inner { max-width: 940px; margin: 0 auto; }
.fh-experience__headline {
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3.8vw, 4.1rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  white-space: nowrap;
}
@media (max-width: 700px) {
  .fh-experience__headline { white-space: normal; }
}
.fh-experience__body {
  font-size: 1rem;
  color: var(--navy);
  line-height: 1.85;
  margin-bottom: 2.5rem;
}


/* ── Why Handled ─────────────────────────────────────────── */
.fh-why { background: var(--yellow); padding: 0 var(--pad) 90px; }
.fh-why__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.fh-why__image { border-radius: 6px; overflow: hidden; background: #c0a030; }
.fh-why__image img { width: 100%; height: auto; display: block; }
.fh-why__headline {
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3.8vw, 4.1rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: 2.5rem;
}
.fh-why__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem 3rem;
}
.fh-why__item-title {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 0.6rem;
}
.fh-why__item-body {
  font-size: 0.88rem;
  color: var(--navy);
  line-height: 1.65;
  opacity: 0.8;
}


/* ── Offers / Pricing journey ────────────────────────────── */
.offers {
  background: linear-gradient(180deg, var(--navy) 0%, #1b3d2e 55%, var(--green) 100%);
  padding: 4rem var(--pad) 5rem;
}
.offers__inner { max-width: 960px; margin: 0 auto; }

/* Head */
.offers__head { text-align: center; margin-bottom: 3rem; }
.offers__eyebrow {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #7ed957;
  margin-bottom: 1rem;
}
.offers__headline {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
}
.offers__hl {
  background: #7ed957;
  color: #1a2e38;
  padding: 0 0.15em;
  border-radius: 4px;
}
.offers__sub { color: #9ab8c2; font-size: 1rem; margin-top: 0.75rem; }

/* Journey grid */
.offers__journey {
  display: grid;
  grid-template-columns: 1fr auto 1.4fr;
  align-items: center;
  max-width: 900px;
  margin: 0 auto 2.5rem;
}

/* Cards shared */
.offers__card {
  border-radius: 16px;
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* Step 1 — Handoff */
.offers__card--handoff { background: #f5c842; }

/* Step 2 — Fully Handled */
.offers__card--fh {
  background: #1e3d2a;
  border: 2px solid #7ed957;
  position: relative;
}

/* Floating badge */
.offers__float-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #7ed957;
  color: #1a2e38;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
  white-space: nowrap;
}

/* Step badge */
.offers__step {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 1rem;
}
.offers__step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #1a2e38;
  color: #f5c842;
  font-size: 0.65rem;
  font-weight: 800;
  flex-shrink: 0;
}
.offers__step-num--green { background: #7ed957; color: #1a2e38; }
.offers__step-label {
  color: #7a5c00;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.offers__step-label--green { color: #7ed957; }

/* Titles */
.offers__title {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 700;
  color: #1a2e38;
  margin-bottom: 0.75rem;
  line-height: 1.1;
}
.offers__title--white { font-size: 1.9rem; color: #fff; }

/* Price pills */
.offers__price-pill {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 1.25rem;
}
.offers__price-pill--dark { background: #1a2e38; color: #7ed957; }
.offers__price-pill--green {
  background: rgba(126,217,87,0.15);
  color: #7ed957;
  border: 1px solid rgba(126,217,87,0.3);
}

/* Descriptions */
.offers__desc {
  font-size: 1rem;
  color: #3d2e00;
  line-height: 1.6;
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(0,0,0,0.12);
}
.offers__desc--muted {
  color: #9ab8c2;
  border-bottom-color: rgba(255,255,255,0.08);
}

/* Feature lists */
.offers__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 1.25rem;
  flex: 1;
}
.offers__features li { font-size: 0.97rem; display: flex; align-items: flex-start; gap: 8px; }

/* Dot bullets (Handoff) */
.offers__features--dot li::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #1a2e38;
  margin-top: 0.35em;
  flex-shrink: 0;
}
.offers__features--dot li { color: #3d2e00; }

/* Check bullets (FH) */
.offers__features--check li::before {
  content: '✓';
  color: #7ed957;
  font-weight: 700;
  flex-shrink: 0;
}
.offers__features--check li { color: #cde0e8; }

/* Availability notes */
.offers__avail {
  font-size: 1rem;
  font-weight: 700;
  padding: 8px 12px;
  border-radius: 8px;
  text-align: center;
}
.offers__avail--yellow { background: rgba(0,0,0,0.1); color: #5a3e00; }
.offers__avail--green {
  background: rgba(126,217,87,0.08);
  color: #7ed957;
  border: 1px solid rgba(126,217,87,0.2);
}

/* CTA button — matches site .btn style */
.offers__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  font-family: var(--sans);
  font-size: 1.06rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0 1.75rem;
  height: 50px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  background: var(--navy);
  color: var(--white);
  margin-top: 1.25rem;
  transition: background 0.2s, color 0.2s, transform 0.15s;
  white-space: nowrap;
}
.offers__cta:hover { background: var(--green) !important; color: var(--navy) !important; transform: translateY(-1px); }

/* FH card CTA — green bg, navy text, yellow hover */
.offers__card--fh .offers__cta {
  background: var(--green);
  color: var(--navy);
}
.offers__card--fh .offers__cta:hover { background: var(--yellow) !important; color: var(--navy) !important; }

/* Connector */
.offers__connector {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 0 1.25rem;
  flex-shrink: 0;
}
.conn-line { width: 2px; height: 40px; background: rgba(126,217,87,0.3); }
.conn-arrow { color: #7ed957; font-size: 1.2rem; }
.conn-label {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #7ed957;
  opacity: 0.7;
  writing-mode: vertical-lr;
  transform: rotate(180deg);
  margin: 4px 0;
}

/* Social proof */
.offers__proof { text-align: center; max-width: 700px; margin: 0 auto; padding-top: 3.5rem; }
.offers__quote {
  font-family: var(--serif);
  font-style: normal;
  font-weight: 700;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--navy);
  line-height: 1.15;
}
.offers__quote strong { color: var(--navy); font-style: normal; }
.offers__cta--secondary {
  width: auto;
  padding: 0.75em 2.5rem;
  margin-top: 1.5rem;
}
.offers__proof .btn-cta { margin-top: 2rem; }


/* ── FH Responsive ───────────────────────────────────────── */
@media (max-width: 1024px) {
  .fh-hero__top          { flex-direction: column; align-items: flex-start; }
  .fh-built__inner       { grid-template-columns: 1fr; }
  .fh-support__inner     { grid-template-columns: 1fr; }
  .fh-why__inner         { grid-template-columns: 1fr; }
  .fh-ct { padding: 60px var(--pad) 80px; }
}

@media (max-width: 700px) {
  .fh-pain__inner    { grid-template-columns: 1fr 1fr; }
  .fh-ct__cta { text-align: center; }
}

@media (max-width: 480px) {
  .fh-pain__inner { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .offers { padding: 2.5rem 1.25rem; }
  .offers__journey { grid-template-columns: 1fr; }
  .offers__connector { flex-direction: row; padding: 1rem 0; }
  .conn-line { width: 40px; height: 2px; }
  .conn-label { writing-mode: horizontal-tb; transform: none; }
  .conn-arrow { transform: rotate(-90deg); }
}


/* ============================================================
   ABOUT PAGE
   ============================================================ */

/* ── Hero ────────────────────────────────────────────────── */
.ab-hero { background: var(--navy); padding: 100px var(--pad) 80px; }
.ab-hero__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 0.45fr;
  gap: 4rem;
  align-items: end;
}
.ab-hero__headline {
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3.8vw, 4.1rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 1.25rem;
  padding-top: 3rem;
}
.ab-hero__sub {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
}
.ab-hero__body { font-size: 1rem; color: rgba(255,255,255,0.72); line-height: 1.75; }
.ab-hero__aside { display: flex; flex-direction: column; align-items: flex-end; gap: 1.25rem; text-align: right; }
.ab-hero__tagline {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.4;
}
.ab-hero__tagline em { font-style: italic; }

/* ── I've seen this from both sides ─────────────────────── */
.ab-seen { background: var(--yellow); padding: 80px var(--pad); }
.ab-seen__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.ab-seen__headline {
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3.8vw, 4.1rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.ab-seen__body { font-size: 1rem; color: var(--navy); line-height: 1.75; margin-bottom: 1.1rem; }
.ab-seen__body:last-child { margin-bottom: 0; }
.ab-seen__image { border-radius: 12px; overflow: hidden; }
.ab-seen__image img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ── That's where Handled comes in ──────────────────────── */
.ab-handled {
  background: var(--yellow);
  padding: 80px var(--pad) 140px;
  position: relative;
  text-align: center;
}
.ab-handled::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url('assets/Mountain.avif') bottom center / 100% auto no-repeat;
  opacity: 0.10;
  pointer-events: none;
}
.ab-handled__inner { max-width: var(--max); margin: 0 auto; position: relative; z-index: 1; }
.ab-handled__headline {
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3.8vw, 4.1rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: 2rem;
}
.ab-handled__body { font-size: 1rem; color: var(--navy); line-height: 1.75; margin-bottom: 1.1rem; }
.ab-handled__body:last-of-type { margin-bottom: 2rem; }

/* ── Experience ──────────────────────────────────────────── */
.ab-experience {
  background: linear-gradient(180deg,
    #1E3D51 0%,
    #1c3d46 18%,
    #1b3d38 35%,
    #1e4835 48%,
    #286840 62%,
    #3d9447 75%,
    #55be50 88%,
    #69DE5F 100%
  );
  padding: 100px var(--pad) 100px;
  text-align: center;
}
.ab-experience__inner { max-width: 1100px; margin: 0 auto; }
.ab-experience__headline {
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3.8vw, 4.1rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.ab-experience__body { font-size: 1rem; color: rgba(255,255,255,0.8); line-height: 1.75; margin-bottom: 2rem; }

/* ── Closing green ───────────────────────────────────────── */
.ab-closing { background: var(--green); padding: 80px var(--pad); }
.ab-closing__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4rem;
  align-items: end;
}
.ab-closing__headline {
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3.8vw, 4.1rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: 1rem;
}
.ab-closing__body { font-size: 1rem; color: var(--navy); line-height: 1.75; }
.ab-closing__cta { display: flex; flex-direction: column; align-items: flex-end; gap: 1rem; flex-shrink: 0; }
.ab-closing .btn:hover { background: var(--yellow) !important; color: var(--navy) !important; }
.ab-closing__tagline { font-size: 1rem; font-weight: 700; color: var(--navy); white-space: nowrap; }
.ab-closing__tagline em { font-style: italic; }

/* ── How we work ─────────────────────────────────────────── */
.ab-how { background: var(--navy); padding: 80px var(--pad); }
.ab-how__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.ab-how__headline {
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3.8vw, 4.1rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.ab-how__body { font-size: 1rem; color: rgba(255,255,255,0.75); line-height: 1.75; margin-bottom: 1.25rem; }
.ab-how__link { color: rgba(255,255,255,0.9); text-decoration: underline; }
.ab-how__link:hover { color: var(--green); }
.ab-how__image { border-radius: 12px; overflow: hidden; }
.ab-how__image img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ── Stats ───────────────────────────────────────────────── */
.ab-stats { background: var(--navy); padding: 60px var(--pad); }
.ab-stats__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
}
.ab-stats__block {
  flex: 1;
  text-align: center;
}
.ab-stats__divider {
  width: 1px;
  align-self: stretch;
  background: rgba(255,255,255,0.1);
  margin: 0 24px;
  flex-shrink: 0;
}
.ab-stats__num {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 700;
  color: #8aff6c;
  line-height: 1;
  margin-bottom: 6px;
}
.ab-stats__label {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 4px;
}
.ab-stats__qual {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 400;
  color: rgba(255,255,255,0.65);
  line-height: 1.4;
}

/* ── About responsive ────────────────────────────────────── */
@media (max-width: 1024px) {
  .ab-hero__inner    { grid-template-columns: 1fr; }
  .ab-hero__aside    { flex-direction: row; align-items: center; }
  .ab-seen__inner    { grid-template-columns: 1fr; }
  .ab-how__inner     { grid-template-columns: 1fr; }
  .ab-closing__inner { grid-template-columns: 1fr; }
  .ab-closing__cta   { align-items: flex-start; }
}

@media (max-width: 768px) {
  .ab-stats__inner   { flex-direction: column; align-items: stretch; }
  .ab-stats__divider { width: 100%; height: 1px; align-self: auto; margin: 16px 0; }
  .ab-stats__block   { text-align: center; }
}

@media (max-width: 600px) {
  .ab-hero { padding: 80px var(--pad) 60px; }
}


/* ============================================================
   GLOBAL MOBILE — all pages
   ============================================================ */
@media (max-width: 767px) {

  /* Nav — hide CTA button on mobile (hamburger menu takes over) */
  .nav__right .btn { display: none; }
  .nav__right .btn-cta { display: none; }

  /* btn-cta — scale down on small screens */
  .btn-main {
    font-size: 12px;
    padding: 7px 10px 7px 16px;
    gap: 10px;
  }
  .btn-dot { width: 24px; height: 24px; font-size: 13px; }

  /* Hero (homepage) */
  .hero__top { padding: 60px var(--pad) 40px; }

  /* Footer */
  .footer__top { gap: 2.5rem; }
  .footer__nav { grid-template-columns: 1fr 1fr; }

  /* FH page */
  .fh-hero__top { padding: 60px var(--pad) 40px; flex-direction: column; align-items: flex-start; }
  .fh-built__inner { grid-template-columns: 1fr; }
  .fh-built__image { height: auto; }
  .fh-built__image img { max-height: none; }
  .fh-support__inner { grid-template-columns: 1fr; }
  .fh-support__cards { grid-template-columns: 1fr 1fr; }
  .fh-why__inner { grid-template-columns: 1fr; }
  .fh-why__grid { grid-template-columns: 1fr 1fr; }
  .fh-ct__headline { font-size: clamp(1.6rem, 6vw, 2.4rem); }
  .offers__journey { grid-template-columns: 1fr; }
  .offers__connector { flex-direction: row; padding: 1rem 0; }
  .conn-line { width: 40px; height: 2px; }
  .conn-label { writing-mode: horizontal-tb; transform: none; }
  .conn-arrow { transform: rotate(-90deg); }
  /* FH Handled banner: more breathing room between lines */
  .fh-handled-list__lines li { line-height: 1.55; margin-bottom: 0.3rem; }
  /* FH images: consistent 4/3 aspect ratio on mobile */
  .fh-built__image,
  .fh-support__image,
  .fh-why__image { aspect-ratio: 4/3; height: auto; }
  .fh-built__image img,
  .fh-support__image img,
  .fh-why__image img { width: 100%; height: 100%; object-fit: cover; min-height: unset; }

  /* About page */
  .ab-hero__inner { grid-template-columns: 1fr; }
  .ab-hero__aside { flex-direction: row; flex-wrap: wrap; align-items: center; gap: 1rem; }
  .ab-seen__inner { grid-template-columns: 1fr; }
  .ab-seen__image { max-height: 340px; }
  .ab-seen__image img { object-fit: cover; max-height: 340px; }
  .ab-how__inner { grid-template-columns: 1fr; }
  .ab-closing__inner { grid-template-columns: 1fr; }
  .ab-closing__cta { align-items: flex-start; }
}

@media (max-width: 480px) {
  .fh-support__cards { grid-template-columns: 1fr; }
  .fh-why__grid { grid-template-columns: 1fr; }
  .footer__nav { grid-template-columns: 1fr; }
}


/* ============================================================
   WORK PAGE
   ============================================================ */

/* Hero */
.wk-hero { background: var(--navy); padding: 120px var(--pad) 0; }
.wk-hero__inner { max-width: var(--max); margin: 0 auto; }
.wk-hero__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  padding-bottom: 60px;
}
.wk-hero__text { max-width: 640px; }
.wk-hero__headline {
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3.8vw, 4.1rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}
.wk-hero__sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.75;
  max-width: 500px;
}
.wk-hero__cta { flex-shrink: 0; align-self: flex-end; }
.wk-hero__img { width: 100%; aspect-ratio: 16/6; object-fit: cover; display: block; object-position: center 40%; }

/* Case studies — navy side-by-side */
.wk-work { background: var(--navy); padding: 60px var(--pad); }
.wk-work__inner { max-width: var(--max); margin: 0 auto; }
.wk-work__heading { font-family: var(--serif); font-size: clamp(1.7rem, 3.8vw, 4.1rem); font-weight: 700; color: #fff; margin-bottom: 2rem; }
.wk-work__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.wk-work__imgwrap { background: rgba(255,255,255,0.04); border-radius: 8px; height: 280px; margin-bottom: 20px; overflow: hidden; }
.wk-work__imgwrap img { width: 100%; height: 100%; object-fit: cover; display: block; }
.wk-work__meta { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.wk-work__tag { font-size: 11px; color: #8aff6c; background: rgba(138,255,108,0.1); padding: 3px 0; border-radius: 100px; width: 96px; text-align: center; display: inline-block; }
.wk-work__loc { font-size: 11px; color: rgba(255,255,255,0.3); }
.wk-work__name { font-family: var(--serif); font-size: 22px; font-weight: 700; color: #fff; margin-bottom: 6px; }
.wk-work__tagline { font-size: 14px; font-weight: 600; color: rgba(255,255,255,0.7); margin-bottom: 10px; }
.wk-work__desc { font-size: 13px; font-weight: 400; color: rgba(255,255,255,0.45); line-height: 1.6; margin-bottom: 20px; }
.wk-work__stats { display: flex; align-items: stretch; gap: 16px; margin-bottom: 20px; }
.wk-work__stat { display: flex; flex-direction: column; }
.wk-work__stat-val { font-family: var(--serif); font-size: 18px; font-weight: 600; color: #8aff6c; }
.wk-work__stat-label { font-size: 12px; color: rgba(255,255,255,0.4); }
.wk-work__stat-div { width: 1px; background: rgba(255,255,255,0.08); flex-shrink: 0; }
.wk-work__cta { display: inline-block; padding: 8px 20px; border: 0.5px solid rgba(255,255,255,0.2); border-radius: 100px; font-size: 12px; font-weight: 500; color: #fff; text-decoration: none; transition: border-color 0.2s; }
.wk-work__cta:hover { border-color: rgba(255,255,255,0.4); }

/* Industries (navy section) */
.wk-industries { background: var(--navy); padding: 80px var(--pad) 0; }
.wk-industries__inner { max-width: var(--max); margin: 0 auto; }
.wk-industries__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 3rem;
}
.wk-industries__heading {
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3.8vw, 4.1rem);
  font-weight: 700;
  color: var(--white);
}
.wk-grid-wrap { position: relative; overflow: hidden; }
.wk-grid {
  display: flex;
  gap: 24px;
  cursor: grab;
  user-select: none;
  will-change: transform;
}
.wk-grid.is-dragging { cursor: grabbing; }
.wk-grid__slide {
  flex: 0 0 calc((100% - 48px) / 3);
}
@media (max-width: 680px) {
  .wk-grid__slide { flex: 0 0 82vw; }
  .wk-grid__arrow { display: none; }
}
.wk-grid__img {
  overflow: hidden;
  height: clamp(280px, 30vw, 420px);
  margin-bottom: 14px;
  background: #2a5060;
}
.wk-grid__img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.wk-grid__name { font-size: 0.9rem; font-weight: 600; color: var(--white); margin-bottom: 3px; }
.wk-grid__cat { font-size: 0.85rem; color: rgba(255,255,255,0.55); }
.wk-grid__arrow {
  position: absolute;
  top: calc(50% - 30px);
  transform: translateY(-50%);
  z-index: 10;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  font-size: 1.1rem;
  background: rgba(30, 61, 81, 0.65);
  color: var(--white);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: background 0.2s, transform 0.15s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wk-grid__arrow:hover { background: var(--navy); transform: translateY(-50%) scale(1.08); }
.wk-grid__arrow--next { right: 1rem; }
.wk-grid__arrow--prev { left: 1rem; }

/* Stats row */
.wk-stats { background: var(--navy); padding: 80px var(--pad); }
.wk-stats__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}
.wk-stats__heading {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2.2vw, 1.9rem);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 0.75rem;
}
.wk-stats__sub { font-size: 1rem; color: rgba(255,255,255,0.7); line-height: 1.55; }

/* Built for real output (gradient) */
.wk-output {
  background: linear-gradient(180deg,
    #1E3D51 0%,
    #1c3d46 18%,
    #1b3d38 35%,
    #1e4835 48%,
    #286840 62%,
    #3d9447 75%,
    #55be50 88%,
    #69DE5F 100%
  );
  padding: 100px var(--pad);
  text-align: center;
}
.wk-output__inner { max-width: 700px; margin: 0 auto; }
.wk-output__heading {
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3.8vw, 4.1rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 2rem;
}
.wk-output__lead {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.75;
  margin-bottom: 0.75rem;
}
.wk-output__body {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.9);
  line-height: 1.75;
  margin-bottom: 2.5rem;
}

/* Work closing CTA (green) */
.wk-closing { background: var(--green); padding: 80px var(--pad); }
.wk-closing__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}
.wk-closing__heading {
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3.8vw, 4.1rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 1rem;
}
.wk-closing__sub {
  font-size: 1rem;
  color: var(--navy);
  line-height: 1.75;
  max-width: 480px;
  opacity: 0.8;
}
.wk-closing__cta { flex-shrink: 0; text-align: right; }
.wk-closing__tagline {
  font-size: 1rem;
  font-weight: 700;
  font-style: italic;
  color: var(--navy);
  margin-bottom: 1rem;
}

/* ============================================================
   BARFOOT & THOMPSON CASE STUDY  (bt-)
   ============================================================ */

/* Hero */
.bt-hero {
  background: var(--navy);
  padding: 120px var(--pad) 80px;
}
.bt-hero__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 60px;
}
.bt-hero__text { flex: 1; min-width: 0; }
.bt-hero__client {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8aff6c;
  margin-bottom: 1rem;
}
.bt-hero__headline {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.25rem;
}
.bt-hero__desc {
  font-size: 0.97rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
  margin-bottom: 2rem;
  max-width: 520px;
}
.bt-hero__stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.bt-hero__stat {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.bt-hero__stat-num {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
}
.bt-hero__stat-label {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.03em;
}
.bt-hero__divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.15);
  flex-shrink: 0;
}
.bt-hero__image {
  flex: 0 0 45%;
  border-radius: 8px;
  overflow: hidden;
}
.bt-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

/* The Story */
.bt-story {
  background: var(--navy);
  padding: 80px var(--pad);
  border-top: 1px solid rgba(255,255,255,0.08);
}
.bt-story__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}
.bt-story__label {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #8aff6c;
  margin-bottom: 1rem;
}
.bt-story__body {
  font-size: 0.97rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
  margin-bottom: 0.75rem;
}
.bt-story__body:last-child { margin-bottom: 0; }

/* The Work */
.bt-work {
  background: var(--navy);
  padding: 80px var(--pad);
  border-top: 1px solid rgba(255,255,255,0.08);
}
.bt-work__inner { max-width: var(--max); margin: 0 auto; }
.bt-work__headline {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 2rem;
}
.bt-work__filters {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.bt-filter {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: rgba(255,255,255,0.4);
  background: transparent;
  border: none;
  padding: 0.4rem 0.9rem;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.bt-filter.active,
.bt-filter:hover {
  background: rgba(255,255,255,0.1);
  color: var(--white);
}
.bt-work__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.bt-work__item {
  opacity: 1;
  transition: opacity 0.25s ease;
}
.bt-work__img-wrap {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255,255,255,0.05);
}
.bt-work__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.bt-work__img-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem 0.75rem 0.6rem;
  font-size: 0.6875rem;
  color: rgba(255,255,255,0.7);
  background: linear-gradient(transparent, rgba(0,0,0,0.55));
  letter-spacing: 0.03em;
}

/* Testimonial */
.bt-tq {
  background: linear-gradient(180deg,
    #1E3D51 0%,
    #1b3d4e 8%,
    #183e48 17%,
    #154040 26%,
    #134338 35%,
    #154c2f 44%,
    #1c5a27 52%,
    #256c2a 61%,
    #317f2e 70%,
    #409832 79%,
    #53bc3d 89%,
    #69DE5F 100%
  );
  padding: 90px var(--pad);
}
.bt-tq__inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.bt-tq__avatar {
  flex-shrink: 0;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.05em;
}
.bt-tq__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.bt-tq__content { flex: 1; min-width: 0; }
.bt-tq__open {
  font-family: var(--serif);
  font-size: 3rem;
  line-height: 1;
  color: rgba(255,255,255,0.2);
  margin-bottom: 0.5rem;
}
.bt-tq__quote {
  font-family: var(--serif);
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  color: var(--white);
  line-height: 1.6;
  font-weight: 400;
  margin-bottom: 1.5rem;
}
.bt-tq__name {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.2rem;
}
.bt-tq__role {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
}

/* CTA */
.bt-cta { background: var(--green); padding: 70px var(--pad); }
.bt-cta__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}
.bt-cta__text { flex: 1; min-width: 0; }
.bt-cta__headline {
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3.8vw, 4.1rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 0.6rem;
}
.bt-cta__sub {
  font-size: 0.97rem;
  color: rgba(22,42,58,0.55);
  line-height: 1.6;
  max-width: 440px;
}
.bt-cta__btn {
  flex-shrink: 0;
  background: #162a3a;
  color: var(--white);
  font-size: 1.27rem;
  font-weight: 600;
  padding: 1.05rem 2.4rem;
  border-radius: 100px;
  transition: background 0.2s;
  white-space: nowrap;
}
.bt-cta__btn:hover { background: var(--yellow) !important; color: var(--navy) !important; }

/* Barfoot responsive */
@media (max-width: 900px) {
  .bt-hero__inner { flex-direction: column-reverse; gap: 2rem; }
  .bt-hero__image { flex: none; width: 100%; }
  .bt-story__inner { grid-template-columns: 1fr; gap: 2rem; }
  .bt-tq__inner { flex-direction: column; align-items: center; text-align: center; }
  .bt-cta__inner { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 680px) {
  .bt-work__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .bt-work__grid { grid-template-columns: 1fr; }
}

/* ============================================================
   STATUS REALTY CASE STUDY  (st-)
   ============================================================ */

/* Hero */
.st-hero { background: var(--navy); padding: 120px var(--pad) 80px; }
.st-hero__inner { max-width: var(--max); margin: 0 auto; }
.st-hero__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 3rem;
  margin-bottom: 4rem;
}
.st-hero__text { flex: 1; min-width: 0; }
.st-hero__client {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8aff6c;
  margin-bottom: 1rem;
}
.st-hero__headline {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.25rem;
}
.st-hero__sub {
  font-size: 0.97rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
  max-width: 520px;
}
.st-hero__cta { flex-shrink: 0; padding-top: 0.5rem; }
.st-hero__features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.st-hero__feat-title {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 0.6rem;
}
.st-hero__feat-body {
  font-size: 0.97rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
}

/* The Story — tabs */
.st-story { background: var(--navy); }
.st-story__tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255,255,255,0.08);
}
.st-story__tab {
  padding: 1.5rem 2rem;
  text-align: center;
  font-family: var(--serif);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--yellow);
  border: none;
  border-right: 1px solid rgba(0,0,0,0.12);
  cursor: pointer;
  opacity: 0.55;
  transition: opacity 0.2s;
}
.st-story__tab:last-child { border-right: none; }
.st-story__tab.active { opacity: 1; }
.st-story__tab:hover { opacity: 0.85; }
.st-story__panels { background: rgba(22,42,58,0.55); }
.st-story__panel {
  display: none;
  padding: 3rem var(--pad);
  max-width: var(--max);
  margin: 0 auto;
  text-align: center;
}
.st-story__panel.active { display: block; }
.st-story__panel-body {
  font-size: 0.97rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.75;
  margin-bottom: 1rem;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}
.st-story__panel-body:last-child { margin-bottom: 0; }

/* The Work */
.st-work { background: var(--navy); padding: 80px var(--pad); border-top: 1px solid rgba(255,255,255,0.08); }
.st-work__inner { max-width: var(--max); margin: 0 auto; }
.st-work__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2.5rem;
}
.st-work__headline {
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3.8vw, 4.1rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
}
.st-work__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.st-work__item { border-radius: 8px; overflow: hidden; }
.st-work__img-wrap {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255,255,255,0.05);
}
.st-work__img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Testimonial — reuses gradient, different layout for multi-para quote */
.st-tq {
  background: linear-gradient(180deg,
    #1E3D51 0%, #1c3e50 8%, #194049 17%, #164141 26%,
    #164539 35%, #1a4d33 44%, #255931 52%,
    #306c33 61%, #3e8338 70%, #509d3f 79%, #60bf4b 89%, #69DE5F 100%
  );
  padding: 90px var(--pad);
}
.st-tq__inner {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 3rem;
}
.st-tq__avatar {
  flex-shrink: 0;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  color: rgba(255,255,255,0.5);
}
.st-tq__avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
.st-tq__content { flex: 1; min-width: 0; }
.st-tq__open {
  font-family: var(--serif);
  font-size: 3rem;
  line-height: 1;
  color: rgba(255,255,255,0.25);
  margin-bottom: 1rem;
}
.st-tq__para {
  font-size: 0.97rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.75;
  margin-bottom: 1rem;
}
.st-tq__para:last-of-type { margin-bottom: 1.5rem; }
.st-tq__name {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--white);
}

/* CTA — identical to Barfoot, reuse bt-cta */

/* Status responsive */
@media (max-width: 900px) {
  .st-hero__top { flex-direction: column; gap: 2rem; }
  .st-hero__features { grid-template-columns: 1fr; gap: 1.5rem; }
  .st-story__tab { padding: 1rem; font-size: 0.7rem; }
  .st-work__header { flex-direction: column; align-items: flex-start; }
  .st-tq__inner { flex-direction: column; align-items: center; text-align: center; }
}
@media (max-width: 680px) {
  .st-work__grid { grid-template-columns: repeat(2, 1fr); }
  .st-story__tabs { grid-template-columns: 1fr; }
  .st-story__tab { border-right: none; border-bottom: 1px solid rgba(0,0,0,0.12); }
}
@media (max-width: 480px) {
  .st-work__grid { grid-template-columns: 1fr; }
}

/* Work page responsive */
@media (max-width: 900px) {
  .wk-hero__head { flex-direction: column; align-items: flex-start; }
  .wk-industries__header { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
  .wk-stats__inner { grid-template-columns: 1fr; gap: 2rem; }
  .wk-closing__inner { flex-direction: column; align-items: flex-start; }
  .wk-closing__cta { text-align: left; }
}
@media (max-width: 768px) {
  .wk-work__grid { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 680px) {
  .wk-hero__img { aspect-ratio: 4/3; }
}

/* ============================================================
   JOURNAL PAGE  (jnl-)
   ============================================================ */

.jnl-hero {
  background: var(--navy);
  padding: 120px var(--pad) 70px;
}
.jnl-hero__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: flex-end;
  gap: 4rem;
}
.jnl-hero__heading {
  font-family: var(--serif);
  font-size: clamp(3rem, 7vw, 7rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  flex-shrink: 0;
}
.jnl-hero__text { flex: 1; padding-bottom: 0.5rem; }
.jnl-hero__lead {
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.6;
  margin-bottom: 0.6rem;
}
.jnl-hero__sub {
  font-size: 0.97rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
}

.jnl-articles {
  background: var(--navy);
  padding: 0 var(--pad) 100px;
}
.jnl-articles__inner { max-width: var(--max); margin: 0 auto; }

/* Card links — override journal colours for standalone page */
.jnl-card {
  display: block;
  text-decoration: none;
  cursor: pointer;
}
.jnl-card .journal__meta  { color: rgba(255,255,255,0.45); }
.jnl-card .journal__title { color: var(--white); transition: color 0.2s; }
.jnl-card .journal__excerpt { color: rgba(255,255,255,0.6); }
.jnl-card:hover .journal__title { color: var(--green); }

@media (max-width: 680px) {
  .jnl-hero__inner { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
}
   ============================================================ */

/* Section 1 — Info (navy) */
/* Single-column stacked layout */
.rd-split {
  background: var(--navy);
  padding-top: 90px;
  padding-bottom: 110px;
  padding-left: var(--pad);
  padding-right: var(--pad);
}
.rd-split__inner {
  max-width: 860px;
  margin: 0 auto;
}
/* Explicit top breathing room so heading is always clear of the fixed nav */
.rd-split .rd-info__heading {
  padding-top: 200px;
  font-size: clamp(1.9rem, 3.5vw, 4.1rem);
}
.rd-split__cal {
  margin: 2.5rem 0 3rem;
  width: 100%;
}
.rd-split__body {
  max-width: 680px;
}
@media (max-width: 680px) {
  .rd-split {
    padding-top: 80px;
    padding-bottom: 60px;
    padding-left: 1.75rem;
    padding-right: 1.75rem;
  }
  .rd-split .rd-info__heading { padding-top: 2.5rem; }
}

/* Legacy stacked layout (kept for fallback) */
.rd-info { background: var(--navy); padding: 120px var(--pad) 90px; }
.rd-info__inner { max-width: 860px; margin: 0 auto; }
.rd-info__heading {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 2rem;
}
.rd-info__lead {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.8vw, 2.2rem);
  font-weight: 700;
  font-style: italic;
  color: var(--white);
  line-height: 1.35;
  margin-bottom: 2rem;
}
.rd-info__sub-label {
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.rd-info__list {
  list-style: disc;
  padding-left: 1.4rem;
  margin-bottom: 1.75rem;
}
.rd-info__list li {
  font-size: 0.97rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  margin-bottom: 0.3rem;
}
.rd-info__body {
  font-size: 0.97rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.75;
  margin-bottom: 1.5rem;
  max-width: 660px;
}
.rd-info__kicker {
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.6;
}

/* Section 2 — Booking (yellow) */
.rd-book { background: var(--yellow); padding: 80px var(--pad); }
.rd-book__inner {
  max-width: 900px;
  margin: 0 auto;
}
.rd-book__heading {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.8vw, 2.4rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 2.5rem;
}
.rd-book__right {
  display: none;
}
.rd-book__right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 8px;
}

/* Form */
.rd-form { display: flex; flex-direction: column; gap: 1.25rem; }
.rd-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.rd-form__field { display: flex; flex-direction: column; gap: 0.4rem; }
.rd-form__label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
}
.rd-form__req { color: var(--navy); }
.rd-form__input {
  background: rgba(255,255,255,0.55);
  border: 1px solid rgba(30,61,81,0.15);
  border-radius: 4px;
  padding: 0.65rem 0.9rem;
  font-family: var(--sans);
  font-size: 0.9rem;
  color: var(--navy);
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}
.rd-form__input:focus {
  background: rgba(255,255,255,0.8);
  border-color: rgba(30,61,81,0.4);
}
.rd-form__textarea { min-height: 130px; resize: vertical; }
.rd-form__submit {
  align-self: flex-start;
  background: var(--navy);
  color: var(--white);
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 0.7rem 1.75rem;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}
.rd-form__submit:hover { background: #2a5060; }

/* Responsive */
@media (max-width: 860px) {
  .rd-book__inner { max-width: 100%; }
}
@media (max-width: 480px) {
  .rd-form__row { grid-template-columns: 1fr; }
}

/* ============================================================
   ARTICLE PAGE  (art-)
   ============================================================ */

.art-hero {
  background: var(--navy);
  padding: 100px var(--pad) 0;
}
.art-hero__inner { max-width: var(--max); margin: 0 auto; }
.art-hero__back {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  margin-bottom: 2.5rem;
  transition: color 0.2s;
}
.art-hero__back:hover { color: var(--green); }
.art-hero__meta {
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.art-hero__heading {
  font-family: var(--serif);
  font-size: clamp(2rem, 4.5vw, 3.75rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  max-width: 820px;
  margin-bottom: 3.5rem;
}
.art-hero__image {
  width: 100%;
  aspect-ratio: 16/7;
  object-fit: cover;
  object-position: center;
  border-radius: 6px 6px 0 0;
  display: block;
  margin: 0 auto;
}

/* Body */
.art-body {
  background: #f5f3ef;
  color: #2A2520;
  padding: 70px var(--pad) 100px;
}
.art-body__inner {
  max-width: 720px;
  margin: 0 auto;
}
.art-body__intro {
  font-family: var(--serif);
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.55;
  margin-bottom: 2rem;
}
.art-body__p {
  font-size: 1rem;
  color: #2a2a2a;
  line-height: 1.85;
  margin-bottom: 1.6rem;
}
.art-body__h2 {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2.5vw, 1.75rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.25;
  margin: 2.5rem 0 1rem;
}
.art-body__rule {
  border: none;
  border-top: 1px solid rgba(30,61,81,0.15);
  margin: 3rem 0;
}

/* Bottom CTA */
.art-cta {
  background: var(--green);
  padding: 80px var(--pad);
  text-align: center;
}
.art-cta__inner { max-width: 700px; margin: 0 auto; }
.art-cta__heading {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 1.25rem;
}
.art-cta__body {
  font-size: 1rem;
  color: var(--navy);
  line-height: 1.75;
  margin-bottom: 2rem;
  opacity: 0.8;
}

@media (max-width: 680px) {
  .art-hero { padding-top: 90px; }
  .art-hero__image { aspect-ratio: 4/3; border-radius: 4px 4px 0 0; }
}

/* ============================================================
   ARTICLE — COMPARISON CARDS  (art-2)
   ============================================================ */

.art-compare-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 2rem 0;
}
.art-compare-card {
  border: 1px solid rgba(30,61,81,0.12);
  border-radius: 6px;
  padding: 1.25rem;
  background: #fff;
}
.art-compare-card--highlight {
  background: var(--navy);
  border-color: var(--navy);
}
.art-compare-card__label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(30,61,81,0.45);
  margin-bottom: 0.4rem;
}
.art-compare-card--highlight .art-compare-card__label { color: var(--green); }
.art-compare-card__title {
  font-family: var(--serif);
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}
.art-compare-card--highlight .art-compare-card__title { color: var(--white); }
.art-compare-card__price {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.75rem;
}
.art-compare-card--highlight .art-compare-card__price { color: var(--green); }
.art-compare-card__list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.6;
}
.art-compare-card__list li {
  padding-left: 1.1rem;
  position: relative;
  color: rgba(30,61,81,0.7);
  margin-bottom: 0.2rem;
}
.art-compare-card--highlight .art-compare-card__list li { color: rgba(255,255,255,0.7); }
.art-compare-card__list li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: rgba(30,61,81,0.35);
}
.art-compare-card--highlight .art-compare-card__list li::before { color: rgba(255,255,255,0.3); }
.art-compare-card__list li.pro::before { content: '✓'; color: var(--green); }
.art-compare-card--highlight .art-compare-card__list li.pro::before { color: var(--green); }

@media (max-width: 680px) {
  .art-compare-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   ARTICLE — CAUSES INFOGRAPHIC  (inc-)
   ============================================================ */

.inc-section {
  background: #f5f3ef;
  padding: 0 var(--pad) 60px;
}
.inc {
  max-width: 820px;
  margin: 0 auto;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 24px rgba(30,61,81,0.12);
}
.inc__card {
  background: #fff;
  padding: 2.5rem;
}
.inc__header {
  text-align: center;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid rgba(30,61,81,0.1);
  margin-bottom: 1.75rem;
}
.inc__header-title {
  font-family: var(--serif);
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.35rem;
}
.inc__header-sub {
  font-size: 0.82rem;
  color: rgba(30,61,81,0.5);
}
.inc__lead {
  text-align: center;
  margin-bottom: 1.75rem;
}
.inc__lead-heading {
  font-family: var(--serif);
  font-size: clamp(0.97rem, 1.6vw, 1.1rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.4rem;
}
.inc__lead-body {
  font-size: 0.82rem;
  color: rgba(30,61,81,0.6);
  line-height: 1.65;
  max-width: 480px;
  margin: 0 auto;
}
.inc__cause {
  display: grid;
  grid-template-columns: 40px 1fr 240px;
  gap: 1.25rem;
  padding: 1.4rem 0;
  border-top: 1px solid rgba(30,61,81,0.08);
  align-items: start;
}
.inc__cause-num {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.inc__cause-title {
  font-family: var(--serif);
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.35rem;
}
.inc__cause-body {
  font-size: 0.82rem;
  color: rgba(30,61,81,0.65);
  line-height: 1.65;
}
.inc__cause-eg {
  background: #f5f3ef;
  border-radius: 4px;
  padding: 0.85rem;
  font-size: 0.79rem;
  color: rgba(30,61,81,0.7);
  line-height: 1.6;
}
.inc__eg-label { font-weight: 700; color: var(--navy); }
.inc__result {
  text-align: center;
  padding: 1.5rem 0 0.5rem;
  border-top: 1px solid rgba(30,61,81,0.08);
}
.inc__result-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(30,61,81,0.4);
  margin-bottom: 0.5rem;
}
.inc__result-arrow {
  color: var(--yellow);
  font-size: 1.4rem;
  line-height: 1;
}
.inc__impact {
  background: #1a3a4e;
  padding: 2rem 2.5rem;
}
.inc__impact-heading {
  font-family: var(--serif);
  font-size: clamp(0.97rem, 1.8vw, 1.2rem);
  font-weight: 700;
  color: var(--yellow);
  line-height: 1.35;
  margin-bottom: 0.6rem;
}
.inc__impact-body {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
}
.inc__fixes {
  background: #fff;
  padding: 2rem 2.5rem;
}
.inc__fixes-title {
  font-family: var(--serif);
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1.25rem;
}
.inc__fixes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 1.25rem;
}
.inc__fix-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green);
  display: block;
  margin-bottom: 0.3rem;
}
.inc__fix-title {
  font-family: var(--serif);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.35rem;
}
.inc__fix-body {
  font-size: 0.79rem;
  color: rgba(30,61,81,0.65);
  line-height: 1.6;
}
.inc__fixes-close {
  font-size: 0.8rem;
  color: rgba(30,61,81,0.5);
  line-height: 1.6;
  border-top: 1px solid rgba(30,61,81,0.08);
  padding-top: 1.25rem;
}

@media (max-width: 680px) {
  .inc__card { padding: 1.5rem; }
  .inc__cause { grid-template-columns: 36px 1fr; }
  .inc__cause-eg { grid-column: 1 / -1; }
  .inc__impact { padding: 1.5rem; }
  .inc__fixes { padding: 1.5rem; }
  .inc__fixes-grid { grid-template-columns: 1fr; gap: 1rem; }
}


/* ── THE HANDOFF PILOT SECTION ── */
.handoff-pilot {
  background: var(--yellow);
  padding: 100px var(--pad);
}
.handoff-pilot__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.handoff-pilot__label {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(30,61,81,0.5);
  display: block;
  margin-bottom: 1.25rem;
}
.handoff-pilot__headline {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--navy);
  margin-bottom: 1.75rem;
}
.handoff-pilot__headline em {
  font-style: italic;
}
.handoff-pilot__body {
  font-family: var(--sans);
  font-size: 1.05rem;
  color: var(--navy);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}
.handoff-pilot__body--close {
  margin-bottom: 2rem;
}
.handoff-pilot .btn-dark {
  background: var(--navy);
  color: var(--white);
}

/* Card */
.handoff-pilot__card {
  background: var(--navy);
  color: var(--white);
  border-radius: 12px;
  padding: 2.25rem;
}
.handoff-pilot__card-header {
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1rem;
}
.handoff-pilot__pill {
  display: inline-block;
  background: var(--green);
  color: var(--navy);
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.3em 0.75em;
  border-radius: 4px;
  margin-bottom: 1.25rem;
}
.handoff-pilot__price {
  display: flex;
  align-items: flex-end;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}
.handoff-pilot__price-num {
  font-family: var(--serif);
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1;
  color: var(--white);
}
.handoff-pilot__price-meta {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  padding-bottom: 0.4rem;
}
.handoff-pilot__currency {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 700;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.handoff-pilot__rate {
  font-family: var(--sans);
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
}
.handoff-pilot__sub {
  font-family: var(--sans);
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 1.5rem;
}
.handoff-pilot__list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.handoff-pilot__list li {
  font-family: var(--sans);
  font-size: 0.88rem;
  color: var(--white);
  padding-left: 1.75rem;
  position: relative;
}
.handoff-pilot__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0.05em;
  width: 17px;
  height: 17px;
  background: var(--green);
  border-radius: 50%;
  color: var(--navy);
  font-size: 0.6rem;
  font-weight: 900;
  line-height: 17px;
  text-align: center;
}
.handoff-pilot__footer {
  font-family: var(--sans);
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1rem;
}

@media (max-width: 800px) {
  .handoff-pilot { padding: 70px var(--pad); }
  .handoff-pilot__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}


/* ── FH RHYTHM BLOCK ── */
.fh-rhythm {
  background: var(--green);
  border-radius: 12px;
  padding: 3rem;
  margin: 3rem 0 0;
}
.fh-rhythm__heading {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1rem;
}
.fh-rhythm__body {
  font-family: var(--sans);
  font-size: 0.97rem;
  color: rgba(30,61,81,0.8);
  line-height: 1.7;
  margin-bottom: 0.85rem;
}
.fh-rhythm__close {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-top: 1.25rem;
  margin-bottom: 0;
}


/* ============================================================
   ARTICLE VISUAL COMPONENTS  (art-4, 5, 6)
   ============================================================ */

.art-body__h3 {
  font-family: var(--sans);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.35;
  margin: 2rem 0 0.75rem;
}

/* White card for inline charts / tables */
.visual-block {
  background: #fff;
  border: 1px solid #DDD8CE;
  border-radius: 10px;
  padding: 28px;
  margin: 2.5rem 0;
  color: #2A2520;
}
.visual-block h4 {
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #7A7367;
  margin-bottom: 20px;
}
.visual-block__note {
  font-size: 0.75rem;
  color: #7A7367;
  margin-top: 14px;
  margin-bottom: 0;
}

/* CONSISTENCY BAR CHART */
.consistency-chart { display: flex; flex-direction: column; gap: 12px; }
.cc-row { display: grid; grid-template-columns: 140px 1fr 52px; gap: 12px; align-items: center; }
.cc-label { font-family: var(--sans); font-size: 0.82rem; color: #7A7367; font-weight: 500; }
.cc-bar-track { height: 10px; background: #EAE5DC; border-radius: 5px; overflow: hidden; }
.cc-bar-fill { height: 100%; border-radius: 5px; }
.cc-pct { font-size: 0.75rem; font-weight: 600; text-align: right; }

/* BREAKDOWN TABLE + TAGS */
.breakdown-table { width: 100%; border-collapse: collapse; font-size: 0.88rem; }
.breakdown-table th { background: var(--navy); color: #fff; padding: 10px 14px; text-align: left; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; }
.breakdown-table td { padding: 11px 14px; border-bottom: 1px solid #DDD8CE; vertical-align: top; line-height: 1.5; color: #2A2520; }
.breakdown-table tr:last-child td { border-bottom: none; }
.breakdown-table tr:nth-child(even) td { background: #FAFAF8; }
.tag { display: inline-block; font-size: 0.69rem; font-weight: 600; padding: 2px 8px; border-radius: 3px; white-space: nowrap; }
.tag-red   { background: rgba(184,59,42,0.1);  color: #B83B2A; }
.tag-amber { background: rgba(196,130,10,0.1); color: #C4820A; }
.tag-green { background: rgba(58,112,80,0.1);  color: #3A7050; }

/* SCENARIO CALLOUT */
.art-scenario {
  background: #F3F0EA;
  border-left: 4px solid var(--yellow);
  padding: 16px 20px;
  border-radius: 0 6px 6px 0;
  margin: 1.5rem 0;
  font-size: 0.88rem;
  color: #3A3028;
  line-height: 1.65;
}
.art-scenario strong {
  color: #181410;
  display: block;
  margin-bottom: 4px;
  font-size: 0.81rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* COST GRID */
.cost-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 16px; }
.cost-card { border-radius: 6px; padding: 16px; text-align: center; }
.cost-card__val { font-family: var(--sans); font-size: 1.375rem; font-weight: 700; margin-bottom: 4px; }
.cost-card__lbl { font-size: 0.75rem; color: #7A7367; line-height: 1.4; }

/* PULL QUOTE */
.art-pull-quote {
  border-top: 3px solid var(--navy);
  padding: 20px 0 0;
  margin: 2.5rem 0;
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.4;
}

/* TENDER FLOW (article-5) */
.tender-flow { display: flex; flex-direction: column; gap: 0; }
.tf-step { display: grid; grid-template-columns: 36px 1fr; gap: 16px; align-items: stretch; }
.tf-line-col { display: flex; flex-direction: column; align-items: center; }
.tf-dot { width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.81rem; font-weight: 700; flex-shrink: 0; }
.tf-connector { width: 2px; flex: 1; margin: 4px 0; background: #DDD8CE; }
.tf-step:last-child .tf-connector { display: none; }
.tf-body { padding-bottom: 20px; }
.tf-title { font-size: 0.88rem; font-weight: 600; color: #181410; margin-bottom: 4px; }
.tf-desc  { font-size: 0.81rem; color: #7A7367; line-height: 1.55; }
.tf-verdict { display: inline-block; font-size: 0.69rem; font-weight: 600; padding: 2px 8px; border-radius: 3px; margin-top: 6px; }

/* COMPARISON TABLE (article-5) */
.comp-table { width: 100%; border-collapse: collapse; font-size: 0.84rem; }
.comp-table th { padding: 10px 14px; text-align: left; font-size: 0.69rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; border-bottom: 2px solid #DDD8CE; color: #2A2520; }
.comp-table th:first-child { color: #7A7367; }
.comp-table th.winner { color: #3A7050; }
.comp-table td { padding: 11px 14px; border-bottom: 1px solid #DDD8CE; vertical-align: top; line-height: 1.5; color: #2A2520; }
.comp-table td:first-child { font-weight: 500; color: #181410; }
.comp-table td.win  { color: #3A7050; font-weight: 500; }
.comp-table td.mid  { color: #C4820A; }
.comp-table td.lose { color: #B83B2A; }
.comp-table tr:last-child td { border-bottom: none; }
.comp-table tr:nth-child(even) td { background: #FAFAF8; }

/* DOLLAR / BAR CHART (article-5) */
.dollar-chart { display: flex; flex-direction: column; gap: 14px; }
.dc-row { display: grid; grid-template-columns: 180px 1fr 80px; gap: 12px; align-items: center; }
.dc-label { font-size: 0.81rem; color: #181410; font-weight: 500; line-height: 1.3; }
.dc-track { height: 12px; background: #EAE5DC; border-radius: 6px; overflow: hidden; }
.dc-fill  { height: 100%; border-radius: 6px; }
.dc-val   { font-size: 0.81rem; font-weight: 600; text-align: right; }

/* HIDDEN COST TABLE (article-6) */
.cost-breakdown { display: flex; flex-direction: column; gap: 0; }
.cb-row { display: grid; grid-template-columns: 1fr 100px 100px; gap: 0; border-bottom: 1px solid #DDD8CE; }
.cb-row:last-child { border-bottom: none; }
.cb-row.header { background: var(--navy); border-radius: 6px 6px 0 0; border-bottom: none; }
.cb-cell { padding: 12px 14px; font-size: 0.84rem; line-height: 1.4; color: #2A2520; }
.cb-row.header .cb-cell { font-size: 0.69rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.7); }
.cb-row.header .cb-cell:first-child { color: #fff; }
.cb-label     { font-weight: 500; color: #181410; }
.cb-freelance { color: #B83B2A; font-weight: 600; text-align: center; }
.cb-retainer  { color: #3A7050; font-weight: 600; text-align: center; }
.cb-row:nth-child(even) .cb-cell { background: #FAFAF8; }

/* TIPPING GRID (article-6) */
.tipping-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.tp-card { border-radius: 6px; padding: 16px; border: 1px solid #DDD8CE; }
.tp-card.yes { background: rgba(184,59,42,0.05); border-color: rgba(184,59,42,0.2); }
.tp-card.no  { background: rgba(58,112,80,0.05);  border-color: rgba(58,112,80,0.2); }
.tp-badge { font-size: 0.63rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; padding: 2px 8px; border-radius: 3px; display: inline-block; margin-bottom: 8px; }
.tp-card.yes .tp-badge { background: rgba(184,59,42,0.1); color: #B83B2A; }
.tp-card.no  .tp-badge { background: rgba(58,112,80,0.1); color: #3A7050; }
.tp-card h5 { font-size: 0.81rem; font-weight: 600; color: #181410; margin-bottom: 4px; line-height: 1.3; }
.tp-card p  { font-size: 0.75rem; color: #7A7367; line-height: 1.5; margin-bottom: 0; }

@media (max-width: 520px) {
  .cc-row    { grid-template-columns: 100px 1fr 40px; gap: 8px; }
  .cost-grid { grid-template-columns: 1fr; }
  .dc-row    { grid-template-columns: 120px 1fr 60px; gap: 8px; }
  .tipping-grid { grid-template-columns: 1fr; }
}
