:root {
  --bg: #ffffff;
  --bg-alt: #f5f5f6;
  --fg: #14141a;
  --fg-muted: #5e5e6b;
  --accent: #c8371a;
  --border: #e2e2e6;
  --container: 1160px;
  --display: "Oswald", "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, Roboto, sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

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

.logo img {
  height: 22px;
  width: auto;
  display: block;
}

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

.nav a {
  font-family: var(--display);
  color: var(--fg-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  transition: color 0.2s ease;
}

.nav a:hover { color: var(--fg); }

.nav-cta {
  color: var(--accent) !important;
  border: 1px solid var(--accent);
  padding: 8px 20px;
}

.nav-cta:hover {
  background: var(--accent);
  color: #fff !important;
}

/* Hero */
.hero-video {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  background: #000;
  overflow: hidden;
}

.hero-video iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  border: 0;
  transform: translate(-50%, -50%) scale(1.45);
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 24px;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.15) 45%, rgba(0,0,0,0.65) 100%);
}

.hero-brand {
  font-family: var(--display);
  font-size: clamp(0.95rem, 1.8vw, 1.4rem);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  margin: 0;
  color: #fff;
}

.hero-brand span { color: var(--accent); }

.btn-hero {
  pointer-events: auto;
  margin-top: 32px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.7);
}

.btn-hero:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

/* Sections */
.section {
  padding: 100px 0;
}

.section-flush {
  padding-bottom: 0;
}

.section-alt {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border-left: 3px solid var(--accent);
  padding-left: 22px;
  margin-bottom: 56px;
}

.section-head-center {
  align-items: center;
  border-left: none;
  border-right: none;
  padding: 0;
  text-align: center;
}

.section-kicker {
  font-family: var(--display);
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 6px;
}

.section-title {
  font-family: var(--display);
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1;
  margin: 0;
}

/* Buttons */
.btn {
  display: inline-block;
  font-family: var(--display);
  padding: 13px 30px;
  font-weight: 500;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-primary:hover { background: #a82c13; }

.btn-large {
  font-size: 0.95rem;
  padding: 16px 40px;
}

/* Gallery — edge to edge */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}

.gallery-item {
  position: relative;
  padding-top: 56.25%;
  background: #000;
  overflow: hidden;
}

/* click-to-play poster: keeps YouTube chrome off the page until play */
.video-facade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: #000;
  cursor: pointer;
  display: block;
  overflow: hidden;
}

.video-facade img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease, opacity 0.3s ease;
}

.video-facade:hover img,
.video-facade:focus-visible img {
  transform: scale(1.04);
  opacity: 0.9;
}

.video-facade .play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.45);
  border: 2px solid rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.video-facade .play::before {
  content: "";
  margin-left: 5px;
  border-left: 17px solid #fff;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
}

.video-facade:hover .play,
.video-facade:focus-visible .play {
  background: var(--accent);
  border-color: var(--accent);
}

/* an odd final item would sit alone — let it run full width instead */
.gallery-item:last-child:nth-child(odd) {
  grid-column: 1 / -1;
  padding-top: 42%;
}

.gallery-item iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.shorts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  max-width: 1020px;
  margin: 0 auto;
}

.shorts-item {
  position: relative;
  padding-top: 88.8%;
  background: #000;
  overflow: hidden;
}

.shorts-item iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* About */
.about-inner {
  display: flex;
  align-items: center;
  gap: 64px;
}

.about-photo {
  width: 260px;
  height: 320px;
  object-fit: cover;
  flex-shrink: 0;
  border-left: 3px solid var(--accent);
}

.about-lead {
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0 0 20px;
  color: var(--fg);
}

.about-text p:not(.about-lead) {
  color: var(--fg-muted);
  font-size: 1.05rem;
  line-height: 1.8;
  margin: 0 0 20px;
}

.about-text p:last-child {
  margin-bottom: 0;
}

/* Brands */
.brands {
  margin-top: 72px;
  padding-top: 56px;
  border-top: 1px solid var(--border);
}

.brands-title {
  font-family: var(--display);
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.85rem;
  font-weight: 500;
  margin: 0 0 36px;
}

.brands-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 16px;
}

.brands-grid li {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 20px;
  min-height: 88px;
}

.brands-grid img {
  max-width: 100%;
  max-height: 45px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.7;
  transition: filter 0.25s ease, opacity 0.25s ease;
}

/* portrait lockups need extra height to stay optically balanced */
.brands-grid img.is-tall {
  max-height: 56px;
}

.brands-grid li:hover img {
  filter: grayscale(0);
  opacity: 1;
}

/* Reel lightbox */
.modal[hidden] { display: none; }

.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 8, 10, 0.97);
}

.modal-dialog {
  position: relative;
  width: 100%;
  max-width: 1120px;
}

.modal-video {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  background: #000;
  overflow: hidden;
}

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

.modal-close {
  position: absolute;
  top: -46px;
  right: 0;
  width: 38px;
  height: 38px;
  padding: 0;
  line-height: 1;
  font-size: 28px;
  color: #fff;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.modal-close:hover,
.modal-close:focus-visible {
  background: var(--accent);
  border-color: var(--accent);
}

body.modal-open { overflow: hidden; }

@media (max-width: 768px) {
  .modal { padding: 16px; }
  .modal-close { top: -42px; }
}

/* Contact */
.contact-inner {
  text-align: center;
}

.contact-copy {
  color: var(--fg-muted);
  font-size: 1.05rem;
  margin: 0 0 36px;
}

/* Footer */
.site-footer {
  padding: 32px 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--fg-muted);
  font-size: 0.9rem;
  flex-wrap: wrap;
  gap: 12px;
}

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

.footer-inner a:hover { color: var(--fg); }

/* Responsive */
@media (max-width: 900px) {
  .about-inner {
    flex-direction: column;
    text-align: center;
    gap: 32px;
  }

  .about-photo {
    border-left: none;
    border-bottom: 3px solid var(--accent);
    width: 220px;
    height: 260px;
  }
}

@media (max-width: 768px) {
  .nav { gap: 18px; }
  .nav a:not(.nav-cta) { display: none; }
  .section { padding: 72px 0; }
  .section-flush { padding-bottom: 0; }
  .section-head { margin-bottom: 40px; }
  .gallery-grid,
  .shorts-grid { grid-template-columns: 1fr; }
  .shorts-item { padding-top: 177.77%; }
  .gallery-item:last-child:nth-child(odd) {
    grid-column: auto;
    padding-top: 56.25%;
  }
}
