@charset "UTF-8";

:root {
  --bg: #0d0d0d;
  --bg-soft: #151515;
  --panel: rgba(18, 18, 18, 0.86);
  --panel-strong: rgba(10, 10, 10, 0.94);
  --line: rgba(255, 255, 255, 0.08);
  --line-soft: rgba(247, 236, 0, 0.22);
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.72);
  --muted-strong: rgba(255, 255, 255, 0.88);
  --accent: #f7ec00;
  --accent-strong: #fff36b;
  --accent-vino: rgba(96, 18, 56, 0.85);
  --accent-purple: rgba(78, 24, 103, 0.72);
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.42);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 12% 12%, rgba(247, 236, 0, 0.18), transparent 22%),
    radial-gradient(circle at 86% 10%, rgba(96, 18, 56, 0.24), transparent 20%),
    radial-gradient(circle at 82% 64%, rgba(78, 24, 103, 0.22), transparent 22%),
    linear-gradient(180deg, #070707 0%, #0d0d0d 36%, #111111 100%);
  color: var(--text);
  font-family: "Manrope", "Segoe UI", sans-serif;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
}

body::before {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 64px 64px;
  opacity: 0.18;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.42), transparent 95%);
}

body::after {
  inset: 18px;
  border: 1px solid rgba(247, 236, 0, 0.1);
}

a {
  color: inherit;
}

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

.container {
  width: min(1200px, calc(100vw - 40px));
  margin: 0 auto;
}

.section {
  padding: clamp(72px, 10vw, 120px) 0;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 26px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent-strong) 0%, var(--accent) 100%);
  color: #111111;
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-decoration: none;
  box-shadow: 0 16px 32px rgba(247, 236, 0, 0.2);
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.cta-button:hover,
.cta-button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(247, 236, 0, 0.28);
  filter: saturate(1.05);
}

.hero {
  padding: 80px 0;
  display: flex;
  align-items: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 1.05fr);
  gap: clamp(32px, 4vw, 72px);
  align-items: center;
}

.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero-copy h1,
.section-heading h2 {
  margin: 0;
  letter-spacing: -0.05em;
  text-wrap: balance;
  overflow-wrap: anywhere;
  font-family: 'Playfair Display', serif;
}

.section-heading h2 em {
  font-style: italic;
  font-weight: inherit;
}

.hero-copy h1 {
  max-width: 11ch;
  font-size: clamp(3.5rem, 8vw, 7.5rem);
  line-height: 1.05;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
}

.hero-copy h1 em {
  color: var(--accent);
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 700;
}

.hero-subtitle {
  display: block;
  margin-top: 2rem;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  font-weight: 500;
  color: #ffffff;
  line-height: 1.4;
  letter-spacing: 0;
  text-align: center;
}

.scroll-indicator {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-top: 6rem;
  text-decoration: none;
  color: var(--accent);
  transition: opacity 0.3s ease;
  width: 100%;
}

.scroll-indicator:hover {
  opacity: 0.8;
}

.scroll-indicator span {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.1rem;
  font-weight: 500;
}

.scroll-indicator svg {
  animation: scroll-bounce 2s infinite;
}

@keyframes scroll-bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(10px);
  }
  60% {
    transform: translateY(5px);
  }
}

.hero-visual {
  position: relative;
}

.portrait-shell {
  position: relative;
  padding: 24px;
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02)),
    rgba(12, 12, 12, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: var(--shadow);
}

.portrait-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(145deg, rgba(247, 236, 0, 0.18), transparent 34%),
    linear-gradient(180deg, transparent 42%, rgba(96, 18, 56, 0.18) 100%);
  pointer-events: none;
}

.portrait-shell::after {
  content: "";
  position: absolute;
  top: 22px;
  right: 22px;
  width: 120px;
  height: 120px;
  border-radius: 26px;
  background:
    linear-gradient(135deg, rgba(247, 236, 0, 0.72), rgba(247, 236, 0, 0.08)),
    linear-gradient(180deg, rgba(78, 24, 103, 0.56), transparent);
  opacity: 0.5;
  filter: blur(2px);
  pointer-events: none;
}

.portrait-card {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  aspect-ratio: 0.92;
  background: var(--accent);
}

.portrait-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 8, 8, 0) 42%, rgba(8, 8, 8, 0.42) 100%);
  pointer-events: none;
}

.portrait-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transform: scaleX(-1);
}

.floating-quote {
  position: absolute;
  right: -18px;
  bottom: 34px;
  z-index: 2;
  max-width: 260px;
  padding: 18px;
  border-radius: 22px;
  background: rgba(13, 13, 13, 0.8);
  border: 1px solid rgba(247, 236, 0, 0.14);
  backdrop-filter: blur(14px);
}

.floating-quote p {
  margin: 0;
  color: var(--muted-strong);
  font-size: 0.95rem;
  line-height: 1.55;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
}

.section-heading {
  display: grid;
  gap: 14px;
  margin-bottom: 34px;
}

.section-heading h2 {
  max-width: 16ch;
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 0.98;
}

.story-section .section-heading h2 {
  max-width: none;
}

@media (min-width: 1081px) {
  .story-section .section-heading {
    text-align: center;
  }
}

.story-flow {
  display: grid;
  gap: 20px;
}

.story-card,
.consultation-card,
.trust-band-inner,
.hero-metrics div,
.logo-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02)),
    var(--panel);
  border: 1px solid var(--line);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.story-card,
.consultation-card {
  padding: clamp(26px, 4vw, 34px);
  border-radius: 30px;
}

.story-card p {
  margin: 0;
  color: var(--muted-strong);
  font-size: 1rem;
  line-height: 1.76;
}

.consultation-title {
  margin: 0;
  color: var(--accent);
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.consultation-copy {
  margin: 0;
  color: var(--muted-strong);
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  line-height: 1.76;
}

.story-card-biography {
  display: grid;
  gap: 22px;
  background:
    linear-gradient(180deg, rgba(247, 236, 0, 0.08), rgba(255, 255, 255, 0.02)),
    var(--panel-strong);
  font-family: 'Montserrat', sans-serif;
}

.story-card-biography .story-intro {
  color: var(--text);
  font-size: 1.08rem;
}

.story-support {
  display: flex;
  flex-direction: column;
  gap: 48px;
  align-items: center;
}

.consultation-card {
  display: grid;
  align-content: start;
  gap: 24px;
  max-width: 720px;
  text-align: center;
  justify-items: center;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 0;
  width: 100%;
  max-width: 1000px;
}

.hero-metrics div {
  padding: 24px 28px;
  border-radius: 26px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  min-height: 140px;
}

.hero-metrics dt {
  margin: 0 0 6px;
  color: var(--text);
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.1rem;
  font-weight: 700;
}

.hero-metrics dd {
  margin: 0;
  color: var(--muted);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  line-height: 1.5;
}

.trust-band {
  padding-bottom: 120px;
}

.trust-band-inner {
  padding: 24px 0;
  border-radius: 28px;
  position: relative;
  overflow: hidden;
}

.trust-band-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(247, 236, 0, 0.08), transparent 32%),
    linear-gradient(225deg, rgba(78, 24, 103, 0.18), transparent 28%),
    linear-gradient(180deg, transparent 40%, rgba(96, 18, 56, 0.14) 100%);
  pointer-events: none;
}

.brand-carousel {
  position: relative;
  z-index: 1;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.brand-carousel-track {
  display: flex;
  width: max-content;
  animation: brand-marquee 34s linear infinite;
}

.brand-carousel-group {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-right: 16px;
  flex-shrink: 0;
}

.logo-card {
  margin: 0;
  flex: 0 0 clamp(180px, 19vw, 240px);
  min-height: 160px;
  padding: 16px;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(180deg, rgba(247, 236, 0, 0.05), rgba(255, 255, 255, 0.02)),
    #fafaf6;
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.18);
}

.logo-card-wide {
  flex-basis: clamp(240px, 26vw, 340px);
}

.logo-card-poster {
  flex-basis: clamp(180px, 18vw, 220px);
}

.logo-card img {
  width: 100%;
  max-width: 100%;
  max-height: 102px;
  object-fit: contain;
}

.logo-card-poster img {
  max-height: 136px;
}

.logo-card-dark {
  background:
    linear-gradient(180deg, rgba(247, 236, 0, 0.06), rgba(255, 255, 255, 0.02)),
    #101010;
}



@keyframes brand-marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 1080px) {

  .hero-grid,
  .story-support {
    grid-template-columns: 1fr;
  }

  .hero-copy h1,
  .section-heading h2 {
    max-width: none;
  }
}

@media (max-width: 840px) {
  body::after {
    inset: 10px;
  }

  .container {
    width: min(100vw - 24px, 1200px);
  }

  .hero {
    padding-top: 0;
  }

  .hero-copy h1 {
    font-size: clamp(2.8rem, 13vw, 4.8rem);
  }

  .hero-metrics {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .story-support {
    gap: 32px;
  }

  .floating-quote {
    right: 20px;
    bottom: 20px;
  }
}

@media (max-width: 560px) {
  .section {
    padding: 62px 0;
  }

  .hero {
    padding-top: 0;
  }

  .hero-copy h1 {
    font-size: clamp(2.5rem, 14vw, 3.9rem);
    line-height: 0.94;
  }

  .section-heading h2 {
    max-width: 9ch;
    font-size: clamp(2rem, 10vw, 3rem);
    line-height: 1;
    text-wrap: pretty;
  }

  .cta-button {
    width: 100%;
  }

  .portrait-shell {
    padding: 14px;
    border-radius: 24px;
  }

  .portrait-card {
    border-radius: 18px;
    aspect-ratio: 0.86;
  }

  .floating-quote {
    position: static;
    max-width: none;
    margin-top: 14px;
  }

  .story-card,
  .consultation-card,
  .trust-band-inner,
  .hero-metrics div,
  .logo-card {
    padding: 20px;
    border-radius: 22px;
  }

  .consultation-title {
    font-size: 1.35rem;
  }

  .hero-metrics div {
    min-height: auto;
    padding: 20px;
  }

  .hero-metrics dt {
    font-size: 1rem;
  }

  .logo-card {
    min-height: 138px;
  }

  .story-card p,
  .consultation-copy,
  .hero-metrics dd,
  .floating-quote p {
    font-size: 0.92rem;
    line-height: 1.64;
  }

  .story-card-biography .story-intro {
    font-size: 0.98rem;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}