:root {
  --display-font: "Good Times", "Arial Black", Impact, sans-serif;
}

@font-face {
  font-family: "Good Times";
  src: url("assets/fonts/GoodTimesRg.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  color-scheme: light;
  --ink: #101010;
  --ink-soft: #2a2a2a;
  --paper: #f6f3ec;
  --paper-strong: #fffaf1;
  --muted: #69655d;
  --line: rgba(16, 16, 16, 0.16);
  --red: #c9362b;
  --red-dark: #8f211d;
  --aqua: #2fa6a0;
  --gold: #d99d36;
  --white: #ffffff;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.24);
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 72px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  letter-spacing: 0;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 100;
  transform: translateY(-150%);
  background: var(--white);
  color: var(--ink);
  padding: 0.75rem 1rem;
  border-radius: 6px;
}

.skip-link:focus {
  transform: translateY(0);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0 2rem;
  background: rgba(16, 16, 16, 0.86);
  color: var(--white);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand-logo {
  width: clamp(132px, 17vw, 220px);
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.site-nav a {
  font-family: var(--display-font);
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 0.9rem;
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  font-size: 0.77rem;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--white);
  background: rgba(255, 255, 255, 0.09);
  outline: none;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 6px;
  background: transparent;
  color: var(--white);
  cursor: pointer;
}

.nav-toggle span[aria-hidden="true"] {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 82svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
  background: var(--ink);
  color: var(--white);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media {
  background-image: url("assets/hero-camera-operator.png");
  background-position: center;
  background-size: cover;
  transform: scale(1.01);
}

.hero-overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.55) 36%, rgba(0, 0, 0, 0.18) 78%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.68) 0%, rgba(0, 0, 0, 0.12) 42%);
}

.hero-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 6rem 2rem 5.5rem;
}

.eyebrow {
  font-family: var(--display-font);
  margin: 0 0 0.9rem;
  color: var(--red);
  font-size: 0.82rem;
  font-weight: 400;
  text-transform: uppercase;
}

.section-dark .eyebrow,
.hero .eyebrow {
  color: #ff756b;
}

.hero-logo {
  width: min(100%, 650px);
  height: auto;
  margin: 0;
  filter: drop-shadow(0 18px 42px rgba(0, 0, 0, 0.48));
}

.hero-offer {
  max-width: 760px;
  margin: 1rem 0 0;
  color: var(--white);
  font-size: 2.45rem;
  font-weight: 900;
  line-height: 1.02;
}

.hero-copy {
  max-width: 660px;
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.button {
  font-family: var(--display-font);
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.8rem 1.05rem;
  border: 1px solid transparent;
  border-radius: 7px;
  font-weight: 800;
  line-height: 1.1;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.button::after {
  content: "->";
  font-weight: 900;
}

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

.button-primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--red-dark);
  border-color: var(--red-dark);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.11);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.24);
}

.section {
  padding: 6rem 2rem;
}

.section-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
}

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

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

.section-reel {
  background: #101010;
  color: var(--white);
}

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

.section-heading h2,
.contact-copy h2 {
  margin: 0;
  font-size: 2.65rem;
  line-height: 1.05;
  letter-spacing: 0;
}

.reel-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
}

.social-link {
  flex: 0 0 auto;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 7px;
  color: rgba(255, 255, 255, 0.82);
  font-family: var(--display-font);
  font-size: 0.78rem;
  text-decoration: none;
}

.social-link:hover,
.social-link:focus-visible {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
  outline: none;
}

.reel-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2.2rem;
}

.video-card,
.instagram-feed-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #050505;
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-link {
  display: block;
  color: var(--white);
  text-decoration: none;
}

.video-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.82;
  transition: transform 180ms ease, opacity 180ms ease;
}

.video-link:hover img,
.video-link:focus-visible img {
  transform: scale(1.02);
  opacity: 1;
}

.play-badge {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 0.85rem;
  border-radius: 7px;
  background: var(--red);
  color: var(--white);
  font-family: var(--display-font);
  font-size: 0.78rem;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.34);
}

.play-badge::before {
  content: "";
  width: 0;
  height: 0;
  margin-right: 0.55rem;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 11px solid currentColor;
}

.video-copy,
.instagram-copy {
  padding: 1rem;
}

.video-source-link {
  display: inline-flex;
  margin-top: 0.75rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
  font-weight: 800;
  text-decoration-color: rgba(255, 255, 255, 0.3);
  text-underline-offset: 0.18em;
}

.video-source-link:hover,
.video-source-link:focus-visible {
  color: var(--white);
  outline: none;
}

.video-copy h3,
.instagram-copy h3 {
  margin: 0;
  font-size: 1.16rem;
  line-height: 1.18;
}

.instagram-feed-card {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 0.58fr) minmax(0, 1fr);
  gap: 1rem;
  min-height: 230px;
  padding: 1rem;
  background:
    linear-gradient(120deg, rgba(201, 54, 43, 0.18), rgba(16, 16, 16, 0.92) 54%),
    #101010;
}

.instagram-copy {
  max-width: 420px;
  align-self: center;
  padding: 0;
}

.instagram-copy p:not(.eyebrow) {
  max-width: 360px;
  margin: 0.8rem 0 0;
  color: rgba(255, 255, 255, 0.7);
}

.instagram-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.4rem;
}

.instagram-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  align-self: stretch;
}

.instagram-preview-item {
  position: relative;
  min-height: 170px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 7px;
  background: #050505;
  color: var(--white);
  text-decoration: none;
}

.instagram-preview-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
  transition: transform 180ms ease, opacity 180ms ease;
}

.instagram-preview-item span {
  position: absolute;
  left: 0.75rem;
  right: 0.75rem;
  bottom: 0.7rem;
  z-index: 1;
  font-size: 0.86rem;
  font-weight: 900;
  line-height: 1.12;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.8);
}

.instagram-preview-item::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: 0;
  height: 55%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.78), transparent);
}

.instagram-preview-item:hover img,
.instagram-preview-item:focus-visible img {
  transform: scale(1.03);
  opacity: 0.92;
}

.instagram-preview-item:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.5);
  outline-offset: 3px;
}

.brand-strip {
  padding: 3rem 2rem;
  background: #171717;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.brand-strip-heading {
  max-width: 760px;
  margin-bottom: 2rem;
  color: var(--white);
}

.brand-strip-heading h2 {
  margin: 0;
  font-size: 2.1rem;
  line-height: 1.08;
}

.brand-strip-heading p:not(.eyebrow) {
  max-width: 620px;
  margin: 0.8rem 0 0;
  color: rgba(255, 255, 255, 0.68);
}

.brand-logo-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.brand-logo-tile {
  min-height: 112px;
  display: grid;
  place-items: center;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: var(--white);
}

.brand-logo-tile-dark {
  background: #111111;
}

.brand-logo-tile img {
  width: 100%;
  max-width: 190px;
  max-height: 62px;
  height: auto;
  object-fit: contain;
}

.brand-logo-tile-wide img {
  max-width: 225px;
  max-height: 48px;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2.2rem;
}

.work-card {
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 250, 241, 0.82), rgba(255, 255, 255, 0.34)),
    radial-gradient(circle at 15% 12%, rgba(201, 54, 43, 0.2), transparent 30%),
    radial-gradient(circle at 80% 18%, rgba(47, 166, 160, 0.22), transparent 28%);
}

.work-number {
  font-family: var(--display-font);
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: auto;
  border-radius: 50%;
  border: 1px solid var(--line);
  color: var(--red-dark);
  font-weight: 900;
}

.work-card h3,
.service-item h3 {
  margin: 1rem 0 0.55rem;
  font-size: 1.23rem;
  line-height: 1.15;
}

.work-card p,
.service-item p,
.process-steps span,
.contact-copy p {
  margin: 0;
  color: var(--muted);
}

.services-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: start;
}

.service-list {
  display: grid;
  gap: 0.85rem;
}

.service-item {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 1rem;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.service-item p {
  color: rgba(255, 255, 255, 0.68);
}

.service-icon {
  font-family: var(--display-font);
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--paper);
  color: var(--red-dark);
  font-weight: 900;
}

.process-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: start;
}

.process-steps {
  display: grid;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: process;
}

.process-steps li {
  position: relative;
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 1rem;
  padding: 1rem 0;
  border-top: 1px solid var(--line);
}

.process-steps li:last-child {
  border-bottom: 1px solid var(--line);
}

.process-steps strong {
  font-family: var(--display-font);
  color: var(--red-dark);
  font-weight: 400;
}

.section-contact {
  background:
    linear-gradient(135deg, rgba(16, 16, 16, 0.95), rgba(38, 31, 27, 0.95)),
    var(--ink);
  color: var(--white);
}

.section-outcome {
  background: var(--paper-strong);
}

.outcome-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.7fr);
  gap: 3rem;
  align-items: start;
}

.outcome-layout h2 {
  max-width: 650px;
  margin: 0;
  font-size: 2.65rem;
  line-height: 1.05;
}

.outcome-copy {
  display: grid;
  gap: 1.4rem;
  justify-items: start;
}

.outcome-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.72fr);
  gap: 3rem;
  align-items: start;
}

.contact-copy p {
  max-width: 560px;
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.72);
}

.contact-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.5rem;
}

.contact-meta a,
.contact-meta span {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 0 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
}

.contact-form {
  display: grid;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 0.45rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.28);
  color: var(--white);
  padding: 0.8rem 0.85rem;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--gold);
  outline: 2px solid rgba(217, 157, 54, 0.25);
}

.form-note {
  min-height: 1.35rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
}

.site-footer {
  background: #0b0b0b;
  color: rgba(255, 255, 255, 0.72);
  padding: 1.4rem 2rem;
}

.footer-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-logo {
  width: 172px;
  height: auto;
}

@media (max-width: 880px) {
  .site-header {
    padding: 0 1rem;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 72px 0 auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.7rem 1rem 1rem;
    background: rgba(16, 16, 16, 0.97);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  body.nav-open .site-nav {
    display: flex;
  }

  .site-nav a {
    justify-content: flex-start;
  }

  .hero {
    min-height: 78svh;
  }

  .hero-inner,
  .section {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .hero-copy {
    font-size: 1.05rem;
  }

  .hero-offer {
    font-size: 2rem;
  }

  .reel-heading {
    display: grid;
    align-items: start;
    gap: 1rem;
  }

  .work-grid,
  .reel-grid,
  .brand-logo-grid,
  .instagram-feed-card,
  .services-layout,
  .process-layout,
  .outcome-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

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

  .brand-logo-tile {
    min-height: 104px;
  }

  .instagram-preview-item {
    min-height: 140px;
  }

  .work-card {
    min-height: 230px;
  }

  .section-heading h2,
  .contact-copy h2,
  .outcome-layout h2 {
    font-size: 2.25rem;
  }

  .brand-strip-heading h2 {
    font-size: 1.9rem;
  }
}

@media (max-width: 560px) {
  .brand-logo {
    width: 150px;
  }

  .hero {
    min-height: 76svh;
  }

  .hero-inner {
    padding-top: 5rem;
    padding-bottom: 4rem;
  }

  .hero-logo {
    width: min(100%, 520px);
  }

  .hero-offer {
    font-size: 1.62rem;
  }

  .hero-actions,
  .button,
  .instagram-actions {
    width: 100%;
  }

  .section {
    padding-top: 4.2rem;
    padding-bottom: 4.2rem;
  }

  .section-heading h2,
  .contact-copy h2,
  .outcome-layout h2 {
    font-size: 1.95rem;
  }

  .brand-strip-heading h2 {
    font-size: 1.55rem;
  }

  .service-item,
  .process-steps li {
    grid-template-columns: 1fr;
  }

  .instagram-feed-card {
    min-height: auto;
    padding: 0.8rem;
  }

  .instagram-preview-grid {
    gap: 0.55rem;
  }

  .instagram-preview-item {
    min-height: 112px;
  }

  .instagram-preview-item span {
    left: 0.55rem;
    right: 0.55rem;
    bottom: 0.55rem;
    font-size: 0.72rem;
  }

  .brand-logo-grid li:last-child:nth-child(odd) {
    grid-column: 1 / -1;
  }

  .contact-form {
    padding: 0.8rem;
  }
}

@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;
  }
}
