:root {
  color-scheme: only light;
  --bg: #f7f7f5;
  --bg-2: #efefec;
  --ink: #141414;
  --muted: #545454;
  --accent: #141414;
  --accent-2: #2e2e2e;
  --card: #ffffff;
  --shadow: 0 20px 60px rgba(20, 20, 20, 0.08);
  --radius: 20px;
}

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

body {
  font-family: "Space Grotesk", system-ui, sans-serif;
  background: linear-gradient(180deg, #fbfbfa 0%, #f4f4f1 100%);
  color: var(--ink);
  min-height: 100vh;
  line-height: 1.6;
  overflow-x: hidden;
}

.grain {
  pointer-events: none;
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='0.12'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
  opacity: 0.18;
  z-index: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 6vw;
  backdrop-filter: blur(14px);
  background: rgba(248, 248, 246, 0.9);
  border-bottom: 1px solid rgba(20, 20, 20, 0.08);
}

.logo {
  font-family: "Playfair Display", serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
}

.nav {
  display: flex;
  gap: 20px;
  font-weight: 500;
}

.nav a {
  color: var(--muted);
  text-decoration: none;
  position: relative;
  padding-bottom: 4px;
}

.nav a.active,
.nav a:hover {
  color: var(--ink);
}

.nav a.active::after,
.nav a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--ink);
}

main {
  position: relative;
  z-index: 1;
}

.hero {
  padding: 80px 6vw 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 48px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-videos {
  padding-top: 36px;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-text h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.6rem, 4vw, 4rem);
  line-height: 1.1;
  margin-bottom: 20px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.75rem;
  color: var(--accent-2);
  font-weight: 700;
  margin-bottom: 12px;
}

.lead {
  font-size: 1.1rem;
  color: var(--muted);
  margin-bottom: 24px;
}

.cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.btn {
  text-decoration: none;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn.primary {
  background: var(--ink);
  color: #fff;
  box-shadow: 0 16px 40px rgba(20, 20, 20, 0.18);
}

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

.btn.ghost {
  border: 1px solid rgba(20, 20, 20, 0.25);
  color: var(--ink);
}

.metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 16px;
}

.metric-value {
  font-size: 1.5rem;
  font-weight: 700;
  display: block;
}

.metric-label {
  font-size: 0.85rem;
  color: var(--muted);
}

.hero-card {
  background: var(--card);
  padding: 12px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  justify-self: end;
  max-width: 320px;
}

.hero-image {
  width: 100%;
  display: block;
  border-radius: 12px;
  object-fit: cover;
}

.profile-photo {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #fff;
  box-shadow: 0 12px 30px rgba(20, 20, 20, 0.2);
  margin-bottom: 18px;
}

.hero-card h2 {
  font-size: 1rem;
  margin-bottom: 12px;
}

.steps {
  display: grid;
  gap: 10px;
  list-style: none;
  color: var(--muted);
  margin-bottom: 18px;
  font-size: 0.95rem;
}

.text-link {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
}

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

.pulse {
  position: absolute;
  width: 160px;
  height: 160px;
  right: -60px;
  top: -60px;
  background: radial-gradient(circle, rgba(20, 20, 20, 0.12) 0%, rgba(20, 20, 20, 0) 70%);
  animation: pulse 6s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(0.9);
  }
  50% {
    transform: scale(1.1);
  }
}

.section {
  padding: 60px 6vw;
  max-width: 1200px;
  margin: 0 auto;
}

.section-heading {
  margin-bottom: 28px;
}

.section-heading h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.8rem, 2.5vw, 2.6rem);
}

.section-heading p {
  color: var(--muted);
  margin-top: 8px;
}

.grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.video-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.video-card {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(20, 20, 20, 0.08);
  padding: 12px;
  border-radius: 18px;
  box-shadow: none;
  backdrop-filter: blur(8px);
}

.ai-featured {
  grid-column: 1 / -1;
  width: 100%;
  max-width: 1120px;
  justify-self: center;
}

.ai-featured .video-embed {
  aspect-ratio: 16 / 9;
}

.video-card.wide {
  grid-column: 1 / -1;
}

.video-embed {
  width: 100%;
  aspect-ratio: 9 / 16;
  border-radius: 14px;
  overflow: hidden;
  background: #000;
}

.video-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.card {
  background: var(--card);
  padding: 24px;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

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

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

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  align-items: center;
}

.stack {
  display: grid;
  gap: 12px;
}

.chip {
  background: rgba(20, 20, 20, 0.04);
  border: 1px solid rgba(20, 20, 20, 0.2);
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 600;
}

.page {
  padding: 40px 6vw 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.page-hero {
  margin-bottom: 36px;
}

.about-copy {
  display: grid;
  gap: 14px;
  max-width: 62ch;
}

.about-copy p {
  color: var(--muted);
}

.profile-frame {
  background: var(--card);
  padding: 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: grid;
  gap: 16px;
  justify-items: center;
  text-align: center;
}

.profile-photo.large {
  width: 200px;
  height: 200px;
}

.callout {
  background: linear-gradient(135deg, rgba(20, 20, 20, 0.04), rgba(20, 20, 20, 0.08));
  border-radius: var(--radius);
  text-align: center;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.contact-card {
  background: var(--card);
  padding: 28px;
  border-radius: 18px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 16px;
}

.contact-card label {
  display: grid;
  gap: 8px;
  font-weight: 600;
  color: var(--muted);
}

input,
textarea {
  border: 1px solid rgba(29, 27, 22, 0.2);
  border-radius: 12px;
  padding: 12px 14px;
  font-family: inherit;
  font-size: 1rem;
  background: #fff;
}

input:focus,
textarea:focus {
  outline: 2px solid rgba(201, 111, 76, 0.4);
  border-color: var(--accent);
}

.contact-card.alt {
  gap: 18px;
}

.contact-email h2 {
  font-size: clamp(1.3rem, 2vw, 2rem);
  line-height: 1.2;
}

.email-link {
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  line-height: 1.1;
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(20, 20, 20, 0.14);
  background: rgba(20, 20, 20, 0.04);
  white-space: nowrap;
}

.email-link:hover {
  color: var(--accent-2);
  background: rgba(20, 20, 20, 0.08);
}

.details {
  list-style: none;
  display: grid;
  gap: 10px;
  color: var(--muted);
}

.muted {
  font-size: 0.9rem;
  color: var(--muted);
}

.footer {
  padding: 32px 6vw 48px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid rgba(20, 20, 20, 0.08);
  color: var(--muted);
}

.testimonials .card {
  border: 1px solid rgba(20, 20, 20, 0.08);
  box-shadow: none;
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.98), rgba(245, 245, 242, 0.85));
  position: relative;
  overflow: hidden;
}

.source-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(20, 20, 20, 0.1);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.8);
  text-decoration: none;
}

.source-badge:hover {
  color: var(--ink);
}

.source-badge .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #00b22d;
  box-shadow: 0 0 0 4px rgba(0, 178, 45, 0.12);
}

.quote p {
  font-size: 1.05rem;
  color: var(--ink);
}

.quote span {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-weight: 600;
}

.quote::before {
  content: "“”";
  position: absolute;
  top: 12px;
  right: 16px;
  font-family: "Playfair Display", serif;
  font-size: 3rem;
  color: rgba(20, 20, 20, 0.08);
}

.testimonials .grid {
  gap: 18px;
}

.footer-links {
  display: flex;
  gap: 18px;
}

.footer-links a {
  text-decoration: none;
  color: var(--muted);
}

.footer-links a:hover {
  color: var(--ink);
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.home-main {
  padding-bottom: 24px;
}

.top-brand-bar {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 6vw 4px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
}

.top-brand-bar p {
  font-size: 0.82rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}

.top-logos {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.top-logos img {
  height: 48px;
  width: auto;
  object-fit: contain;
  filter: saturate(0.95) contrast(1.05);
}

.home-hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: 56px 6vw 34px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 34px;
  align-items: stretch;
}

.hero-copy h1 {
  font-size: clamp(2.4rem, 4.9vw, 4.7rem);
  line-height: 1.03;
  letter-spacing: -0.03em;
  max-width: 14ch;
  margin-bottom: 18px;
}

.hero-proof {
  border: 1px solid rgba(20, 20, 20, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(247, 247, 245, 0.98) 100%);
  border-radius: 20px;
  padding: 12px;
}

.hero-proof .hero-image {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 14px;
}

.proof-stats {
  margin-top: 10px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.proof-stats div {
  background: rgba(20, 20, 20, 0.03);
  border-radius: 12px;
  padding: 10px 8px;
  text-align: center;
}

.proof-stats strong {
  display: block;
  font-size: 1.2rem;
  line-height: 1;
}

.proof-stats span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.75rem;
}

.client-strip {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 6vw 24px;
}

.client-strip p {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}

.client-list {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.client-list span {
  border: 1px solid rgba(20, 20, 20, 0.15);
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  font-weight: 600;
}

.sleek-grid .card {
  background: #fff;
  border: 1px solid rgba(20, 20, 20, 0.08);
  box-shadow: none;
}

.testimonial-grid .card {
  background: #fff;
}

.verified span {
  margin-top: 14px;
  font-size: 0.88rem;
}

.review-stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.review-shot {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(20, 20, 20, 0.2);
  border: 1px solid rgba(20, 20, 20, 0.1);
  background: #fff;
}

.review-shot img {
  width: 100%;
  height: auto;
  display: block;
}

.tilt-1 { transform: rotate(-1.2deg) translateY(2px); }
.tilt-2 { transform: rotate(0.9deg); }
.tilt-3 { transform: rotate(-0.7deg); }
.tilt-4 { transform: rotate(1.1deg) translateY(-2px); }
.tilt-5 { transform: rotate(-1deg) translateY(4px); }
.tilt-6 { transform: rotate(0.8deg); }

@media (max-width: 920px) {
  .top-brand-bar {
    flex-direction: column;
    align-items: flex-start;
  }

  .review-stack {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .site-header {
    flex-direction: column;
    gap: 12px;
  }

  .nav {
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero {
    padding-top: 40px;
  }

  .home-hero {
    grid-template-columns: 1fr;
    padding-top: 48px;
  }

  .hero-copy h1 {
    max-width: 100%;
  }

  .footer {
    flex-direction: column;
  }
}
