@charset "UTF-8";

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

:root {
  --ink: #f8f4e8;
  --muted: #aaa493;
  --dim: #746f64;
  --paper: #141413;
  --panel: #201f1c;
  --panel-strong: #2c2923;
  --line: rgba(248, 244, 232, 0.16);
  --accent: #f3d35b;
  --accent-hot: #ff5f2f;
  --accent-cool: #58d7c4;
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.36);
  --radius: 8px;
  --container: min(1180px, calc(100vw - 64px));
}

html {
  font-size: 16px;
  line-height: 1.5;
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  min-height: 100vh;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 8%, rgba(255, 95, 47, 0.24), transparent 28rem),
    radial-gradient(circle at 82% 2%, rgba(88, 215, 196, 0.14), transparent 24rem),
    linear-gradient(180deg, #171513 0%, #11110f 54%, #181611 100%);
  font-family: "Avenir Next", "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 500;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.26;
  background-image:
    linear-gradient(rgba(248, 244, 232, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(248, 244, 232, 0.05) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, black, transparent 72%);
}

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

img {
  height: auto;
  border-radius: var(--radius);
  object-fit: cover;
}

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

button {
  border: 0;
  background: none;
  color: inherit;
  font: inherit;
}

ul {
  list-style: none;
}

::selection {
  color: #151310;
  background: var(--accent);
}

*:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

section {
  position: relative;
  width: 100%;
  padding: 96px 0;
}

.boxed,
.top,
.bio-section,
.site-footer {
  width: var(--container);
  margin-inline: auto;
}

.bg-alt {
  background:
    linear-gradient(135deg, rgba(243, 211, 91, 0.06), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.01));
  border-block: 1px solid var(--line);
}

/* Header */
.top {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
  backdrop-filter: blur(18px);
}

.top__left,
.top__right,
.top .links,
.top__cta {
  display: flex;
  align-items: center;
}

.top__left {
  gap: 14px;
}

.top__avatar {
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 50%;
  object-position: 50% 24%;
  box-shadow: 0 0 0 5px rgba(248, 244, 232, 0.04);
}

.top__brand {
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
}

.top__right {
  gap: 28px;
}

.top .links {
  gap: 24px;
}

.top__link {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.top__link:hover,
.top__link.is-active {
  color: var(--ink);
}

.top__cta,
.button {
  min-height: 44px;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 850;
  line-height: 1;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.top__cta {
  gap: 6px;
  padding: 0 18px;
  color: #181611;
  background: var(--accent);
}

.arrow {
  transition: transform 180ms ease;
}

.top__cta:hover,
.button:hover,
.media-card:hover {
  transform: translateY(-2px);
}

.top__cta:hover .arrow {
  transform: translateX(4px);
}

/* Hero */
.hero {
  min-height: calc(100vh - 84px);
  padding-top: 56px;
  padding-bottom: 72px;
  overflow: hidden;
}

.hero::after {
  content: "BRAND FACE";
  position: absolute;
  right: -0.08em;
  bottom: 0.05em;
  z-index: -1;
  color: rgba(248, 244, 232, 0.035);
  font-size: clamp(5rem, 16vw, 14rem);
  font-weight: 950;
  line-height: 0.8;
  white-space: nowrap;
}

.hero__grid,
.split,
.proof-block,
.video-grid {
  display: grid;
  gap: 48px;
}

.hero__grid {
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.68fr);
  align-items: center;
  gap: 72px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 38px;
  height: 2px;
  background: currentColor;
}

.overview,
.section-heading h2,
.section-kicker h2 {
  max-width: 940px;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 800;
  letter-spacing: 0;
}

.overview {
  max-width: 760px;
  font-size: clamp(3.4rem, 5.8vw, 6.2rem);
  line-height: 0.94;
}

.hero__lede {
  max-width: 620px;
  margin-top: 24px;
  color: var(--muted);
  font-size: clamp(1rem, 1.2vw, 1.2rem);
  line-height: 1.5;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid var(--line);
}

.button--primary {
  color: #151310;
  border-color: var(--accent);
  background: var(--accent);
}

.button--ghost {
  color: var(--ink);
  background: rgba(248, 244, 232, 0.04);
}

.hero__media {
  position: relative;
}

.hero__media img {
  aspect-ratio: 5 / 4;
  width: 100%;
  box-shadow: var(--shadow);
}

.portrait-image {
  object-position: 50% 24%;
}

.hero__media::before {
  content: "";
  position: absolute;
  inset: 18px -18px -18px 18px;
  z-index: -1;
  border: 1px solid rgba(243, 211, 91, 0.52);
  border-radius: var(--radius);
}

.hero__badge {
  position: absolute;
  right: -28px;
  bottom: 28px;
  width: min(280px, 82%);
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(20, 20, 19, 0.86);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.hero__badge strong,
.hero__badge span {
  display: block;
}

.hero__badge strong {
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 0.96rem;
}

.hero__badge span {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.4;
}

/* Proof strip */
.proof-strip {
  padding: 22px 0;
  border-block: 1px solid var(--line);
  overflow: hidden;
  background: #0f0f0d;
}

.marquee {
  display: flex;
  width: max-content;
  gap: 36px;
  animation: marquee 28s linear infinite;
}

.marquee span {
  color: var(--accent-hot);
  font-size: clamp(1.6rem, 4vw, 3.6rem);
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

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

/* Sections */
.split {
  grid-template-columns: 0.86fr 1fr;
  align-items: start;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 52px;
}

.section-heading h2,
.section-kicker h2 {
  font-size: clamp(2.4rem, 5.2vw, 5.4rem);
  line-height: 0.96;
}

.section-heading p,
.story-card p,
.proof-copy p,
.capability p,
.bio-text p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.65;
}

.section-heading p {
  max-width: 620px;
  margin-top: 20px;
}

.story-card {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
  box-shadow: var(--shadow);
}

.story-card p + p,
.bio-text p + p {
  margin-top: 18px;
}

/* Proof blocks and sliders */
.proof-block {
  grid-template-columns: minmax(0, 1.22fr) minmax(280px, 0.62fr);
  align-items: center;
  margin-top: 76px;
}

.proof-block--reverse {
  grid-template-columns: minmax(280px, 0.62fr) minmax(0, 1.22fr);
}

.proof-block--reverse .slider-group {
  order: 2;
}

.siema-wrapper,
.proof-image,
.featured-video,
.media-card,
.capability {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.siema {
  margin: 0;
  display: flex;
}

.siema > div {
  flex-shrink: 0;
  width: 100%;
  display: flex;
}

.siema img,
.proof-image {
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 0;
}

.proof-image {
  border-radius: var(--radius);
}

.slider-controls {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 14px;
}

.slider-controls button {
  min-width: 68px;
  min-height: 34px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
  transition: color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.slider-controls button:hover {
  color: var(--ink);
  border-color: var(--accent);
  transform: translateY(-1px);
}

.proof-copy {
  padding: 8px 0;
}

.proof-label {
  display: block;
  margin-bottom: 18px;
  color: var(--accent-cool);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.proof-copy h3,
.capability h3,
.media-card strong {
  color: var(--ink);
  font-size: clamp(1.7rem, 2.5vw, 2.6rem);
  line-height: 1;
}

.proof-copy p {
  margin-top: 18px;
}

/* Camera */
.video-grid {
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  align-items: start;
}

.featured-video {
  position: sticky;
  top: 100px;
  aspect-ratio: 16 / 9;
  background: #080807;
}

.featured-video iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.media-cards {
  display: grid;
  gap: 18px;
}

.media-card {
  display: grid;
  grid-template-columns: 132px 1fr;
  gap: 16px;
  padding: 12px;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.media-card:hover {
  border-color: rgba(243, 211, 91, 0.52);
  background: var(--panel-strong);
}

.media-card img {
  width: 132px;
  height: 104px;
  border-radius: 6px;
}

.media-card span {
  align-self: end;
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.media-card strong {
  display: block;
  margin-top: 8px;
  font-size: 1.15rem;
  line-height: 1.12;
}

/* Shorts */
.shorts-section {
  background:
    radial-gradient(circle at 16% 8%, rgba(255, 95, 47, 0.12), transparent 22rem),
    radial-gradient(circle at 90% 0%, rgba(88, 215, 196, 0.08), transparent 24rem);
}

.shorts-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.short-card {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
  box-shadow: var(--shadow);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.short-card:hover {
  transform: translateY(-4px);
  border-color: rgba(88, 215, 196, 0.42);
  background: var(--panel);
}

.short-frame {
  aspect-ratio: 9 / 16;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #080807;
}

.short-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  background: #080807;
}

.short-load {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  cursor: pointer;
  color: var(--ink);
  background:
    radial-gradient(circle at 50% 36%, rgba(88, 215, 196, 0.2), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
}

.short-thumb {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 0;
  object-fit: cover;
  object-position: center;
}

.short-load span {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid rgba(243, 211, 91, 0.48);
  border-radius: 999px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  transition: transform 180ms ease, border-color 180ms ease;
}

.short-load:hover span {
  transform: translateY(-2px);
  border-color: var(--accent);
}

.short-card > span {
  display: block;
  margin-top: 16px;
  color: var(--accent-cool);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.short-card > strong {
  display: block;
  margin-top: 8px;
  color: var(--ink);
  font-size: 1.08rem;
  line-height: 1.15;
}

/* Capabilities */
.capability-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.capability {
  min-height: 300px;
  padding: 26px;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.capability:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 95, 47, 0.46);
  background: var(--panel-strong);
}

.capability span {
  display: block;
  margin-bottom: 68px;
  color: var(--accent-hot);
  font-size: 0.8rem;
  font-weight: 950;
}

.capability h3 {
  margin-bottom: 16px;
  font-size: 1.8rem;
}

.capability p {
  font-size: 0.96rem;
}

/* About */
.bio-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1fr);
  gap: 48px;
  align-items: center;
}

.bio-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow);
}

.bio-text {
  max-width: 660px;
}

.bio-text > p:first-of-type {
  color: var(--ink);
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  line-height: 1.35;
}

.bio-links {
  display: flex;
  flex-wrap: wrap;
  gap: 28px 48px;
  margin-top: 30px;
}

.bio-links li + li {
  margin-top: 10px;
}

.bio-links a {
  color: var(--ink);
  font-weight: 850;
}

.bio-links a::before {
  content: "→";
  display: inline-block;
  margin-right: 10px;
  color: var(--accent);
  transition: transform 180ms ease;
}

.bio-links a:hover::before {
  transform: translateX(4px);
}

/* Footer */
.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 36px 0;
  color: var(--dim);
  font-size: 0.92rem;
  border-top: 1px solid var(--line);
}

.site-footer a {
  color: var(--muted);
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* Motion */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 680ms ease, transform 680ms ease;
}

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 980px) {
  :root {
    --container: min(100vw - 32px, 760px);
  }

  section {
    padding: 84px 0;
  }

  .top {
    position: relative;
    align-items: flex-start;
  }

  .top,
  .top__right,
  .top .links {
    flex-wrap: wrap;
  }

  .hero {
    min-height: auto;
    padding-top: 56px;
  }

  .hero__grid,
  .split,
  .proof-block,
  .proof-block--reverse,
  .video-grid,
  .bio-section {
    grid-template-columns: 1fr;
  }

  .proof-block--reverse .slider-group {
    order: 0;
  }

  .hero__media::before,
  .hero__badge {
    right: 18px;
  }

  .featured-video {
    position: relative;
    top: 0;
  }

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

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

@media (max-width: 640px) {
  :root {
    --container: min(100vw - 28px, 520px);
  }

  body::before {
    background-size: 42px 42px;
  }

  section {
    padding: 64px 0;
  }

  .top__right,
  .top .links {
    width: 100%;
    gap: 16px;
  }

  .top__cta {
    width: 100%;
    justify-content: center;
  }

  .overview {
    font-size: clamp(3.35rem, 18vw, 4.35rem);
  }

  .hero__badge {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: 12px;
  }

  .section-heading h2,
  .section-kicker h2 {
    font-size: clamp(2.35rem, 12vw, 3.6rem);
  }

  .proof-block {
    gap: 28px;
    margin-top: 56px;
  }

  .media-card {
    grid-template-columns: 1fr;
  }

  .media-card img {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 10;
  }

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

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

  .capability {
    min-height: auto;
  }

  .capability span {
    margin-bottom: 34px;
  }

  .site-footer {
    display: block;
  }

  .footer-right {
    margin-top: 10px;
  }
}
