/* ============================================================
   BRIAN MOYLETT — style.css (Launch Visual Pass)
   ============================================================ */

:root {
  --bg: #f5f3ee;
  --bg-alt: #eeece6;
  --surface: #ffffff;
  --surface-soft: #f8f7f4;
  --text: #161513;
  --text-muted: #5e5a53;
  --border: #dcd5c8;
  --ink: #0f1013;
  --ink-soft: #1b1d23;
  --accent: #a97b43;
  --accent-deep: #885f31;
  --white: #ffffff;

  --ff-display: 'Fraunces', 'Times New Roman', serif;
  --ff-body: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;

  --radius-xs: 6px;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;

  --shadow-soft: 0 8px 24px rgba(19, 16, 8, 0.05);
  --shadow-card: 0 16px 34px rgba(19, 16, 8, 0.08);
  --shadow-elev: 0 20px 60px rgba(10, 12, 18, 0.2);

  --transition: 220ms ease;
  --max-width: 1180px;
  --gutter: clamp(1.15rem, 4vw, 2.2rem);
}

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

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

body {
  font-family: var(--ff-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
  background:
    radial-gradient(circle at 8% 2%, rgba(169, 123, 67, 0.09), transparent 30%),
    radial-gradient(circle at 86% 4%, rgba(33, 35, 44, 0.06), transparent 28%),
    var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

section {
  scroll-margin-top: 6.25rem;
}

ul {
  list-style: none;
}

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

.section {
  padding-block: clamp(4.25rem, 8vw, 7.2rem);
}

.section-alt {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0.35)),
    var(--bg-alt);
}

.section-dark {
  background:
    radial-gradient(circle at 12% 12%, rgba(169, 123, 67, 0.18), transparent 38%),
    radial-gradient(circle at 85% 82%, rgba(255, 255, 255, 0.08), transparent 28%),
    var(--ink);
  color: var(--white);
}

.section-header {
  max-width: 700px;
  margin-bottom: clamp(2rem, 4.6vw, 3.4rem);
}

.section-intro {
  color: var(--text-muted);
  font-size: 1.03rem;
  line-height: 1.72;
  margin-top: 0.95rem;
}

h1,
h2,
h3,
h4 {
  font-family: var(--ff-display);
  line-height: 1.06;
  letter-spacing: -0.02em;
  font-weight: var(--fw-medium);
}

h1 {
  font-size: clamp(2.35rem, 6.2vw, 4.7rem);
  letter-spacing: -0.032em;
}

h2 {
  font-size: clamp(1.86rem, 4.3vw, 3.1rem);
  letter-spacing: -0.026em;
}

h3 {
  font-size: clamp(1.22rem, 2.1vw, 1.6rem);
  letter-spacing: -0.018em;
}

p {
  max-width: 66ch;
}

.eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: var(--fw-bold);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.eyebrow-light {
  color: rgba(255, 255, 255, 0.72);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.82rem 1.55rem;
  border-radius: var(--radius-xs);
  border: 1px solid transparent;
  font-family: var(--ff-body);
  font-size: 0.82rem;
  font-weight: var(--fw-bold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1;
  white-space: nowrap;
  transition:
    background-color var(--transition),
    color var(--transition),
    border-color var(--transition),
    transform var(--transition),
    box-shadow var(--transition);
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  color: var(--white);
  background-color: var(--ink);
  border-color: var(--ink);
  box-shadow: 0 10px 20px rgba(10, 12, 16, 0.15);
}

.btn-primary:hover {
  background-color: #21242d;
  border-color: #21242d;
}

.btn-ghost {
  color: var(--text);
  border-color: rgba(22, 21, 19, 0.34);
  background-color: rgba(255, 255, 255, 0.6);
}

.btn-ghost:hover {
  background-color: var(--ink);
  border-color: var(--ink);
  color: var(--white);
}

.btn-outline {
  color: var(--text);
  border-color: var(--border);
  background-color: transparent;
}

.btn-outline:hover {
  border-color: var(--accent);
  background-color: rgba(169, 123, 67, 0.08);
}

.btn-accent {
  color: var(--white);
  border-color: var(--accent);
  background-color: var(--accent);
}

.btn-accent:hover {
  background-color: var(--accent-deep);
  border-color: var(--accent-deep);
}

.btn-nav {
  padding: 0.68rem 1.08rem;
  font-size: 0.74rem;
}

.btn-full {
  width: 100%;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* ---------- Navigation ---------- */
#site-nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  padding-block: 1rem;
  transition: background-color var(--transition), box-shadow var(--transition), padding var(--transition);
}

#site-nav.scrolled {
  background-color: rgba(245, 243, 238, 0.92);
  box-shadow: 0 1px 0 rgba(88, 73, 48, 0.14);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding-block: 0.72rem;
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav-logo {
  font-family: var(--ff-display);
  font-size: 1.32rem;
  font-weight: var(--fw-semibold);
  letter-spacing: -0.02em;
  transition: opacity var(--transition);
}

.nav-logo:hover {
  opacity: 0.75;
}

.nav-links {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-links a {
  font-size: 0.8rem;
  font-weight: var(--fw-bold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(22, 21, 19, 0.78);
  transition: color var(--transition);
}

.nav-links a:hover {
  color: var(--text);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  border: none;
  background: none;
  padding: 4px;
  margin-left: auto;
  cursor: pointer;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: transform var(--transition), opacity var(--transition);
}

.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
#hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  padding-top: 6.3rem;
}

.hero-inner {
  flex: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: clamp(2rem, 5vw, 4.6rem);
  padding-block: clamp(2.4rem, 5vw, 4.4rem);
}

.hero-content {
  max-width: 640px;
}

.hero-content h1 {
  margin-bottom: 1.2rem;
}

.hero-sub {
  font-size: 1.07rem;
  color: var(--text-muted);
  line-height: 1.74;
  margin-bottom: 1.9rem;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-proof-list {
  margin-top: 1.8rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.hero-proof-list li {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.5));
  border: 1px solid rgba(130, 112, 83, 0.22);
  border-radius: var(--radius-sm);
  padding: 0.75rem 0.85rem;
  min-height: 132px;
}

.hero-proof-list strong {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.13em;
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  color: rgba(22, 21, 19, 0.9);
}

.hero-proof-list span {
  display: block;
  font-size: 0.85rem;
  line-height: 1.48;
  margin-top: 0.45rem;
  color: var(--text-muted);
}

.hero-image-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-elev);
}

.hero-image-frame::after {
  content: '';
  position: absolute;
  inset: auto 0 0;
  height: 36%;
  background: linear-gradient(to top, rgba(8, 10, 16, 0.42), transparent);
  pointer-events: none;
}

.hero-image-frame img {
  width: 100%;
  height: clamp(460px, 65vh, 650px);
  object-fit: cover;
  object-position: center 20%;
}

.credibility-strip {
  background: linear-gradient(90deg, #12161f 0%, #17131a 50%, #18181b 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-block: 1rem;
  overflow: hidden;
}

.credibility-ticker-wrap {
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

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

.credibility-ticker-set {
  display: flex;
  align-items: center;
  gap: 1.7rem;
  flex-shrink: 0;
  padding-right: 1.7rem;
}

.credibility-item {
  display: flex;
  align-items: center;
  gap: 0.52rem;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: var(--fw-bold);
  color: rgba(255, 255, 255, 0.74);
  white-space: nowrap;
  flex-shrink: 0;
}

.credibility-item svg {
  color: var(--accent);
  flex-shrink: 0;
}

@keyframes credibility-ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(calc(-1 * var(--set-width, 50%))); }
}

@media (prefers-reduced-motion: reduce) {
  .credibility-ticker-track {
    animation: none;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
    padding-inline: var(--gutter);
  }
  .credibility-ticker-set:last-child {
    display: none;
  }
}

/* ---------- About ---------- */
.about-inner {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: start;
  gap: clamp(2rem, 5vw, 4.5rem);
}

.about-content h2 {
  margin-bottom: 1rem;
}

.about-lead {
  font-size: 1.1rem;
  color: rgba(22, 21, 19, 0.92);
  line-height: 1.66;
  margin-bottom: 1rem;
}

.about-content p + p {
  margin-top: 0.9rem;
  color: var(--text-muted);
}

.achievement-list {
  margin-top: 1.9rem;
  display: grid;
  gap: 0.62rem;
}

.achievement-list li {
  display: flex;
  gap: 0.62rem;
  font-size: 0.89rem;
  line-height: 1.46;
  color: rgba(22, 21, 19, 0.9);
}

.achievement-list svg {
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 0.12rem;
}

.about-image-frame {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.about-image-frame img {
  width: 100%;
  height: clamp(400px, 58vh, 560px);
  object-fit: cover;
  object-position: center 18%;
}

/* ---------- Services ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.service-card {
  background: var(--surface);
  border: 1px solid rgba(138, 117, 86, 0.22);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-soft);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.service-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
  border-color: rgba(169, 123, 67, 0.42);
}

.service-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease;
}

.service-card:hover .service-image img {
  transform: scale(1.04);
}

.service-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11, 13, 18, 0.35), transparent 64%);
}

.service-body {
  padding: 1.45rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.service-label {
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: var(--fw-bold);
  color: var(--accent);
  margin-bottom: 0.65rem;
}

.service-body h3 {
  margin-bottom: 0.72rem;
}

.service-body p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.64;
  margin-bottom: 1rem;
}

.service-outcomes {
  margin-bottom: 1.2rem;
  flex: 1;
  display: grid;
  gap: 0.45rem;
}

.service-outcomes li {
  font-size: 0.84rem;
  line-height: 1.38;
  color: rgba(22, 21, 19, 0.88);
  border: 1px solid rgba(169, 123, 67, 0.2);
  border-radius: 999px;
  padding: 0.32rem 0.72rem;
  width: fit-content;
  background-color: rgba(169, 123, 67, 0.06);
}

/* ---------- Corporate ---------- */
.corporate-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4.2rem);
  align-items: center;
}

.corporate-image {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.corporate-image img {
  width: 100%;
  height: clamp(360px, 52vh, 500px);
  object-fit: cover;
}

.corporate-content {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.64));
  border: 1px solid rgba(130, 112, 83, 0.22);
  border-radius: var(--radius-md);
  padding: clamp(1.3rem, 3vw, 2rem);
}

.corporate-content h2 {
  margin-bottom: 0.45rem;
}

.corporate-location {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: var(--fw-bold);
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.corporate-content p {
  color: var(--text-muted);
  line-height: 1.65;
}

.corporate-content p + p {
  margin-top: 0.8rem;
}

.corporate-themes {
  margin-block: 1.2rem 1.4rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.corporate-themes li {
  font-size: 0.68rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  font-weight: var(--fw-bold);
  color: rgba(22, 21, 19, 0.9);
  padding: 0.35rem 0.65rem;
  border: 1px solid rgba(130, 112, 83, 0.26);
  border-radius: 999px;
}

/* ---------- Video ---------- */
.video-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4.3rem);
  align-items: center;
}

.video-content h2 {
  margin-bottom: 0.9rem;
}

.video-content p {
  color: rgba(255, 255, 255, 0.76);
}

.video-points {
  margin-block: 1.2rem 1.6rem;
  display: grid;
  gap: 0.58rem;
}

.video-points li {
  position: relative;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
  padding-left: 1.05rem;
}

.video-points li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: var(--accent);
}

.video-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.17);
  box-shadow: var(--shadow-elev);
  cursor: pointer;
}

.video-thumbnail {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  width: 66px;
  height: 66px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.55);
  background-color: rgba(15, 17, 22, 0.48);
  backdrop-filter: blur(5px);
  transform: translate(-50%, -50%);
  transition: transform var(--transition), background-color var(--transition), border-color var(--transition);
}

.video-play-btn:hover {
  transform: translate(-50%, -50%) scale(1.07);
  background-color: rgba(169, 123, 67, 0.4);
  border-color: rgba(255, 255, 255, 0.78);
}

.video-play-btn svg {
  margin-left: 3px;
}

.video-wrapper.playing .video-thumbnail,
.video-wrapper.playing .video-play-btn {
  display: none;
}

.video-fallback-note {
  position: absolute;
  inset: auto 0 0;
  padding: 0.5rem 0.7rem;
  font-size: 0.72rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
}

/* ---------- Testimonials ---------- */
.testimonial-featured {
  margin-top: 0.3rem;
  border-radius: var(--radius-md);
  background: linear-gradient(130deg, #151a24 0%, #1f2330 58%, #2e2f3b 100%);
  padding: clamp(1.4rem, 3vw, 2.3rem);
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow: var(--shadow-elev);
}

.testimonial-featured-inner {
  max-width: 860px;
}

.testimonial-featured blockquote p {
  color: rgba(255, 255, 255, 0.92);
  font-family: var(--ff-display);
  font-size: clamp(1.06rem, 2vw, 1.4rem);
  line-height: 1.5;
  max-width: none;
  font-style: italic;
}

.testimonial-featured blockquote footer {
  margin-top: 1.25rem;
  display: grid;
  gap: 0.2rem;
}

.testimonial-featured blockquote footer strong {
  color: var(--white);
  font-size: 0.93rem;
}

.testimonial-featured blockquote footer span {
  color: rgba(255, 255, 255, 0.63);
  font-size: 0.82rem;
}

.testimonial-featured .btn {
  margin-top: 1.3rem;
}

.testimonial-tags {
  margin-top: 1.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.testimonial-tags span {
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: var(--fw-bold);
  border: 1px solid rgba(130, 112, 83, 0.24);
  border-radius: 999px;
  padding: 0.32rem 0.62rem;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.62);
}

.testimonials-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.testimonial-card {
  background: var(--surface);
  border: 1px solid rgba(130, 112, 83, 0.2);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
}

.testimonial-audience {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: var(--fw-bold);
  color: var(--accent);
  margin-bottom: 0.6rem;
  max-width: none;
}

.testimonial-pull {
  font-family: var(--ff-display);
  font-size: 1.06rem;
  line-height: 1.35;
  margin-bottom: 0.65rem;
  color: rgba(22, 21, 19, 0.94);
}

.testimonial-body {
  color: var(--text-muted);
  font-size: 0.87rem;
  line-height: 1.63;
  margin-bottom: 1rem;
}

.testimonial-attribution {
  margin-top: auto;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(130, 112, 83, 0.2);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.75rem;
  align-items: center;
}

.testimonial-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(130, 112, 83, 0.34);
}

.testimonial-meta strong {
  display: block;
  font-size: 0.85rem;
  color: rgba(22, 21, 19, 0.95);
}

.testimonial-meta span {
  display: block;
  font-size: 0.74rem;
  color: var(--text-muted);
  line-height: 1.3;
}

.testimonial-category {
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: var(--fw-bold);
  color: var(--accent);
}

/* ---------- Contact ---------- */
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.contact-content h2 {
  margin-bottom: 0.95rem;
}

.contact-content > p {
  color: rgba(255, 255, 255, 0.77);
  line-height: 1.68;
}

.contact-paths {
  margin-block: 1.25rem 1.05rem;
  display: grid;
  gap: 0.58rem;
}

.contact-path {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-sm);
  padding: 0.8rem 0.9rem;
  background: rgba(255, 255, 255, 0.04);
  transition: border-color var(--transition), background-color var(--transition);
}

.contact-path strong {
  display: block;
  color: var(--white);
  font-size: 0.84rem;
}

.contact-path span {
  display: block;
  color: rgba(255, 255, 255, 0.69);
  font-size: 0.77rem;
  margin-top: 0.15rem;
}

.contact-path:hover {
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.08);
}

.contact-details {
  margin-bottom: 1.2rem;
}

.contact-details li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.84);
}

.contact-details svg {
  opacity: 0.72;
}

.contact-details a {
  color: rgba(255, 255, 255, 0.9);
  transition: color var(--transition);
}

.contact-details a:hover {
  color: var(--white);
}

.contact-social-label {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: var(--fw-bold);
  color: rgba(255, 255, 255, 0.46);
  max-width: none;
}

.contact-next-steps {
  margin-top: 1.6rem;
  border-top: 1px solid rgba(255, 255, 255, 0.17);
  padding-top: 1.05rem;
}

.contact-next-title {
  font-size: 0.73rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: var(--fw-bold);
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 0.65rem;
  max-width: none;
}

.contact-next-steps ol {
  padding-left: 1rem;
  display: grid;
  gap: 0.45rem;
}

.contact-next-steps li {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.86rem;
  line-height: 1.56;
}

.contact-form-wrap {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-md);
  padding: clamp(1.1rem, 3vw, 1.6rem);
  box-shadow: var(--shadow-elev);
}

.contact-form {
  display: grid;
  gap: 0.9rem;
}

.form-group {
  display: grid;
  gap: 0.34rem;
}

.form-group label {
  font-size: 0.71rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: var(--fw-bold);
  color: rgba(255, 255, 255, 0.67);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  font-family: var(--ff-body);
  font-size: 0.92rem;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.21);
  border-radius: var(--radius-xs);
  padding: 0.74rem 0.78rem;
  transition: border-color var(--transition), background-color var(--transition);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.42);
}

.form-group select option {
  background-color: #161923;
  color: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.14);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: #ff8f8f;
}

.form-group textarea {
  resize: vertical;
  min-height: 124px;
}

.form-note {
  text-align: center;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.74rem;
  line-height: 1.5;
  max-width: none;
}

.form-success {
  display: none;
  min-height: 320px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  gap: 0.9rem;
}

.form-success svg {
  color: var(--accent);
}

.form-success h3 {
  color: var(--white);
  font-size: 1.5rem;
}

.form-success p {
  color: rgba(255, 255, 255, 0.72);
  max-width: none;
}

/* ---------- Footer ---------- */
#footer {
  background: #0e1117;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1.4rem;
  align-items: start;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-block: 2.6rem;
}

.footer-name {
  font-family: var(--ff-display);
  font-size: 1.2rem;
  color: var(--white);
  max-width: none;
}

.footer-tagline {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.82rem;
  margin-top: 0.2rem;
  max-width: none;
}

.footer-availability {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.76rem;
  margin-top: 0.4rem;
  max-width: none;
}

.footer-nav ul {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-nav a {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: var(--fw-bold);
  color: rgba(255, 255, 255, 0.62);
  transition: color var(--transition);
}

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

.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.4rem;
}

.footer-note {
  color: rgba(255, 255, 255, 0.47);
  font-size: 0.74rem;
  max-width: none;
}

.footer-instagram {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: rgba(255, 255, 255, 0.47);
  font-size: 0.74rem;
  transition: color var(--transition);
}

.footer-instagram:hover {
  color: rgba(255, 255, 255, 0.85);
}

.footer-base {
  padding-block: 1rem;
}

.footer-base p {
  text-align: center;
  color: rgba(255, 255, 255, 0.36);
  font-size: 0.72rem;
  max-width: none;
}

/* ---------- Motion / utility ---------- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.64s ease, transform 0.64s ease;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.18s; }

.media-fallback {
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1rem;
  color: rgba(255, 255, 255, 0.92);
  font-family: var(--ff-display);
  font-size: 1.05rem;
  background: linear-gradient(135deg, #1c1f2a 0%, #2b2f3d 50%, #8a6638 100%);
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-inner,
  .about-inner,
  .corporate-inner,
  .video-inner,
  .contact-inner {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    padding-block: 2rem 3.2rem;
    gap: 1.8rem;
  }

  .hero-content {
    max-width: 100%;
    text-align: center;
  }

  .hero-ctas {
    justify-content: center;
  }

  .hero-proof-list {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .hero-image-frame {
    max-width: 560px;
    margin-inline: auto;
  }

  .about-image {
    order: -1;
  }

  .services-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .corporate-content {
    padding: 1.2rem;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 1.6rem;
  }

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

@media (max-width: 680px) {
  :root {
    --gutter: 1.12rem;
  }

  #hero {
    padding-top: 5.6rem;
  }

  .nav-links,
  .btn-nav {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-links.mobile-open {
    display: flex;
    position: fixed;
    inset: 0;
    z-index: 99;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.55rem;
    background: rgba(12, 14, 20, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }

  .nav-links.mobile-open a {
    color: var(--white);
    font-size: 1.08rem;
  }

  .hero-image-frame {
    border-radius: var(--radius-md);
  }

  .hero-image-frame img {
    height: 420px;
  }

  .credibility-items {
    flex-direction: column;
    text-align: center;
    gap: 0.45rem;
  }

  .service-body,
  .contact-form-wrap {
    padding: 1rem;
  }

  .testimonial-card {
    padding: 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal,
  .reveal.revealed,
  .btn,
  .service-card,
  .service-image img,
  .video-play-btn,
  .contact-path {
    transition: none !important;
    transform: none !important;
  }
}

/* ============================================================
   STORYBRAND PASS — Additional styles
   ============================================================ */

/* ---------- Hero detail lines ---------- */
.hero-sub {
  margin-bottom: 0.7rem;
}

.hero-detail {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 0.3rem;
}

.hero-credential {
  font-size: 0.84rem;
  color: var(--text-muted);
  opacity: 0.82;
  margin-bottom: 1.7rem;
  line-height: 1.5;
}

/* ---------- Problem Section ---------- */
.problem-inner {
  max-width: 780px;
}

.problem-inner h2 {
  margin-bottom: 0.1rem;
}

.problem-lead {
  font-size: 1.1rem;
  color: var(--text);
  line-height: 1.7;
  margin-top: 1rem;
  margin-bottom: 1.5rem;
}

.problem-list {
  display: grid;
  gap: 0.55rem;
  margin-bottom: 1.8rem;
}

.problem-list li {
  position: relative;
  padding-left: 1.5rem;
  font-size: 1.02rem;
  font-weight: var(--fw-medium);
  color: rgba(22, 21, 19, 0.88);
  line-height: 1.5;
}

.problem-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: var(--fw-bold);
}

.problem-bridge {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 0.55rem;
}

.problem-solution {
  font-size: 1.06rem;
  color: var(--text);
  line-height: 1.66;
}

.problem-solution strong {
  color: var(--ink);
}

/* ---------- About — after-list paragraph ---------- */
.about-after-list {
  margin-top: 1rem;
  color: var(--text-muted);
  line-height: 1.68;
}

/* ---------- About links ---------- */
.about-links {
  margin-top: 1.5rem;
  display: grid;
  gap: 0.6rem;
}

.about-link {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.45;
  transition: color var(--transition);
}

.about-link:hover {
  color: var(--accent);
}

.about-link svg {
  flex-shrink: 0;
  margin-top: 0.14rem;
  color: var(--accent);
}

/* ---------- How It Works ---------- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.8rem;
  margin-top: 2.6rem;
}

.step {
  padding-top: 1.2rem;
  border-top: 2px solid rgba(169, 123, 67, 0.3);
}

.step-number {
  display: block;
  font-family: var(--ff-display);
  font-size: 2.6rem;
  font-weight: var(--fw-medium);
  color: rgba(169, 123, 67, 0.22);
  line-height: 1;
  margin-bottom: 0.8rem;
  letter-spacing: -0.04em;
}

.step h3 {
  margin-bottom: 0.7rem;
  font-size: clamp(1rem, 1.6vw, 1.22rem);
}

.step p {
  color: var(--text-muted);
  font-size: 0.91rem;
  line-height: 1.66;
}

.steps-cta {
  margin-top: 3rem;
  text-align: center;
}

/* ---------- Service video embed in card ---------- */
.service-image.service-video-wrap {
  height: auto;
}

.service-image.service-video-wrap .video-wrapper {
  border-radius: 0;
  border: none;
  box-shadow: none;
}

/* ---------- Testimonial Carousel ---------- */
.testimonial-carousel {
  margin-top: 1.8rem;
  border-radius: var(--radius-md);
  background: linear-gradient(130deg, #151a24 0%, #1f2330 58%, #2e2f3b 100%);
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow: var(--shadow-elev);
  overflow: hidden;
}

.carousel-track {
  display: flex;
  transition: transform 420ms ease;
  will-change: transform;
}

.carousel-slide {
  min-width: 100%;
  padding: clamp(1.8rem, 4vw, 3.2rem);
}

.carousel-slide-inner {
  max-width: 840px;
}

.carousel-quote {
  margin-block: 1rem 1.2rem;
}

.carousel-quote p {
  color: rgba(255, 255, 255, 0.92);
  font-family: var(--ff-display);
  font-size: clamp(1.06rem, 2.2vw, 1.46rem);
  line-height: 1.52;
  font-style: italic;
  max-width: none;
}

.carousel-supporting {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.92rem;
  line-height: 1.65;
  margin-bottom: 1.2rem;
  max-width: 70ch;
}

.carousel-attribution {
  display: grid;
  gap: 0.18rem;
}

.carousel-attribution--photo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.carousel-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.carousel-attribution strong {
  display: block;
  color: var(--white);
  font-size: 0.93rem;
}

.carousel-attribution span {
  display: block;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.8rem;
}

.carousel-footnote {
  font-style: italic;
  opacity: 0.75;
}

.quote-body:not(.expanded) p {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.read-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.75rem;
  margin-bottom: 1.1rem;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-family: var(--ff-body);
  font-size: 0.78rem;
  font-weight: var(--fw-bold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  transition: color var(--transition);
}

.read-more-btn:hover {
  color: #c9944e;
}

.read-more-btn::after {
  content: '↓';
  display: inline-block;
  transition: transform 300ms ease;
}

.read-more-btn[aria-expanded="true"]::after {
  transform: rotate(180deg);
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1rem 1.8rem 1.5rem;
}

.carousel-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: border-color var(--transition), background-color var(--transition);
}

.carousel-btn:hover {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.12);
}

.carousel-dots {
  display: flex;
  gap: 0.55rem;
  align-items: center;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.38);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: background-color var(--transition), transform var(--transition), border-color var(--transition);
}

.carousel-dot.active {
  background: var(--accent);
  border-color: var(--accent);
  transform: scale(1.3);
}

.testimonials-cta {
  margin-top: 2.2rem;
  text-align: center;
}

/* ---------- Speaking Section ---------- */
.speaking-photo-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 0.6rem;
  height: clamp(280px, 38vw, 460px);
  margin-bottom: 2.8rem;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.speaking-photo-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.speaking-photo-grid img:first-child {
  grid-row: span 2;
}


.speaking-sub {
  margin-top: 0.55rem;
}

.speaking-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2.2rem;
  margin-top: 2.6rem;
}

.speaking-col h3 {
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  margin-bottom: 1rem;
  padding-bottom: 0.7rem;
  border-bottom: 1px solid var(--border);
}

.speaking-list {
  display: grid;
  gap: 0.6rem;
}

.speaking-list li {
  position: relative;
  padding-left: 1.1rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.speaking-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
}

.speaking-formats-intro {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 0.55rem;
}

.speaking-note {
  margin-top: 1rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  font-style: italic;
  line-height: 1.5;
}

.speaking-outcomes {
  margin-top: 3rem;
  padding: clamp(1.3rem, 3vw, 2rem);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.5));
  border: 1px solid rgba(130, 112, 83, 0.22);
  border-radius: var(--radius-md);
}

.speaking-outcomes h3 {
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  margin-bottom: 0.5rem;
}

.speaking-outcomes-intro {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 0.9rem;
}

.speaking-outcomes-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.speaking-outcome-item {
  display: inline-block;
  font-size: 0.84rem;
  font-weight: var(--fw-semibold);
  letter-spacing: 0.03em;
  color: rgba(22, 21, 19, 0.88);
  border: 1px solid rgba(169, 123, 67, 0.28);
  border-radius: 999px;
  padding: 0.38rem 0.85rem;
  background: rgba(169, 123, 67, 0.07);
}

.speaking-cta {
  margin-top: 2.6rem;
  text-align: center;
}

/* ---------- Form note link ---------- */
.form-note-link {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form-note-link:hover {
  color: var(--white);
}

/* ---------- Responsive additions ---------- */
@media (max-width: 980px) {
  .steps-grid,
  .speaking-grid {
    grid-template-columns: 1fr;
    gap: 1.6rem;
  }

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

@media (max-width: 680px) {
  .carousel-slide {
    padding: 1.5rem;
  }

  .speaking-outcomes-grid {
    gap: 0.4rem;
  }

  .speaking-photo-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    height: auto;
  }

  .speaking-photo-grid img:first-child {
    grid-row: span 1;
  }

  .speaking-photo-grid img {
    height: 220px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .carousel-track {
    transition: none !important;
  }
}

/* ============================================================
   MOBILE POLISH
   ============================================================ */

/* ---- Tablet (980px) ---- */
@media (max-width: 980px) {

  /* Hero CTAs: full-width stacked — much easier to tap */
  .hero-ctas {
    flex-direction: column;
    gap: 0.7rem;
  }

  .hero-ctas .btn {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.4rem;
  }

  /* About image above text */
  .about-image {
    order: -1;
  }

  .about-image-frame img {
    height: clamp(300px, 45vw, 420px);
  }

  /* Section header full width */
  .section-header {
    max-width: 100%;
  }
}

/* ---- Mobile (680px) ---- */
@media (max-width: 680px) {

  /* Tighter section breathing */
  .section {
    padding-block: clamp(2.8rem, 7vw, 4rem);
  }

  /* --- Nav --- */
  /* Add "Book a Call" into the mobile menu */
  .nav-links.mobile-open .btn-nav-mobile {
    display: inline-flex;
    margin-top: 0.5rem;
  }

  /* --- Hero --- */
  #hero {
    padding-top: 5rem;
  }

  .hero-inner {
    padding-block: 1.6rem 2.4rem;
    gap: 1.4rem;
  }

  .hero-image-frame img {
    height: 320px;
  }

  .hero-sub {
    font-size: 1rem;
  }

  .hero-detail,
  .hero-credential {
    font-size: 0.88rem;
  }

  /* --- Credibility strip: horizontal scroll beats stacking --- */
  .credibility-items {
    flex-direction: row;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    justify-content: flex-start;
    padding-inline: var(--gutter);
    gap: 1.6rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    scroll-snap-type: x mandatory;
  }

  .credibility-items::-webkit-scrollbar {
    display: none;
  }

  .credibility-item {
    flex-shrink: 0;
    scroll-snap-align: start;
    text-align: left;
  }

  /* --- Problem section --- */
  .problem-lead {
    font-size: 1rem;
  }

  .problem-list li {
    font-size: 0.96rem;
  }

  /* --- About --- */
  .about-image-frame img {
    height: 280px;
  }

  .about-links {
    gap: 0.75rem;
  }

  /* --- How it works --- */
  .steps-grid {
    gap: 1rem;
    margin-top: 1.6rem;
  }

  .step {
    padding-top: 0.9rem;
  }

  .step-number {
    font-size: 2rem;
    margin-bottom: 0.55rem;
  }

  .steps-cta {
    margin-top: 2rem;
  }

  /* --- Services --- */
  .service-card .btn {
    width: 100%;
    justify-content: center;
  }

  .service-image {
    height: 200px;
  }

  /* --- Carousel --- */
  .carousel-slide {
    padding: 1.4rem 1.2rem;
  }

  .carousel-quote p {
    font-size: 1.05rem;
    line-height: 1.48;
  }

  /* Bigger dot tap targets */
  .carousel-dot {
    width: 10px;
    height: 10px;
    padding: 4px;
    box-sizing: content-box;
  }

  .carousel-btn {
    width: 44px;
    height: 44px;
  }

  /* --- Speaking photo grid: first full-width, two side by side --- */
  .speaking-photo-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    height: auto;
  }

  .speaking-photo-grid img:first-child {
    grid-column: span 2;
    grid-row: span 1;
    height: 220px;
  }

  .speaking-photo-grid img:not(:first-child) {
    height: 150px;
  }

  /* Speaking cols: add divider between stacked items */
  .speaking-col {
    padding-bottom: 1.2rem;
    border-bottom: 1px solid var(--border);
  }

  .speaking-col:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

  /* --- Contact --- */
  .contact-path {
    padding: 1rem 0.9rem;
    min-height: 56px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  /* Prevent iOS from zooming on form focus — must be 16px */
  .form-group input,
  .form-group select,
  .form-group textarea {
    font-size: 1rem;
  }

  .contact-next-steps ol {
    padding-left: 1.2rem;
  }

  /* --- Footer --- */
  .footer-inner {
    gap: 1rem;
    padding-block: 2rem;
  }

  .footer-nav ul {
    gap: 0.55rem;
  }
}

/* ---- Very small screens (380px) ---- */
@media (max-width: 380px) {
  h1 {
    font-size: 2.1rem;
  }

  h2 {
    font-size: 1.7rem;
  }

  .hero-image-frame img {
    height: 280px;
  }

  .speaking-photo-grid img:first-child {
    height: 180px;
  }

  .speaking-photo-grid img:not(:first-child) {
    height: 120px;
  }
}

/* ---------- Logo Ticker ---------- */
.logo-ticker-section {
  padding-block: clamp(2.5rem, 5vw, 4rem);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0.35)),
    var(--bg-alt);
  overflow: hidden;
}

.logo-ticker-heading {
  font-family: var(--ff-body);
  font-size: 0.72rem;
  font-weight: var(--fw-bold);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  text-align: center;
  margin-bottom: 2rem;
  max-width: none;
}

.logo-ticker-wrap {
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

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

.logo-ticker-wrap:hover .logo-ticker-track {
  animation-play-state: paused;
}

.logo-ticker-set {
  display: flex;
  align-items: center;
  gap: clamp(3rem, 6vw, 5rem);
  flex-shrink: 0;
  /* padding-right = gap so spacing is identical across the seam */
  padding-right: clamp(3rem, 6vw, 5rem);
}

.logo-ticker-img {
  height: 60px;
  width: auto;
  max-width: none;
  object-fit: contain;
  opacity: 0.65;
  filter: grayscale(100%);
  mix-blend-mode: multiply;
  transition: opacity 280ms ease, filter 280ms ease;
  flex-shrink: 0;
}

.logo-ticker-img:hover {
  opacity: 1;
  filter: grayscale(0%);
}

.logo-ticker-caption {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 1.75rem;
  max-width: none;
}

@keyframes logo-ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(calc(-1 * var(--set-width, 50%))); }
}

@media (prefers-reduced-motion: reduce) {
  .logo-ticker-track {
    animation: none;
    width: 100%;
  }
  .logo-ticker-set:last-child {
    display: none;
  }
  .logo-ticker-set {
    flex-wrap: wrap;
    justify-content: center;
    padding-right: 0;
  }
}

@media (max-width: 680px) {
  .hero-ctas .btn {
    width: 100%;
    margin-bottom: 0.5rem;
  }
}
