:root {
  --black: #111111;
  --gold: #c9a34e;
  --gold-dark: #9d7d32;
  --white: #ffffff;
  --ivory: #fbfaf7;
  --line: #e9e2d3;
  --muted: #6a6863;
  --soft-black: #1b1a18;
  --shadow: 0 24px 70px rgba(17, 17, 17, 0.1);
  --radius: 8px;
  --container: 1200px;
  --header-height: 76px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--black);
  font-family: "Inter", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
}

body.nav-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

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

button,
input,
select,
textarea {
  font: inherit;
  letter-spacing: 0;
}

button {
  cursor: pointer;
}

.container {
  width: min(100% - 40px, var(--container));
  margin: 0 auto;
}

.section {
  padding: 104px 0;
  position: relative;
}

.section-light {
  background: var(--ivory);
}

.section-dark {
  background: var(--black);
  color: var(--white);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.86);
  border-bottom: 1px solid rgba(201, 163, 78, 0.18);
  backdrop-filter: blur(18px);
  transition: box-shadow 200ms ease, background 200ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 38px rgba(17, 17, 17, 0.08);
}

.nav {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  color: var(--black);
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid var(--gold);
  background: var(--black);
  color: var(--gold);
  border-radius: 50%;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 21px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
  color: rgba(17, 17, 17, 0.72);
  font-size: 14px;
  font-weight: 600;
}

.nav-menu a {
  transition: color 180ms ease;
}

.nav-menu a:hover,
.nav-menu a:focus-visible {
  color: var(--black);
}

.nav-cta {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: var(--radius);
  background: var(--black);
  color: var(--white);
  border: 1px solid var(--black);
}

.nav-cta:hover,
.nav-cta:focus-visible {
  color: var(--gold);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  background: var(--black);
  transition: transform 180ms ease;
}

.hero {
  min-height: calc(100svh - 88px);
  display: flex;
  align-items: center;
  padding: 118px 0 94px;
  overflow: hidden;
  background: var(--white);
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(90deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.38)),
    url("https://images.unsplash.com/photo-1737442528819-5526652236e8?auto=format&fit=crop&w=1800&q=80");
  background-size: cover;
  background-position: center right;
  opacity: 0.22;
}

.hero-canvas,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-canvas {
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.72;
}

.hero-overlay {
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.9) 48%, rgba(255, 255, 255, 0.58) 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 760px;
  margin-left: max(20px, calc((100% - var(--container)) / 2));
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold-dark);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.05;
  font-weight: 700;
}

h1 {
  max-width: 820px;
  margin-bottom: 24px;
  font-size: 58px;
}

h2 {
  margin-bottom: 18px;
  font-size: 44px;
}

h3 {
  margin-bottom: 12px;
  font-size: 24px;
}

.hero-copy {
  max-width: 670px;
  margin-bottom: 34px;
  color: #45423c;
  font-size: 19px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 42px;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
  box-shadow: 0 16px 34px rgba(201, 163, 78, 0.24);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--black);
  border-color: var(--black);
  color: var(--white);
  box-shadow: 0 18px 36px rgba(17, 17, 17, 0.18);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.72);
  color: var(--black);
  border-color: rgba(17, 17, 17, 0.18);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: var(--gold);
  color: var(--gold-dark);
}

.proof-grid {
  width: min(100%, 680px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 0;
  border: 1px solid rgba(201, 163, 78, 0.28);
  background: rgba(201, 163, 78, 0.28);
  box-shadow: var(--shadow);
}

.proof-grid div {
  min-height: 116px;
  padding: 24px 22px;
  background: rgba(255, 255, 255, 0.9);
}

.proof-grid dt {
  margin-bottom: 6px;
  color: var(--black);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 30px;
  font-weight: 700;
}

.proof-grid dd {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.section-heading {
  max-width: 620px;
}

.section-heading p:not(.eyebrow) {
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 18px;
}

.section-heading.centered {
  margin: 0 auto 50px;
  text-align: center;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 76px;
  align-items: start;
}

.problem-panel {
  border-top: 1px solid var(--gold);
  padding-top: 22px;
}

.check-list {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--soft-black);
  font-size: 19px;
  font-weight: 700;
}

.list-icon {
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--black);
  color: var(--gold);
}

.list-icon svg,
.feature-icon svg,
.contact-details svg,
.social-links svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.problem-list .list-icon {
  background: rgba(17, 17, 17, 0.06);
  color: var(--black);
}

.closing-line {
  margin: 28px 0 0;
  padding: 22px 0 0;
  border-top: 1px solid var(--line);
  color: var(--black);
  font-size: 22px;
  font-weight: 700;
}

.feature-grid,
.service-grid,
.creator-grid,
.case-grid,
.why-grid,
.video-preview-grid {
  display: grid;
  gap: 22px;
}

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

.feature-card,
.video-card,
.service-card,
.creator-card,
.case-card,
.contact-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.feature-card:hover,
.video-card:hover,
.service-card:hover,
.creator-card:hover,
.case-card:hover,
.contact-card:hover {
  transform: translateY(-5px);
  border-color: rgba(201, 163, 78, 0.64);
  box-shadow: var(--shadow);
}

.feature-card {
  padding: 34px;
}

.feature-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 30px;
  border-radius: 50%;
  background: var(--black);
  color: var(--gold);
}

.feature-icon svg {
  width: 23px;
  height: 23px;
}

.feature-card p,
.video-card p,
.service-card p,
.why-item p,
.contact-copy p,
.contact-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.youtube-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 76px;
  align-items: center;
}

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

.video-card {
  padding: 22px;
}

.video-thumb {
  min-height: 210px;
  display: flex;
  align-items: flex-end;
  margin-bottom: 24px;
  padding: 18px;
  border-radius: var(--radius);
  background-image:
    linear-gradient(180deg, rgba(17, 17, 17, 0.08), rgba(17, 17, 17, 0.64)),
    url("https://images.unsplash.com/photo-1551288049-bebda4e38f71?auto=format&fit=crop&w=900&q=80");
  background-size: cover;
  background-position: center;
}

.video-thumb-alt {
  background-image:
    linear-gradient(180deg, rgba(17, 17, 17, 0.05), rgba(17, 17, 17, 0.68)),
    url("https://images.unsplash.com/photo-1737442528819-5526652236e8?auto=format&fit=crop&w=900&q=80");
}

.video-thumb span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--gold);
  color: var(--black);
}

.video-thumb svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.video-card h3 {
  margin-bottom: 8px;
}

.section-dark .eyebrow {
  color: var(--gold);
}

.section-dark .section-heading {
  margin-bottom: 46px;
}

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

.service-card {
  min-height: 270px;
  padding: 28px;
  background: #171717;
  border-color: rgba(255, 255, 255, 0.12);
}

.service-card span,
.why-item span {
  display: inline-block;
  margin-bottom: 32px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
}

.service-card h3,
.service-card p {
  color: var(--white);
}

.service-card p {
  color: rgba(255, 255, 255, 0.66);
}

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

.creator-card {
  padding: 24px;
}

.creator-avatar {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 50%;
  color: var(--white);
  font-weight: 800;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.22);
}

.creator-avatar-one {
  background: #111111;
}

.creator-avatar-two {
  background: #c9a34e;
  color: var(--black);
}

.creator-avatar-three {
  background: #51422a;
}

.creator-avatar-four {
  background: #2e2e2e;
}

.creator-card h3 {
  margin-bottom: 4px;
  font-size: 23px;
}

.creator-card p {
  margin-bottom: 24px;
  color: var(--muted);
}

.creator-card dl {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 0;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.creator-card dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.creator-card dd {
  margin: 2px 0 0;
  font-size: 18px;
  font-weight: 800;
}

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

.case-card {
  padding: 30px;
}

.case-meta {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  margin-bottom: 26px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(201, 163, 78, 0.14);
  color: var(--gold-dark);
  font-size: 13px;
  font-weight: 800;
}

.case-flow {
  display: grid;
  gap: 18px;
  color: var(--muted);
}

.case-flow span,
.case-flow strong {
  position: relative;
  padding-left: 24px;
}

.case-flow em {
  display: block;
  margin-bottom: 2px;
  color: var(--gold-dark);
  font-size: 11px;
  font-style: normal;
  font-weight: 800;
  text-transform: uppercase;
}

.case-flow span::before,
.case-flow strong::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
}

.case-flow strong {
  color: var(--black);
  font-size: 21px;
}

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

.why-item {
  padding-bottom: 26px;
  border-bottom: 1px solid var(--line);
}

.why-item h3 {
  margin-bottom: 8px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.75fr);
  gap: 76px;
  align-items: start;
}

.contact-copy h2 {
  margin-bottom: 22px;
}

.contact-copy > p {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 18px;
}

.contact-main-cta {
  width: fit-content;
  margin-top: 30px;
}

.contact-details {
  display: grid;
  gap: 14px;
  margin-top: 38px;
}

.contact-details a,
.contact-details p {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.contact-details a:hover,
.contact-details a:focus-visible {
  color: var(--gold);
}

.contact-details svg {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  color: var(--gold);
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 12px;
}

.social-label {
  margin: 34px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.social-links a {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  color: var(--white);
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.social-links a:hover,
.social-links a:focus-visible {
  transform: translateY(-2px);
  background: var(--gold);
  color: var(--black);
}

.social-links svg {
  width: 19px;
  height: 19px;
}

.social-links svg path {
  fill: currentColor;
  stroke: none;
}

.contact-card {
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: #171717;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.22);
}

.contact-card h3 {
  color: var(--white);
}

.contact-card p {
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.68);
}

.contact-card .button {
  width: 100%;
}

.site-footer {
  background: var(--black);
  color: rgba(255, 255, 255, 0.68);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.footer-inner p {
  margin: 0;
}

.footer-inner a:hover,
.footer-inner a:focus-visible {
  color: var(--gold);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

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

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

  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 38px;
  }

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

  .split-layout,
  .contact-layout,
  .youtube-layout {
    grid-template-columns: 1fr;
    gap: 44px;
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 66px;
  }

  .container {
    width: min(100% - 28px, var(--container));
  }

  .site-header {
    background: rgba(255, 255, 255, 0.96);
  }

  .nav-toggle {
    display: flex;
  }

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

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

  .nav-menu {
    position: fixed;
    inset: var(--header-height) 0 auto 0;
    display: grid;
    gap: 0;
    padding: 14px;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 24px 60px rgba(17, 17, 17, 0.12);
    transform: translateY(-120%);
    visibility: hidden;
    pointer-events: none;
    transition: transform 220ms ease;
  }

  .nav-menu.is-open {
    transform: translateY(0);
    visibility: visible;
    pointer-events: auto;
  }

  .nav-menu a {
    min-height: 48px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(17, 17, 17, 0.08);
  }

  .nav-menu a:last-child {
    border-bottom: 0;
  }

  .nav-cta {
    margin-top: 12px;
    justify-content: center;
  }

  .brand span:last-child {
    max-width: 168px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .hero {
    min-height: auto;
    padding: 98px 0 72px;
  }

  .hero::before {
    background-position: center;
    opacity: 0.16;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.88) 66%, rgba(255, 255, 255, 0.72) 100%);
  }

  .hero-content {
    max-width: none;
  }

  h1 {
    font-size: 38px;
  }

  h2 {
    font-size: 32px;
  }

  h3 {
    font-size: 22px;
  }

  .hero-copy {
    font-size: 17px;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
    min-height: 50px;
    padding: 0 18px;
  }

  .proof-grid,
  .three-columns,
  .service-grid,
  .creator-grid,
  .case-grid,
  .why-grid,
  .video-preview-grid {
    grid-template-columns: 1fr;
  }

  .proof-grid div {
    min-height: auto;
  }

  .section-heading.centered {
    text-align: left;
  }

  .feature-card,
  .video-card,
  .service-card,
  .creator-card,
  .case-card,
  .contact-card {
    padding: 24px;
  }

  .service-card {
    min-height: auto;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-main-cta {
    width: 100%;
  }
}

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

  h1 {
    font-size: 34px;
  }

  h2 {
    font-size: 29px;
  }

  .check-list li {
    font-size: 17px;
  }

  .closing-line {
    font-size: 19px;
  }

  .contact-details a,
  .contact-details p {
    align-items: flex-start;
    overflow-wrap: anywhere;
  }

  .footer-inner {
    flex-direction: column;
    justify-content: center;
  }
}
