/* ==========================================================================
   FFWD Media Mentor — Global Stylesheet
   ========================================================================== */

:root {
  /* Colors */
  --ink: #0b0b0c;
  --ink-2: #18181b;
  --ink-3: #232326;
  --paper: #f7f5f1;
  --paper-2: #efeae1;
  --white: #ffffff;
  --amber: #e8a33d;
  --amber-light: #f4c874;
  --amber-dark: #b97f1f;
  --red: #e63946;
  --line-dark: rgba(255, 255, 255, 0.14);
  --line-dark-strong: rgba(255, 255, 255, 0.24);
  --line-light: rgba(11, 11, 12, 0.12);
  --line-light-strong: rgba(11, 11, 12, 0.2);
  --muted-on-dark: #b6b4ae;
  --muted-on-light: #55534d;

  /* Type */
  --font-display: "Archivo", "Arial Black", sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Layout */
  --container: 1240px;
  --radius-sm: 6px;
  --radius-md: 14px;
  --radius-lg: 26px;
  --shadow-md: 0 20px 50px -20px rgba(11, 11, 12, 0.35);
  --shadow-lg: 0 30px 80px -30px rgba(11, 11, 12, 0.45);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
h4,
p,
figure {
  margin: 0;
}

button {
  font: inherit;
  cursor: pointer;
}

input,
textarea {
  font: inherit;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ---------- Typography ---------- */
h1,
h2,
h3,
h4,
.font-display {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.05;
  text-transform: uppercase;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.55em;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--amber-dark);
}

.kicker::before {
  content: "";
  width: 28px;
  height: 3px;
  background: var(--amber);
  border-radius: 2px;
  display: inline-block;
}

.kicker.on-dark {
  color: var(--amber-light);
}

h1 {
  font-size: clamp(2.6rem, 5.4vw, 4.9rem);
}

h2 {
  font-size: clamp(2rem, 3.6vw, 3.1rem);
}

h3 {
  font-size: clamp(1.25rem, 1.9vw, 1.6rem);
}

h4 {
  font-size: 1.05rem;
  text-transform: none;
  letter-spacing: 0;
}

.lead {
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  line-height: 1.6;
  color: var(--muted-on-light);
}

.on-dark .lead,
.lead.on-dark {
  color: var(--muted-on-dark);
}

.eyebrow-italic {
  font-style: italic;
}

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

section {
  position: relative;
}

.section-pad {
  padding: clamp(64px, 9vw, 128px) 0;
}

.section-pad-sm {
  padding: clamp(48px, 6vw, 84px) 0;
}

.bg-ink {
  background: var(--ink);
  color: var(--white);
}

.bg-paper-2 {
  background: var(--paper-2);
}

.bg-white {
  background: var(--white);
}

/* ---------- Photo-backed section ---------- */
.section-media {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.section-media-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.section-media-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-media-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 11, 12, 0.84) 0%, rgba(11, 11, 12, 0.9) 60%, rgba(11, 11, 12, 0.96) 100%);
}

.section-media > .container {
  position: relative;
  z-index: 1;
}

.grid {
  display: grid;
  gap: 28px;
}

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

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

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

@media (max-width: 980px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 700px) {
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }
}

.text-center {
  text-align: center;
}

.section-head {
  max-width: 680px;
  margin: 0 0 48px;
}

.section-head.centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-head .kicker {
  margin-bottom: 16px;
}

.section-head h2 {
  margin-bottom: 18px;
}

/* ---------- Buttons ---------- */
.btn {
  --btn-fg: var(--ink);
  --btn-bg: var(--amber);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 30px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--btn-bg);
  color: var(--btn-fg);
  border: 2px solid var(--btn-bg);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.35s var(--ease), color 0.35s var(--ease), border-color 0.35s var(--ease);
  white-space: nowrap;
}

.btn svg {
  width: 16px;
  height: 16px;
  transition: transform 0.35s var(--ease);
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.btn:hover svg {
  transform: translateX(4px);
}

.btn-primary {
  --btn-bg: var(--amber);
  --btn-fg: var(--ink);
}

.btn-outline {
  --btn-bg: transparent;
  --btn-fg: var(--white);
  border-color: var(--line-dark-strong);
}

.btn-outline:hover {
  border-color: var(--amber);
  background: rgba(232, 163, 61, 0.08);
}

.btn-outline-dark {
  --btn-bg: transparent;
  --btn-fg: var(--ink);
  border-color: var(--line-light-strong);
}

.btn-outline-dark:hover {
  border-color: var(--ink);
  background: rgba(11, 11, 12, 0.05);
}

.btn-block {
  width: 100%;
}

.btn-lg {
  padding: 20px 40px;
  font-size: 0.95rem;
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: background 0.4s var(--ease), padding 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
  background: rgba(11, 11, 12, 0.92);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  padding: 12px 0;
  border-color: var(--line-dark);
  box-shadow: 0 10px 30px -20px rgba(0, 0, 0, 0.6);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  flex-shrink: 0;
}

.brand img {
  height: 42px;
  width: auto;
}

.brand-word {
  display: block;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.main-nav a {
  position: relative;
  display: inline-block;
  padding: 10px 16px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted-on-dark);
  transition: color 0.3s var(--ease);
}

.main-nav a:hover,
.main-nav a.is-active {
  color: var(--white);
}

.main-nav a.is-active::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 4px;
  height: 2px;
  background: var(--amber);
  border-radius: 2px;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid var(--line-dark-strong);
  flex-shrink: 0;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.35s var(--ease), opacity 0.35s var(--ease);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 900px) {
  .main-nav {
    position: fixed;
    inset: 0;
    top: 0;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    background: var(--ink);
    transform: translateX(100%);
    transition: transform 0.5s var(--ease);
    z-index: 90;
  }

  .main-nav.is-open {
    transform: translateX(0);
  }

  .main-nav a {
    font-size: 1.6rem;
    padding: 14px 20px;
  }

  .header-cta .btn-lg-label {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .header-cta .btn.btn-primary {
    padding: 12px 18px;
    font-size: 0.72rem;
  }
}

.nav-open {
  overflow: hidden;
}

/* backdrop-filter on the header creates a new containing block for
   position:fixed descendants, which would clip the fullscreen mobile
   nav to the header's height. Drop the filter while the nav is open. */
body.nav-open .site-header.is-scrolled {
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  background: var(--ink);
}

/* ---------- Ticker ---------- */
.ticker {
  background: var(--ink);
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  overflow: hidden;
  padding: 13px 0;
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker-scroll 32s linear infinite;
}

.ticker-track span {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted-on-dark);
  padding-right: 40px;
  white-space: nowrap;
}

.ticker-track span::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 4px rgba(230, 57, 70, 0.18);
  flex-shrink: 0;
}

@keyframes ticker-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--ink);
  color: var(--white);
  overflow: hidden;
  padding-top: 120px;
  padding-bottom: 90px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.34;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 11, 12, 0.55) 0%, rgba(11, 11, 12, 0.86) 62%, var(--ink) 100%);
}

.hero-glow {
  position: absolute;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.35;
  z-index: 0;
  pointer-events: none;
}

.hero-glow.amber {
  background: var(--amber);
  top: -180px;
  right: -160px;
}

.hero-glow.red {
  background: var(--red);
  bottom: -200px;
  left: -160px;
  opacity: 0.2;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 880px;
}

.hero-content .kicker {
  margin-bottom: 22px;
  font-size: 1.26rem;
}

.hero h1 {
  margin-bottom: 26px;
}

.hero h1 em {
  font-style: italic;
  color: var(--amber);
}

.hero-lead {
  max-width: 620px;
  font-size: clamp(1.05rem, 1.5vw, 1.3rem);
  color: var(--muted-on-dark);
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 56px;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  border-top: 1px solid var(--line-dark);
  padding-top: 28px;
}

.hero-meta div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero-meta strong {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.4vw, 2.1rem);
  color: var(--white);
}

.hero-meta span {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted-on-dark);
}

.scroll-cue {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--muted-on-dark);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.scroll-cue .line {
  width: 1px;
  height: 34px;
  background: linear-gradient(var(--amber), transparent);
  animation: scroll-cue-move 1.8s ease-in-out infinite;
}

@keyframes scroll-cue-move {
  0% { transform: scaleY(0.4); transform-origin: top; opacity: 0.4; }
  50% { transform: scaleY(1); transform-origin: top; opacity: 1; }
  100% { transform: scaleY(0.4); transform-origin: top; opacity: 0.4; }
}

/* ---------- Page Hero (inner pages) ---------- */
.page-hero {
  position: relative;
  background: var(--ink);
  color: var(--white);
  padding-top: 168px;
  padding-bottom: 90px;
  overflow: hidden;
}

.page-hero .hero-glow {
  opacity: 0.28;
}

.page-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: end;
}

.page-hero h1 {
  margin: 18px 0 20px;
}

.page-hero-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 5;
  border: 1px solid var(--line-dark);
}

.page-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 900px) {
  .page-hero-grid {
    grid-template-columns: 1fr;
  }
  .page-hero-media {
    aspect-ratio: 16 / 10;
    order: -1;
  }
}

.feature-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line-light);
  aspect-ratio: 4 / 3;
}

.feature-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 900px) {
  .feature-media {
    order: -1;
  }
}

/* ---------- Stats ---------- */
.stats-bar {
  border-top: 1px solid var(--line-light);
}

.stats-bar .grid {
  gap: 0;
}

.stat {
  padding: 44px 28px;
  border-right: 1px solid var(--line-light);
  text-align: center;
}

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

.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 2.6rem);
  color: var(--ink);
  margin-bottom: 8px;
}

.stat span {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted-on-light);
}

@media (max-width: 700px) {
  .stat {
    border-right: none;
    border-bottom: 1px solid var(--line-light);
  }
}

/* ---------- Section divider (scroll-down arrow between sections) ---------- */
.section-divider {
  position: relative;
  height: 0;
}

.section-divider-arrow {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border: 1px solid var(--line-light-strong);
  color: var(--ink);
  box-shadow: var(--shadow-md);
  z-index: 6;
  animation: section-divider-pulse 2.2s ease-in-out infinite;
}

.section-divider-arrow svg {
  width: 24px;
  height: 24px;
  animation: section-divider-bounce 1.5s ease-in-out infinite;
}

.section-divider-arrow.on-dark {
  background: var(--ink);
  border-color: var(--line-dark-strong);
  color: var(--amber);
}

@keyframes section-divider-bounce {
  0%, 100% { transform: translateY(-3px); }
  50% { transform: translateY(4px); }
}

@keyframes section-divider-pulse {
  0%, 100% { box-shadow: var(--shadow-md), 0 0 0 0 rgba(232, 163, 61, 0.35); }
  50% { box-shadow: var(--shadow-md), 0 0 0 8px rgba(232, 163, 61, 0); }
}

@media (prefers-reduced-motion: reduce) {
  .section-divider-arrow,
  .section-divider-arrow svg {
    animation: none;
  }
}

@media (max-width: 640px) {
  .section-divider-arrow {
    width: 48px;
    height: 48px;
  }
  .section-divider-arrow svg {
    width: 20px;
    height: 20px;
  }
}

/* ---------- Cards ---------- */
.card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px 32px;
  border: 1px solid var(--line-light);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
  height: 100%;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--ink);
  color: var(--amber);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}

.card-icon svg {
  width: 24px;
  height: 24px;
}

.card h3 {
  margin-bottom: 12px;
  text-transform: none;
}

.card p {
  color: var(--muted-on-light);
  font-size: 0.98rem;
}

.card .card-num {
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  color: var(--amber-dark);
  margin-bottom: 14px;
  display: block;
}

/* Audience cards (dark) */
.audience-card {
  position: relative;
  border-radius: var(--radius-md);
  padding: 40px 32px;
  background: var(--ink-2);
  border: 1px solid var(--line-dark);
  color: var(--white);
  overflow: hidden;
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease);
}

.audience-card:hover {
  transform: translateY(-6px);
  border-color: var(--amber);
}

.audience-card .num {
  font-family: var(--font-display);
  font-size: 0.85rem;
  color: var(--amber);
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  display: block;
}

.audience-card h3 {
  text-transform: none;
  margin-bottom: 14px;
}

.audience-card p {
  color: var(--muted-on-dark);
  font-size: 0.98rem;
}

/* Service detail block */
.service-block {
  display: grid;
  grid-template-columns: 0.4fr 1.6fr;
  gap: 40px;
  padding: 48px 0;
  border-top: 1px solid var(--line-light);
}

.service-block:first-of-type {
  border-top: none;
}

.service-block-head {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-index {
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--amber-dark);
  letter-spacing: 0.1em;
}

.service-block h3 {
  text-transform: none;
  font-size: clamp(1.4rem, 2vw, 1.85rem);
}

.service-tag {
  display: inline-flex;
  align-self: flex-start;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--amber-light);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: var(--font-display);
  font-weight: 700;
}

.service-body p {
  color: var(--muted-on-light);
  margin-bottom: 18px;
}

.service-for {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0 26px;
}

.service-for span {
  font-size: 0.78rem;
  letter-spacing: 0.03em;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--line-light-strong);
  color: var(--muted-on-light);
}

@media (max-width: 800px) {
  .service-block {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

/* ---------- Gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 190px;
  gap: 18px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--line-light);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-item figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 18px 18px 16px;
  background: linear-gradient(0deg, rgba(11, 11, 12, 0.88), transparent);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 600;
  transform: translateY(8px);
  opacity: 0;
  transition: transform 0.4s var(--ease), opacity 0.4s var(--ease);
}

.gallery-item:hover figcaption {
  transform: translateY(0);
  opacity: 1;
}

.gallery-item.span-2 {
  grid-column: span 2;
}

.gallery-item.span-3 {
  grid-column: span 3;
}

.gallery-item.row-2 {
  grid-row: span 2;
}

@media (max-width: 980px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 220px;
  }
  .gallery-item.span-2,
  .gallery-item.span-3 {
    grid-column: span 2;
  }
  .gallery-item.row-2 {
    grid-row: span 1;
  }
}

/* ---------- Photo strip (home) ---------- */
.strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.strip-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  border: 1px solid var(--line-dark);
}

.strip-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.strip-item:hover img {
  transform: scale(1.06);
}

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

/* ---------- Pull quote / philosophy ---------- */
.pull-quote {
  max-width: 940px;
  margin: 0 auto;
  text-align: center;
}

.pull-quote p {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: none;
  font-size: clamp(1.6rem, 3.4vw, 2.7rem);
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.pull-quote p em {
  font-style: italic;
  color: var(--amber);
}

.pull-quote cite {
  display: block;
  margin-top: 28px;
  font-style: normal;
  font-family: var(--font-body);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted-on-dark);
}

/* ---------- Timeline (about) ---------- */
.timeline {
  display: flex;
  flex-direction: column;
}

.timeline-item {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 28px;
  padding: 30px 0;
  border-top: 1px solid var(--line-light);
}

.timeline-item:first-child {
  border-top: none;
}

.timeline-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--amber);
  display: flex;
  align-items: center;
  justify-content: center;
}

.timeline-icon svg {
  width: 20px;
  height: 20px;
}

.timeline-item h4 {
  margin-bottom: 8px;
}

.timeline-item p {
  color: var(--muted-on-light);
  font-size: 0.98rem;
}

@media (max-width: 640px) {
  .timeline-item {
    grid-template-columns: 46px 1fr;
  }
}

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--ink);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: clamp(40px, 6vw, 76px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  background: var(--amber);
  filter: blur(140px);
  opacity: 0.28;
  top: -180px;
  right: -120px;
}

.cta-band-content {
  position: relative;
  z-index: 1;
  max-width: 560px;
}

.cta-band h2 {
  margin-bottom: 14px;
}

.cta-band p {
  color: var(--muted-on-dark);
}

.cta-band-actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  flex-shrink: 0;
}

@media (max-width: 800px) {
  .cta-band {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }
}

/* ---------- FAQ (contact) ---------- */
.faq-item {
  border-top: 1px solid var(--line-light);
}

.faq-item:last-child {
  border-bottom: 1px solid var(--line-light);
}

.faq-q {
  width: 100%;
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 26px 4px;
  text-align: left;
  font-family: var(--font-display);
  font-size: 1.05rem;
  text-transform: none;
  color: var(--ink);
}

.faq-q .plus {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid var(--line-light-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: transform 0.35s var(--ease), background 0.35s var(--ease);
}

.faq-q .plus::before,
.faq-q .plus::after {
  content: "";
  position: absolute;
  background: var(--ink);
  transition: transform 0.35s var(--ease), opacity 0.35s var(--ease);
}

.faq-q .plus::before {
  width: 12px;
  height: 2px;
}

.faq-q .plus::after {
  width: 2px;
  height: 12px;
}

.faq-item.is-open .faq-q .plus {
  background: var(--ink);
  transform: rotate(180deg);
}

.faq-item.is-open .faq-q .plus::before,
.faq-item.is-open .faq-q .plus::after {
  background: var(--amber);
}

.faq-item.is-open .faq-q .plus::after {
  opacity: 0;
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}

.faq-a p {
  padding: 0 4px 26px;
  max-width: 720px;
  color: var(--muted-on-light);
}

/* ---------- Contact block ---------- */
.contact-panel {
  background: var(--ink);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: clamp(40px, 6vw, 72px);
  position: relative;
  overflow: hidden;
}

.contact-panel .hero-glow {
  opacity: 0.25;
}

.contact-email {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2.7rem);
  color: var(--white);
  padding-bottom: 14px;
  border-bottom: 2px solid var(--line-dark-strong);
  transition: border-color 0.35s var(--ease), color 0.35s var(--ease), gap 0.35s var(--ease);
  word-break: break-word;
}

.contact-email:hover {
  color: var(--amber);
  border-color: var(--amber);
  gap: 26px;
}

.contact-email svg {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

/* ---------- Copy-to-clipboard ---------- */
.copy-email-wrap {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  row-gap: 8px;
}

.copy-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid var(--line-light-strong);
  background: transparent;
  color: var(--ink);
  border-radius: 50%;
  cursor: pointer;
  padding: 0;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease), transform 0.3s var(--ease);
}

.copy-btn:hover {
  border-color: var(--ink);
  background: rgba(11, 11, 12, 0.05);
  transform: translateY(-2px);
}

.copy-btn.is-copied {
  border-color: var(--amber);
  color: var(--amber-dark);
}

.copy-btn.on-dark {
  border-color: var(--line-dark-strong);
  color: var(--white);
}

.copy-btn.on-dark:hover {
  border-color: var(--amber);
  background: rgba(232, 163, 61, 0.1);
}

.copy-btn.on-dark.is-copied {
  border-color: var(--amber);
  color: var(--amber-light);
}

.copy-btn .icon-check {
  display: none;
}

.copy-btn.is-copied .icon-copy {
  display: none;
}

.copy-btn.is-copied .icon-check {
  display: block;
}

.copy-btn-lg {
  width: 48px;
  height: 48px;
}

.copy-btn-lg svg {
  width: 20px;
  height: 20px;
}

.copy-btn-sm {
  width: 24px;
  height: 24px;
}

.copy-btn-sm svg {
  width: 12px;
  height: 12px;
}

.copy-feedback {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--amber);
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
  pointer-events: none;
}

.copy-email-wrap.is-copied .copy-feedback {
  opacity: 1;
  transform: translateX(0);
}

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

.contact-steps {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.contact-steps li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-steps .step-num {
  font-family: var(--font-display);
  color: var(--amber);
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-steps strong {
  display: block;
  margin-bottom: 4px;
  font-family: var(--font-display);
  text-transform: none;
  font-size: 1rem;
}

.contact-steps span {
  color: var(--muted-on-dark);
  font-size: 0.92rem;
}

/* ---------- Resource cards (blog / resources listing) ---------- */
.resource-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--line-light);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
}

.resource-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.resource-card-media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.resource-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.resource-card:hover .resource-card-media img {
  transform: scale(1.06);
}

.resource-card-body {
  padding: 28px 26px 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.resource-tag {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--amber-dark);
}

.resource-card-body h3 {
  text-transform: none;
  font-size: 1.18rem;
  line-height: 1.25;
}

.resource-card-body p {
  color: var(--muted-on-light);
  font-size: 0.92rem;
}

.resource-read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 6px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.76rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
}

.resource-read-more svg {
  width: 14px;
  height: 14px;
  transition: transform 0.35s var(--ease);
}

.resource-card:hover .resource-read-more svg {
  transform: translateX(4px);
}

/* ---------- Article body (blog post prose) ---------- */
.article-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  color: var(--muted-on-dark);
  font-size: 0.85rem;
  letter-spacing: 0.02em;
}

.article-meta .dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--muted-on-dark);
  display: inline-block;
}

.article-body {
  max-width: 740px;
  margin: 0 auto;
}

.article-body p {
  margin: 0 0 22px;
  color: var(--ink);
  font-size: 1.05rem;
  line-height: 1.8;
}

.article-body h2 {
  text-transform: none;
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  margin: 48px 0 18px;
}

.article-body h3 {
  text-transform: none;
  font-size: 1.3rem;
  margin: 34px 0 14px;
}

.article-body ul,
.article-body ol {
  margin: 0 0 24px;
  padding-left: 22px;
  color: var(--ink);
  font-size: 1.05rem;
  line-height: 1.8;
}

.article-body li {
  margin-bottom: 10px;
}

.article-body li::marker {
  color: var(--amber-dark);
  font-weight: 700;
}

.article-body strong {
  font-weight: 700;
}

.article-body blockquote {
  margin: 36px 0;
  padding: 26px 30px;
  border-left: 4px solid var(--amber);
  background: var(--paper-2);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  line-height: 1.4;
  text-transform: none;
  font-style: italic;
}

.article-share {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 36px;
  margin-top: 44px;
  border-top: 1px solid var(--line-light);
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: var(--muted-on-dark);
  padding: 70px 0 28px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 0.7fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--line-dark);
}

.footer-brand .brand {
  margin-bottom: 18px;
}

.footer-brand p {
  max-width: 320px;
  font-size: 0.92rem;
  line-height: 1.7;
}

.footer-col h4 {
  color: var(--white);
  text-transform: uppercase;
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  margin-bottom: 18px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col a {
  font-size: 0.92rem;
  transition: color 0.3s var(--ease);
}

.footer-col a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 26px;
  font-size: 0.8rem;
}

@media (max-width: 900px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .footer-top {
    grid-template-columns: 1fr;
  }
}

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal-stagger.is-visible > * {
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger.is-visible > *:nth-child(1) { transition-delay: 0.02s; }
.reveal-stagger.is-visible > *:nth-child(2) { transition-delay: 0.1s; }
.reveal-stagger.is-visible > *:nth-child(3) { transition-delay: 0.18s; }
.reveal-stagger.is-visible > *:nth-child(4) { transition-delay: 0.26s; }
.reveal-stagger.is-visible > *:nth-child(5) { transition-delay: 0.34s; }
.reveal-stagger.is-visible > *:nth-child(6) { transition-delay: 0.42s; }

/* ---------- Utility ---------- */
.mt-0 { margin-top: 0; }
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.skip-link {
  position: absolute;
  top: -60px;
  left: 12px;
  background: var(--amber);
  color: var(--ink);
  padding: 12px 18px;
  border-radius: 8px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.8rem;
  text-transform: uppercase;
  z-index: 200;
  transition: top 0.3s var(--ease);
}

.skip-link:focus {
  top: 12px;
}
