/* Shutter Speed Studios / FPS Photo: dark, editorial photography-studio look */
:root {
  --red: #e2231a; --red-d: #b71a13; --black: #0a0a0b; --ink: #16161a; --steel: #232329;
  --white: #fff; --paper: #f4f3f1; --gray: #a9a9b2; --mid: #6a6a74; --line: #2a2a30;
  --display: "Bebas Neue", "Impact", sans-serif; --body: "Barlow", system-ui, sans-serif;
  --radius: 10px; --shadow: 0 14px 40px rgba(0,0,0,.35);
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--body); font-size: 17px; line-height: 1.6; color: #e8e8ea; background: var(--black); overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
.container { width: min(1180px, 100% - 32px); margin-inline: auto; }
.sr { position: absolute; left: -9999px; }

/* top bar + header */
.topbar { background: var(--red); color: #fff; font-weight: 700; letter-spacing: .02em; font-size: .92rem; }
.topbar .container { display: flex; justify-content: space-between; gap: 12px; padding: 6px 0; flex-wrap: wrap; }
.topbar a { text-decoration: underline; text-underline-offset: 3px; }
.header { position: sticky; top: 0; z-index: 50; background: rgba(10,10,11,.92); backdrop-filter: blur(6px); border-bottom: 1px solid var(--line); }
.header .container { display: flex; align-items: center; gap: 22px; min-height: 88px; }
.logo { display: flex; align-items: center; gap: 12px; flex: none; }
.logo__img { height: 66px; width: auto; display: block; }
.logo__img--footer { height: 110px; }
.nav-cta-mobile { display: none; }
.nav { display: flex; gap: clamp(10px, 1.4vw, 18px); margin-left: auto; align-items: center; }
.nav a, .nav .sub-toggle { font-family: var(--display); font-weight: 400; font-size: 1.15rem; letter-spacing: .02em; text-transform: uppercase; padding: 6px 0; border-bottom: 2px solid transparent; }
.nav a:hover, .sub-toggle:hover { border-color: var(--red); }
.navsep { color: var(--red); font-weight: 700; opacity: .75; }
@media (max-width: 900px) { .navsep { display: none; } }
.has-sub { position: relative; }
.has-sub .sub { position: absolute; top: 100%; left: 0; background: var(--ink); border: 1px solid var(--line); border-radius: 8px; padding: 8px; display: none; min-width: 220px; box-shadow: var(--shadow); z-index: 10; }
.has-sub:hover .sub, .has-sub.open .sub { display: block; }
.has-sub .sub a { display: block; padding: 9px 12px; border-radius: 6px; font-family: var(--body); text-transform: none; letter-spacing: 0; font-size: 1rem; font-weight: 600; border: 0; }
.has-sub .sub a:hover { background: var(--steel); color: var(--red); }
.cta { background: var(--red); color: #fff; font-weight: 800; text-transform: uppercase; letter-spacing: .05em; padding: 11px 20px; border-radius: 6px; font-size: .92rem; }
.cta:hover { background: var(--red-d); }
.burger { display: none; flex-direction: column; gap: 5px; width: 28px; }
.burger span { height: 2px; background: #fff; border-radius: 2px; }
@media (max-width: 900px) {
  .nav { display: none; position: absolute; left: 0; right: 0; top: 100%; background: var(--ink); flex-direction: column; align-items: flex-start; gap: 0; padding: 8px 20px 18px; border-bottom: 1px solid var(--line); }
  .nav.is-open { display: flex; } .nav a, .nav .sub-toggle { padding: 12px 0; width: 100%; }
  .has-sub .sub { position: static; display: block; background: none; border: 0; padding: 0 0 0 12px; box-shadow: none; }
  .burger { display: flex; } .cta { display: none; }
  .logo__img { height: 48px; }
  .nav-cta-mobile { display: block; color: var(--red) !important; }
}

/* buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; font-size: 1.02rem; padding: 14px 26px; border-radius: 6px; transition: .15s; }
.btn--red { background: var(--red); color: #fff; } .btn--red:hover { background: var(--red-d); }
.btn--dark { background: #fff; color: var(--black); } .btn--dark:hover { background: #ddd; }
.btn--block { width: 100%; }
.btn[disabled] { opacity: .5; pointer-events: none; }

/* hero */
.hero { padding: clamp(60px,10vw,120px) 0 clamp(50px,7vw,80px); background: radial-gradient(circle at 80% 0%, #2a1414, transparent 60%), var(--black); border-bottom: 1px solid var(--line); }
.hero--photo { position: relative; overflow: hidden; padding: clamp(90px,14vw,170px) 0 clamp(70px,9vw,110px); }
.hero__slides { position: absolute; inset: 0; z-index: 0; }
.hero__slide { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0; transition: opacity 1.6s ease; }
.hero__slide.is-on { opacity: 1; }
.hero__scrim { position: absolute; inset: 0; z-index: 1; background: linear-gradient(100deg, rgba(10,10,11,.94) 0%, rgba(10,10,11,.82) 42%, rgba(10,10,11,.45) 100%); }
.hero__inner { position: relative; z-index: 2; }
@media (prefers-reduced-motion: reduce) { .hero__slide { transition: none; } }
.pill { display: inline-block; background: var(--steel); color: var(--red); font-weight: 800; letter-spacing: .1em; text-transform: uppercase; font-size: .82rem; padding: 6px 14px; border-radius: 999px; margin-bottom: 18px; }
.hero h1 { font-family: var(--display); font-weight: 400; text-transform: uppercase; font-size: clamp(2.3rem,6vw,4.6rem); line-height: 1.02; letter-spacing: .01em; }
.hero h1 b { color: var(--red); font-weight: inherit; }
.hero__sub { color: var(--gray); max-width: 42em; margin: 18px 0 26px; font-size: 1.1rem; }
.hero__btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* sections */
.section { padding: clamp(48px,7vw,84px) 0; }
.section--dark { background: var(--ink); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.head { margin-bottom: 34px; }
.eyebrow { color: var(--red); font-weight: 800; letter-spacing: .1em; text-transform: uppercase; font-size: .9rem; }
.h2 { font-family: var(--display); font-weight: 400; text-transform: uppercase; font-size: clamp(1.8rem,3.6vw,3rem); line-height: 1.04; margin-top: 6px; }
.sub { color: var(--gray); max-width: 44em; margin-top: 10px; font-size: 1.05rem; }
.split { display: grid; grid-template-columns: 1.1fr .9fr; gap: 40px; align-items: center; }
@media (max-width: 800px) { .split { grid-template-columns: 1fr; } }
.ticks { list-style: none; display: grid; gap: 12px; }
.ticks li { padding-left: 26px; position: relative; color: #d8d8dc; }
.ticks li::before { content: "\2713"; position: absolute; left: 0; color: var(--red); font-weight: 800; }

/* cards */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px,1fr)); gap: 20px; }
.card { position: relative; background: var(--ink); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 22px 22px; display: flex; flex-direction: column; gap: 8px; transition: .2s; overflow: hidden; }
.card::before { content: ""; position: absolute; left: 0; top: 0; height: 4px; width: 100%; background: var(--red); }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: #3a3a42; }
.card h3 { font-family: var(--display); font-weight: 400; text-transform: uppercase; font-size: 1.5rem; letter-spacing: .02em; }
.card p { color: var(--gray); font-size: .98rem; flex: 1; }
.card .go { font-weight: 800; letter-spacing: .06em; text-transform: uppercase; color: var(--red); font-size: .88rem; }
.card--photo { background-size: cover; background-position: center; min-height: 220px; justify-content: flex-end; }
.card--photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(10,10,11,.92) 20%, rgba(10,10,11,.15) 80%); z-index: 0; }
.card--photo h3, .card--photo p, .card--photo .go { position: relative; z-index: 1; }
.card--photo p { color: #d8d8dc; }

/* pageheads */
.pagehead { background: linear-gradient(120deg, var(--ink), var(--black)); padding: 50px 0 42px; border-bottom: 3px solid var(--red); }
.pagehead--fps { background: linear-gradient(120deg, #1a1010, var(--black)); }
.pagehead--img { position: relative; background-size: cover; background-position: center; overflow: hidden; }
.pagehead--img::before { content: ""; position: absolute; inset: 0; background: linear-gradient(100deg, rgba(10,10,11,.94) 0%, rgba(10,10,11,.8) 45%, rgba(10,10,11,.4) 100%); }
.pagehead--img .container { position: relative; z-index: 1; }
.crumbs { color: var(--red); font-weight: 800; letter-spacing: .1em; text-transform: uppercase; font-size: .85rem; }
.pagehead h1 { font-family: var(--display); font-weight: 400; text-transform: uppercase; font-size: clamp(2.1rem,5vw,3.6rem); margin: 6px 0 8px; }
.pagehead p { color: var(--gray); max-width: 42em; }
.pagehead--imgtext { padding: 0 0 28px; }
.pagehead__banner { width: 100%; height: auto; display: block; margin-bottom: 22px; }
.pagehead--imgtext .crumbs { display: block; margin-bottom: 6px; }

/* order / quote form */
.order__grid { display: grid; grid-template-columns: 1.4fr .9fr; gap: 26px; align-items: start; }
@media (max-width: 860px) { .order__grid { grid-template-columns: 1fr; } }
.panel { background: var(--ink); border: 1px solid var(--line); border-radius: 12px; padding: 24px; }
.row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 560px) { .row { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 6px; margin: 12px 0; }
.field label, .lbl { font-weight: 700; font-size: .85rem; letter-spacing: .04em; text-transform: uppercase; color: var(--gray); }
.input, textarea.input, select.input { background: var(--steel); border: 1px solid var(--line); color: #fff; border-radius: 6px; padding: 12px 14px; font: inherit; width: 100%; }
.input:focus, textarea.input:focus, select.input:focus { outline: 2px solid var(--red); outline-offset: 1px; }
.drop { border: 2px dashed var(--line); border-radius: 8px; padding: 22px; text-align: center; color: var(--gray); cursor: pointer; }
.drop.is-over { border-color: var(--red); color: #fff; }
.files > div { display: flex; justify-content: space-between; gap: 10px; padding: 6px 0; font-size: .9rem; color: var(--gray); }
.hp { position: absolute; left: -9999px; }
.err { color: var(--red); font-size: .92rem; margin-top: 10px; min-height: 1.2em; }
.fine { color: var(--mid); font-size: .85rem; }
.panel h2 { font-family: var(--display); font-weight: 400; text-transform: uppercase; font-size: 1.4rem; margin-bottom: 6px; }
.sum dl { display: grid; grid-template-columns: auto 1fr; gap: 6px 14px; font-size: .95rem; }
.sum dt { color: var(--gray); } .sum a { color: var(--red); font-weight: 700; }

/* gallery */
.gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px,1fr)); gap: 12px; }
.gallery figure { position: relative; border-radius: 8px; overflow: hidden; aspect-ratio: 4/3; background: var(--steel); }
.gallery img { width: 100%; height: 100%; object-fit: cover; }

/* gear credit row */
.gearrow { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.gear { font-family: var(--display); text-transform: uppercase; letter-spacing: .04em; font-size: 1.2rem; padding: 10px 22px; border: 1px solid var(--line); border-radius: 999px; color: var(--gray); background: var(--ink); }
.printpartner { display: flex; align-items: center; justify-content: center; gap: 14px; margin-top: 30px; flex-wrap: wrap; }
.printpartner img { border-radius: 8px; }

/* footer */
.footer { background: var(--black); border-top: 1px solid var(--line); padding: 44px 0 30px; color: var(--gray); font-size: .95rem; }
.footer .container { display: grid; gap: 16px; }
.footer__brand { display: flex; align-items: center; gap: 10px; color: #fff; }
.footer__brand .logo__ap { width: 26px; height: 26px; }
.footer__sub { color: var(--gray); font-size: .82rem; text-transform: uppercase; letter-spacing: .08em; font-weight: 700; margin-left: 4px; }
.brand-fps, .brand-sss { color: var(--red); font-weight: inherit; }
.footer__text { max-width: 60em; }
.footer nav { display: flex; gap: 16px; flex-wrap: wrap; font-weight: 700; text-transform: uppercase; font-size: .85rem; }
.footer nav a:hover, .footer__contact a:hover, .footer__social a:hover { color: var(--red); }
.footer__contact, .footer__social { display: flex; gap: 18px; flex-wrap: wrap; font-weight: 700; }
.footer__fine { font-size: .82rem; color: var(--mid); }
