* , *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: #fafafa; color: #161616;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; font-size: 1rem; line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
::selection { background: #c24b1e; color: #ffffff; }
:focus-visible { outline: 2px solid #c24b1e; outline-offset: 3px; }
h1, h2 { font-family: Futura, 'Century Gothic', 'Segoe UI', sans-serif; line-height: 1.08; font-weight: 600; }
a { color: inherit; text-decoration: none; }

/* ---- minimal transparent top nav ---- */
.topnav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  mix-blend-mode: difference;
}
.topnav-in {
  max-width: 88rem; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.12rem 2.00rem;
}
.brand {
  font-family: Futura, 'Century Gothic', 'Segoe UI', sans-serif; font-size: 1.15rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase; color: #fff;
}
.links { display: flex; gap: 2.00rem; }
.links a {
  color: #fff; font-size: 0.8rem; letter-spacing: 0.14em;
  text-transform: uppercase; opacity: 0.85;
}
.links a:hover { opacity: 1; }

/* ---- full-bleed hero ---- */
.hero { position: relative; height: 100vh; min-height: 34rem; overflow: hidden; }
.hero-img { width: 100%; height: 100%; object-fit: cover; }
.hero-scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(to top, rgba(100,100,100,0.55), transparent 45%),
    linear-gradient(to bottom, rgba(100,100,100,0.55), transparent 40%);
}
.hero-cap {
  position: absolute; left: 0; right: 0; bottom: 8vh;
  max-width: 88rem; margin: 0 auto; padding: 0 2.00rem; color: #fff;
}
.hero-kick {
  text-transform: uppercase; letter-spacing: 0.34em;
  font-size: 0.76rem; opacity: 0.9; margin-bottom: 1.12rem;
}
.hero-title {
  color: #fff; font-size: clamp(2.6rem, 8vw, 6rem);
  letter-spacing: -0.01em; margin-bottom: 0.4rem;
}
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.3rem); max-width: 34rem; opacity: 0.92;
}
.scroll-cue {
  position: absolute; left: 50%; bottom: 1.6rem; transform: translateX(-50%);
  width: 2.6rem; height: 2.6rem; border: 1px solid rgba(255,255,255,0.6);
  border-radius: 50%; color: #fff; display: flex; align-items: center;
  justify-content: center; font-size: 1.1rem;
  animation: bob 2s ease-in-out infinite;
}
@keyframes bob { 0%, 100% { transform: translate(-50%, 0); } 50% { transform: translate(-50%, 6px); } }

/* ---- section headers (kept minimal) ---- */
.sec-head { max-width: 88rem; margin: 0 auto; padding: 0 2.00rem 2.00rem; }
.sec-head h2 { font-size: clamp(1.6rem, 4vw, 2.6rem); }
.sec-head p { color: #767676; max-width: 34rem; margin-top: 0.4rem; }
.sec-head-row {
  display: flex; align-items: baseline; justify-content: space-between; gap: 2.00rem;
}
.drag-hint {
  color: #767676; font-size: 0.76rem; letter-spacing: 0.14em;
  text-transform: uppercase; white-space: nowrap;
}

/* ---- gallery: masonry, image-led ---- */
.gallery { padding: 5.50rem 0 3.50rem; }
.masonry {
  max-width: 88rem; margin: 0 auto; padding: 0 2.00rem;
  display: grid; grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 12rem; grid-auto-flow: dense; gap: 1.12rem;
}
.shot {
  position: relative; overflow: hidden; border-radius: 2px;
  background: #eeeeee;
}
.shot img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.shot:hover img { transform: scale(1.05); }
.shot.reg { grid-row: span 2; }
.shot.tall { grid-row: span 3; }
.shot.wide { grid-column: span 2; grid-row: span 2; }
.shot figcaption {
  position: absolute; inset: auto 0 0 0;
  display: flex; align-items: flex-end; justify-content: space-between;
  padding: 2.00rem 1.12rem 1.12rem;
  color: #fff; background: linear-gradient(transparent, rgba(126,49,20,0.82));
  opacity: 0; transform: translateY(0.6rem);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.shot:hover figcaption, .shot:focus-within figcaption {
  opacity: 1; transform: translateY(0);
}
.cap-t {
  font-family: Futura, 'Century Gothic', 'Segoe UI', sans-serif; font-size: 1.05rem; letter-spacing: 0.02em;
}
.cap-n { font-size: 0.8rem; opacity: 0.85; letter-spacing: 0.14em; }

/* ---- horizontal snap strip ---- */
.strip { padding: 3.50rem 0 5.50rem; background: #eeeeee; }
.film {
  display: flex; gap: 1.12rem; overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 0 2.00rem 1.12rem; scrollbar-width: thin;
}
.film::-webkit-scrollbar { height: 6px; }
.film::-webkit-scrollbar-thumb { background: #c24b1e; border-radius: 99px; }
.film-item {
  position: relative; flex: 0 0 min(78vw, 30rem);
  scroll-snap-align: center; border-radius: 2px; overflow: hidden;
}
.film-item img {
  width: 100%; aspect-ratio: 4 / 3; object-fit: cover;
  transition: transform 0.5s ease;
}
.film-item:hover img { transform: scale(1.04); }
.film-item figcaption {
  position: absolute; left: 0; bottom: 0; padding: 0.5rem 0.9rem;
  background: rgba(126,49,20,0.82); color: #fff; font-size: 0.8rem;
  letter-spacing: 0.08em; text-transform: uppercase;
}

/* ---- slim about band ---- */
.about {
  max-width: 88rem; margin: 0 auto; padding: 5.50rem 2.00rem;
  display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 3.50rem;
  align-items: center;
}
.about-img { border-radius: 2px; overflow: hidden; }
.about-img img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.about-txt .hero-kick { color: #c24b1e; }
.about-txt h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); margin-bottom: 1.12rem; }
.about-txt p { color: #767676; margin-bottom: 2.00rem; max-width: 34rem; }
.btn {
  display: inline-block; cursor: pointer;
  font-family: Futura, 'Century Gothic', 'Segoe UI', sans-serif; font-size: 0.9rem; letter-spacing: 0.06em;
  padding: 0.85em 2.2em; background: #c24b1e; color: #ffffff;
  border: 1px solid #c24b1e; border-radius: 2px;
  transition: background 0.2s ease, color 0.2s ease;
}
.btn:hover { background: transparent; color: #c24b1e; }

/* ---- contact footer ---- */
.contact { background: #161616; color: #fafafa; padding: 5.50rem 2.00rem; }
.contact-in { max-width: 60rem; margin: 0 auto; text-align: center; }
.contact-in h2 { color: #fafafa; font-size: clamp(2rem, 6vw, 3.4rem); }
.lead { color: #fafafa; opacity: 0.75; margin: 0.6rem auto 3.50rem; max-width: 32rem; }
.contact-rows {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 2.00rem 5.50rem;
  border-top: 1px solid rgba(194,75,30,0.14); border-bottom: 1px solid rgba(194,75,30,0.14);
  padding: 2.00rem 0; margin-bottom: 2.00rem;
}
.contact-rows a, .contact-rows .addr {
  display: flex; flex-direction: column; gap: 0.25rem;
  font-family: Futura, 'Century Gothic', 'Segoe UI', sans-serif; font-size: 1.1rem; color: #fafafa;
}
.contact-rows span {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; font-size: 0.72rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: #c24b1e; opacity: 0.9;
}
.contact-rows a:hover { color: #c24b1e; }
.colophon {
  font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: #fafafa; opacity: 0.55;
}

@media (prefers-reduced-motion: reduce) {
  .scroll-cue { animation: none; }
  .shot img, .film-item img { transition: none; }
}

@media (max-width: 900px) {
  .masonry { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 10rem; }
  .shot.wide { grid-column: span 2; }
  .about { grid-template-columns: 1fr; }
  .about-img { max-width: 26rem; }
}
@media (max-width: 560px) {
  .links { gap: 1.12rem; }
  .links a { font-size: 0.68rem; letter-spacing: 0.08em; }
  .masonry { grid-template-columns: 1fr; grid-auto-rows: 14rem; }
  .shot.wide, .shot.tall, .shot.reg { grid-column: span 1; grid-row: span 1; }
  .contact-rows { flex-direction: column; align-items: center; }
}


.xq{box-sizing:border-box;font-family:'Helvetica Neue', Helvetica, Arial, sans-serif;color:#161616;padding:56px 24px;width:100%}
.xq *{box-sizing:border-box;margin:0}
.xq .xq-wrap{max-width:1060px;margin:0 auto}
.xq h2{font-family:Futura, 'Century Gothic', 'Segoe UI', sans-serif;font-size:1.7rem;line-height:1.2;margin-bottom:8px}
.xq .xq-kick{display:block;font-size:.72rem;letter-spacing:.16em;text-transform:uppercase;color:#c24b1e;margin-bottom:10px;font-weight:700}

.xq-cta{background:#c24b1e;color:#ffffff}
.xq-cta h2,.xq-cta p{color:#ffffff}
.xq-cta p{opacity:.85;max-width:52ch}
.xq-cta-in{display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between;gap:20px}
.xq-btn{display:inline-block;background:#fafafa;color:#161616;text-decoration:none;font-weight:700;padding:14px 30px;border-radius:2px;font-family:Futura, 'Century Gothic', 'Segoe UI', sans-serif}
.xq-btn:hover{transform:translateY(-2px)}


/* =====================================================
   DESIGN DNA: seventies-funk
   Whole-page visual system applied over the layout
   archetype. Appended last so it wins the cascade.
   ===================================================== */
html::after{content:'';position:fixed;inset:0;z-index:99990;pointer-events:none;border:none;background:none;background:linear-gradient(90deg,#c24b1e,#d5772e,#bc4f2d,#8f4a48);background-size:100% 10px;background-repeat:no-repeat;background-position:top}
html::before{content:'';position:fixed;inset:0;z-index:99980;pointer-events:none;background:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='70'%3E%3Cpath d='M0 70a70 70 0 0 1 140 0z' fill='%23c24b1e'/%3E%3C/svg%3E");opacity:.06;}
h1,h2,h3{font-family:'Bookman Old Style', 'URW Bookman', Georgia, serif !important;letter-spacing:-0.01em !important;font-weight:800 !important;font-style:italic !important}
img{filter:sepia(.38) saturate(1.35) contrast(.98);border-radius:16px !important;border:3px solid rgba(194,75,30,.8) !important}
a[class*="btn"],button,span[class*="btn"]{border-radius:14px !important;border:3px solid #161616 !important;font-weight:800}
div[class*="card"]:not([class*="cards"]),article[class*="card"],a[class*="card"],figure[class*="card"],li[class*="card"]{border-radius:18px !important;border:2px solid rgba(22,22,22,.7) !important}
