:root {
  color-scheme: light;
  --ink: #101114;
  --muted: #656a73;
  --paper: #ffffff;
  --soft: #f4f5f7;
  --line: #e4e6ea;
  --red: #ed1f2f;
  --cyan: #12c7de;
  --blue: #2264d1;
  --shadow: 0 24px 65px rgba(16, 17, 20, 0.16);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background:
    linear-gradient(115deg, rgba(237, 31, 47, 0.09), transparent 34rem),
    linear-gradient(180deg, #ffffff 0%, #f3f4f6 100%);
}

a {
  color: inherit;
}

.site-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(22px, 4vw, 48px) 0 54px;
}

.hero {
  min-height: min(720px, calc(100vh - 100px));
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(360px, 1.1fr);
  align-items: center;
  gap: clamp(30px, 5vw, 76px);
}

.hero-copy {
  max-width: 590px;
}

.brand-mark {
  width: clamp(110px, 15vw, 172px);
  height: auto;
  display: block;
  margin-bottom: 26px;
  border-radius: 50%;
  box-shadow: 0 16px 44px rgba(16, 17, 20, 0.14);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  letter-spacing: 0;
}

h1 {
  max-width: 9ch;
  font-size: clamp(3.4rem, 8.2vw, 7rem);
  line-height: 0.86;
}

.lead {
  max-width: 35rem;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.34rem);
  line-height: 1.55;
}

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

.social-link {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--ink);
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 10px 28px rgba(16, 17, 20, 0.08);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.social-link:hover,
.social-link:focus-visible {
  transform: translateY(-2px);
  border-color: currentColor;
  box-shadow: 0 16px 34px rgba(16, 17, 20, 0.15);
  outline: none;
}

.icon {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #ffffff;
  font-weight: 900;
}

.instagram .icon {
  background: linear-gradient(135deg, #f9ce34, #ee2a7b 52%, #6228d7);
}

.tiktok .icon {
  background: var(--ink);
}

.facebook .icon {
  background: var(--blue);
  font-family: Georgia, serif;
  font-size: 1.3rem;
}

.hero-gallery {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 118px;
  gap: 12px;
}

.tile,
.work-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.tile {
  grid-column: span 3;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.tile.tall {
  grid-row: span 3;
}

.tile.wide {
  grid-column: span 6;
}

.showcase {
  padding-top: 44px;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 18px;
}

.section-heading h2 {
  max-width: 650px;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 0.98;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-flow: dense;
  gap: 14px;
}

.work-card {
  position: relative;
  min-height: 260px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--soft);
  box-shadow: 0 14px 38px rgba(16, 17, 20, 0.1);
}

.work-card.feature {
  grid-column: span 2;
  grid-row: span 2;
}

.work-card figcaption {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  padding: 10px 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 900;
  box-shadow: 0 10px 26px rgba(16, 17, 20, 0.18);
}

.image-reel {
  padding-top: 48px;
}

.reel-heading {
  margin-bottom: 18px;
}

.reel-window {
  overflow: hidden;
  border-radius: 8px;
  background: #101114;
  box-shadow: var(--shadow);
}

.reel-track {
  width: max-content;
  display: flex;
  gap: 12px;
  padding: 12px;
  animation: reel-scroll 70s linear infinite;
}

.reel-track:hover {
  animation-play-state: paused;
}

.reel-track img {
  width: clamp(180px, 22vw, 280px);
  height: 180px;
  display: block;
  object-fit: cover;
  border-radius: 8px;
}

@keyframes reel-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .reel-track {
    animation: none;
  }
}

.admin-login {
  position: fixed;
  right: 14px;
  bottom: 14px;
  z-index: 10;
  padding: 8px 10px;
  border: 1px solid rgba(16, 17, 20, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  text-decoration: none;
  backdrop-filter: blur(12px);
}

.admin-login:hover,
.admin-login:focus-visible {
  color: var(--ink);
  outline: none;
}

@media (max-width: 880px) {
  .site-shell {
    width: min(100% - 24px, 680px);
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero-copy {
    text-align: center;
    margin: 0 auto;
  }

  .brand-mark {
    margin-left: auto;
    margin-right: auto;
  }

  h1 {
    max-width: none;
    font-size: clamp(3.1rem, 15vw, 5rem);
  }

  .lead {
    margin-left: auto;
    margin-right: auto;
  }

  .social-links {
    justify-content: center;
  }

  .social-link {
    flex: 1 1 185px;
  }

  .hero-gallery {
    grid-auto-rows: 98px;
  }

  .section-heading {
    display: block;
  }

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

@media (max-width: 540px) {
  .hero-gallery {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 128px;
  }

  .tile,
  .tile.wide,
  .tile.tall {
    grid-column: span 1;
    grid-row: span 1;
  }

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

  .work-card,
  .work-card.feature {
    grid-column: span 1;
    grid-row: span 1;
    min-height: 330px;
  }

  .reel-track img {
    width: 180px;
    height: 150px;
  }
}
