/* ==========================================================================
   Rated Promo Videos — design system
   ========================================================================== */

:root {
  --bg: #0b0b0d;
  --bg-raised: #141417;
  --bg-card: #1a1a1e;
  --line: rgba(255, 255, 255, 0.09);
  --line-strong: rgba(255, 255, 255, 0.16);

  --text: #f5f4f2;
  --text-dim: #b3b1ac;
  --text-faint: #7a7975;

  --red: #e0212f;
  --red-bright: #ff2d3d;
  --red-dim: #8f151f;
  --gold: #e8b95b;

  --radius-sm: 6px;
  --radius: 12px;
  --radius-lg: 20px;

  --container: 1180px;
  --shadow-lift: 0 20px 60px -20px rgba(0, 0, 0, 0.7);
  --shadow-soft: 0 8px 30px -12px rgba(0, 0, 0, 0.6);

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4 {
  font-family: "Anton", "Arial Narrow", sans-serif;
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.05;
  margin: 0;
  text-transform: uppercase;
}

p {
  margin: 0;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red-bright);
}

.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--red-bright);
  display: inline-block;
}

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

/* ==========================================================================
   Header / Nav
   ========================================================================== */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 32px;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease);
}

/* Blur lives on a decorative layer, not the header itself — backdrop-filter
   on the header would make it a containing block for its fixed-position
   mobile nav overlay, trapping that overlay inside the header's own box
   instead of letting it fill the viewport. */
.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(11, 11, 13, 0.7);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  transition: background 0.3s var(--ease);
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
}

.site-header.is-scrolled::before {
  background: rgba(11, 11, 13, 0.92);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Anton", sans-serif;
  font-size: 20px;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.brand .stamp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--red-bright);
  color: var(--red-bright);
  padding: 3px 8px;
  border-radius: 4px;
  transform: rotate(-4deg);
  font-size: 14px;
  letter-spacing: 0.06em;
}

.brand .rest {
  color: var(--text);
}

.nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a {
  position: relative;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dim);
  padding: 6px 0;
  transition: color 0.2s;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 2px;
  background: var(--red-bright);
  transition: right 0.25s var(--ease);
}

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

.nav-links a:hover::after,
.nav-links a.is-active::after {
  right: 0;
}

.nav-cta {
  display: inline-flex;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
  z-index: 110;
}

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

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 30px;
  border-radius: 999px;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease), border-color 0.25s var(--ease);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--red-bright), var(--red-dim));
  color: #fff;
  box-shadow: 0 10px 30px -8px rgba(224, 33, 47, 0.55);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px -8px rgba(224, 33, 47, 0.7);
}

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

.btn-outline:hover {
  border-color: var(--red-bright);
  color: var(--red-bright);
  transform: translateY(-2px);
}

.btn-block {
  width: 100%;
}

.btn-lg {
  padding: 18px 38px;
  font-size: 14px;
}

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding: 160px 0 100px;
  overflow: hidden;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -10%;
  z-index: -2;
  background:
    radial-gradient(60% 50% at 80% 10%, rgba(224, 33, 47, 0.22), transparent 60%),
    radial-gradient(50% 40% at 10% 90%, rgba(232, 185, 91, 0.10), transparent 60%),
    var(--bg);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(11, 11, 13, 0.2) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11, 11, 13, 0.2) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(60% 60% at 70% 30%, black, transparent);
  opacity: 0.5;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  width: 100%;
}

.hero h1 {
  font-size: clamp(44px, 6.4vw, 92px);
  color: var(--text);
}

.hero h1 em {
  font-style: normal;
  color: var(--red-bright);
}

.hero-lede {
  margin-top: 22px;
  max-width: 46ch;
  color: var(--text-dim);
  font-size: 18px;
}

.hero-actions {
  margin-top: 36px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-trust {
  margin-top: 46px;
  display: flex;
  gap: 34px;
  flex-wrap: wrap;
}

.hero-trust div {
  display: flex;
  flex-direction: column;
}

.hero-trust strong {
  font-family: "Anton", sans-serif;
  font-size: 26px;
  color: var(--text);
}

.hero-trust span {
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-faint);
}

.hero-visual {
  position: relative;
}

.poster-stack {
  position: relative;
  height: 480px;
}

.poster-stack img {
  position: absolute;
  max-width: 300px;
  max-height: 300px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lift);
  border: 1px solid var(--line-strong);
}

.poster-stack img:nth-child(1) {
  top: 10px;
  left: 40px;
  transform: rotate(-9deg);
  z-index: 1;
}

.poster-stack img:nth-child(2) {
  top: 60px;
  right: 0;
  transform: rotate(6deg);
  z-index: 2;
}

.poster-stack img:nth-child(3) {
  top: 190px;
  left: 60px;
  transform: rotate(3deg);
  z-index: 3;
  max-width: 320px;
  max-height: 320px;
}

/* ==========================================================================
   Section scaffolding
   ========================================================================== */

section {
  position: relative;
  padding: 110px 0;
}

.section-head {
  max-width: 640px;
  margin: 0 0 56px;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-head h2 {
  margin-top: 14px;
  font-size: clamp(30px, 4vw, 48px);
}

.section-head p {
  margin-top: 16px;
  color: var(--text-dim);
  font-size: 17px;
}

.bg-raised {
  background: var(--bg-raised);
}

.divider {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 0;
}

/* ==========================================================================
   Service cards
   ========================================================================== */

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.service-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(340px 160px at 20% -10%, rgba(224, 33, 47, 0.16), transparent 70%);
  opacity: 0;
  transition: opacity 0.35s var(--ease);
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--line-strong);
  box-shadow: var(--shadow-soft);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card .num {
  font-family: "Anton", sans-serif;
  font-size: 13px;
  color: var(--text-faint);
  letter-spacing: 0.1em;
}

.service-card h3 {
  margin-top: 18px;
  font-size: 26px;
}

.service-card p {
  margin-top: 14px;
  color: var(--text-dim);
  font-size: 15px;
}

.service-card .price {
  margin-top: 22px;
  font-family: "Anton", sans-serif;
  font-size: 22px;
  color: var(--red-bright);
}

.service-card .price span {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  color: var(--text-faint);
  text-transform: none;
  letter-spacing: 0;
}

.service-card .card-link {
  margin-top: 24px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
}

.service-card .card-link .arrow {
  transition: transform 0.25s var(--ease);
}

.service-card:hover .card-link .arrow {
  transform: translateX(6px);
}

/* ==========================================================================
   Gallery
   ========================================================================== */

.gallery {
  columns: 4;
  column-gap: 20px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--bg-card);
  break-inside: avoid;
  margin-bottom: 20px;
}

.gallery-item img {
  width: 100%;
  transition: transform 0.5s var(--ease);
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-item .tag {
  position: absolute;
  left: 10px;
  bottom: 10px;
  right: 10px;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
  background: rgba(11, 11, 13, 0.75);
  backdrop-filter: blur(6px);
  padding: 8px 10px;
  border-radius: var(--radius-sm);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}

.gallery-item:hover .tag {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   Pricing
   ========================================================================== */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 920px;
  margin: 0 auto;
}

.pricing-grid.pricing-single {
  grid-template-columns: minmax(0, 460px);
  justify-content: center;
}

.price-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 42px 36px;
  display: flex;
  flex-direction: column;
}

.price-card.featured {
  border-color: var(--red-bright);
  box-shadow: 0 0 0 1px var(--red-bright), var(--shadow-lift);
}

.price-card .badge {
  position: absolute;
  top: -14px;
  right: 32px;
  background: var(--red-bright);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 999px;
}

.price-card h3 {
  font-size: 22px;
}

.price-card .amount {
  margin-top: 18px;
  font-family: "Anton", sans-serif;
  font-size: 54px;
  color: var(--text);
}

.price-card .amount sup {
  font-size: 20px;
  color: var(--text-faint);
  top: -1.4em;
}

.price-card ul {
  margin-top: 26px;
  display: flex;
  flex-direction: column;
  gap: 13px;
  flex: 1;
}

.price-card li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14.5px;
  color: var(--text-dim);
}

.price-card li::before {
  content: "";
  flex: none;
  width: 16px;
  height: 16px;
  margin-top: 3px;
  border-radius: 50%;
  background: rgba(224, 33, 47, 0.16);
  box-shadow: inset 0 0 0 1px rgba(224, 33, 47, 0.5);
}

.price-card .btn {
  margin-top: 30px;
}

/* ==========================================================================
   Process steps
   ========================================================================== */

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  counter-reset: step;
}

.step {
  position: relative;
  padding: 34px 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--bg-card);
}

.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  font-family: "Anton", sans-serif;
  font-size: 46px;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--line-strong);
}

.step h3 {
  margin-top: 16px;
  font-size: 20px;
}

.step p {
  margin-top: 12px;
  color: var(--text-dim);
  font-size: 14.5px;
}

/* ==========================================================================
   About / bio
   ========================================================================== */

.about-split {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 60px;
  align-items: center;
}

.about-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 8px;
}

.about-card img {
  border-radius: calc(var(--radius-lg) - 8px);
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}

.about-copy p + p {
  margin-top: 16px;
}

.about-copy p {
  color: var(--text-dim);
  font-size: 16px;
}

.credit-pills {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.credit-pills span {
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--text-dim);
}

/* ==========================================================================
   CTA band
   ========================================================================== */

.cta-band {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(50% 100% at 50% 0%, rgba(224, 33, 47, 0.14), transparent 70%),
    var(--bg-raised);
  text-align: center;
  padding: 100px 0;
}

.cta-band h2 {
  font-size: clamp(30px, 4.6vw, 56px);
}

.cta-band p {
  margin: 18px auto 0;
  max-width: 50ch;
  color: var(--text-dim);
}

.cta-band .hero-actions {
  justify-content: center;
  margin-top: 34px;
}

/* ==========================================================================
   Contact
   ========================================================================== */

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
}

.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.contact-line {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.contact-line:last-child {
  border-bottom: none;
}

.contact-line .icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(224, 33, 47, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red-bright);
  font-size: 16px;
  flex: none;
}

.contact-line .label {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-faint);
}

.contact-line .value {
  font-size: 16px;
  color: var(--text);
  margin-top: 2px;
}

.contact-line a.value:hover {
  color: var(--red-bright);
}

.social-row {
  display: flex;
  gap: 14px;
  margin-top: 28px;
}

.social-row a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease);
}

.social-row a:hover {
  border-color: var(--red-bright);
  transform: translateY(-3px);
}

.social-row img {
  width: 18px;
  height: 18px;
  filter: grayscale(1) brightness(1.6);
}

.form-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.field {
  margin-bottom: 20px;
}

.field label {
  display: block;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 8px;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  color: var(--text);
  font-family: inherit;
  font-size: 14.5px;
  transition: border-color 0.2s;
}

.field textarea {
  min-height: 120px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--red-bright);
}

.form-note {
  margin-top: 14px;
  font-size: 12.5px;
  color: var(--text-faint);
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
  padding: 70px 0 34px;
  border-top: 1px solid var(--line);
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
}

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

.footer-col h4 {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--text-faint);
  margin-bottom: 14px;
  text-transform: uppercase;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  font-size: 14.5px;
  color: var(--text-dim);
}

.footer-col a:hover {
  color: var(--text);
}

.footer-bottom {
  margin-top: 54px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 13px;
  color: var(--text-faint);
}

/* ==========================================================================
   Page hero (secondary pages, shorter)
   ========================================================================== */

.page-hero {
  min-height: 60vh;
  padding-top: 170px;
  padding-bottom: 70px;
}

.page-hero .hero-lede {
  max-width: 56ch;
}

.badge-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.badge-row span {
  font-size: 12px;
  letter-spacing: 0.05em;
  color: var(--text-dim);
  border: 1px solid var(--line-strong);
  padding: 8px 14px;
  border-radius: 999px;
}

/* ==========================================================================
   Responsive
   ========================================================================== */

/* The desktop nav needs ~1020px to sit on one line with the brand. */
@media (max-width: 1080px) {
  .nav-menu {
    position: fixed;
    inset: 0;
    background: rgba(9, 9, 10, 0.98);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    transform: translateY(-100%);
    transition: transform 0.4s var(--ease);
    z-index: 105;
  }

  .nav-links {
    flex-direction: column;
    align-items: center;
  }

  .nav-links a {
    font-size: 20px;
  }

  body.nav-open .nav-menu {
    transform: translateY(0);
  }

  .nav-toggle {
    display: flex;
  }

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

  body.nav-open .nav-toggle span:nth-child(2) {
    opacity: 0;
  }

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

@media (max-width: 980px) {
  .hero-grid,
  .about-split,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    order: -1;
  }

  .poster-stack {
    height: 380px;
    margin: 0 auto 30px;
    max-width: 320px;
  }

  .poster-stack img:nth-child(1) {
    max-width: 190px;
    max-height: 190px;
    top: 0;
    left: 0;
  }

  .poster-stack img:nth-child(2) {
    max-width: 190px;
    max-height: 190px;
    top: 30px;
    right: 0;
  }

  .poster-stack img:nth-child(3) {
    max-width: 210px;
    max-height: 210px;
    top: 120px;
    left: 45px;
  }

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

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

  .gallery {
    columns: 3;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 460px;
  }
}

@media (max-width: 760px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .gallery {
    columns: 2;
  }

  section {
    padding: 74px 0;
  }

  .hero {
    padding: 130px 0 70px;
  }

  .footer-top {
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .price-card {
    padding: 34px 22px;
  }

  .price-card .btn {
    white-space: normal;
    text-align: center;
  }
}
