/* Dynamic Powder Coating — shop floor, not a template */
:root {
  --bg: #11100e;
  --bg-2: #181611;
  --bg-3: #221f19;
  --steel: #9c958a;
  --text: #f4efe6;
  --muted: #c4bdb1;
  --orange: #e07028;
  --orange-2: #f3a04c;
  --line: #3b362d;
  --black: #090807;
  --focus: #ffd7a8;
  --pad: clamp(1.25rem, 4vw, 2.5rem);
  --wrap: 72rem;
  --bar-h: 4.25rem;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; color-scheme: dark; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Barlow, "Segoe UI", system-ui, sans-serif;
  font-size: 1.0625rem;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--orange-2); }
a:hover { color: #ffc07a; }
h1, h2, h3 {
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 0.95;
  margin: 0 0 0.6em;
  text-wrap: balance;
}
h1 { font-size: clamp(2.4rem, 8vw, 5.2rem); text-transform: uppercase; }
h2 { font-size: clamp(2rem, 5.5vw, 3.4rem); text-transform: uppercase; }
h3 { font-size: 1.35rem; letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 0.35em; }
p { margin: 0 0 1em; }
address { font-style: normal; color: var(--muted); }

.skip {
  position: absolute;
  left: 0.75rem;
  top: -4rem;
  background: var(--orange);
  color: var(--black);
  padding: 0.6rem 1rem;
  z-index: 100;
  font-weight: 600;
}
.skip:focus { top: 0.75rem; color: var(--black); }

.wrap {
  width: min(100% - (var(--pad) * 2), var(--wrap));
  margin-inline: auto;
}

.kicker {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  font-size: 0.8rem;
  margin-bottom: 0.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  min-width: 44px;
  padding: 0.7rem 1.15rem;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  gap: 0.4rem;
}
.btn-lg { min-height: 52px; padding: 0.85rem 1.4rem; font-size: 1.15rem; }
.btn-solid {
  background: var(--orange);
  color: var(--black);
  border-color: var(--orange);
}
.btn-solid:hover { background: var(--orange-2); color: var(--black); }
.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: #6a6358;
}
.btn-ghost:hover { border-color: var(--orange); color: var(--text); }
.btn:focus-visible,
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 2px;
}

/* Sticky bar */
.bar {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  min-height: var(--bar-h);
  padding: 0.5rem var(--pad);
  background: rgba(9, 8, 7, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--text);
  text-decoration: none;
  min-height: 44px;
  min-width: 44px;
}
.brand img {
  width: 40px;
  height: 40px;
  border-radius: 4px;
  flex-shrink: 0;
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  font-family: "Barlow Condensed", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.brand-text strong { font-size: 0.95rem; font-weight: 800; }
.brand-text span { font-size: 0.72rem; color: var(--steel); font-weight: 600; }
.bar-nav {
  display: none;
  gap: 1.1rem;
  margin-left: auto;
}
.bar-nav a {
  color: var(--muted);
  text-decoration: none;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.9rem;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
.bar-nav a:hover { color: var(--text); }
.bar-cta {
  display: flex;
  gap: 0.4rem;
  margin-left: auto;
}
.bar-cta .btn-solid { white-space: nowrap; }
.menu-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: none;
  border: 1px solid var(--line);
  padding: 0;
  cursor: pointer;
  color: var(--text);
}
.menu-btn span {
  display: block;
  height: 2px;
  width: 18px;
  margin-inline: auto;
  background: var(--text);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  background: var(--black);
  border-bottom: 1px solid var(--line);
  padding: 0.5rem var(--pad) 1rem;
  position: sticky;
  top: var(--bar-h);
  z-index: 49;
}
.mobile-nav a {
  min-height: 44px;
  display: flex;
  align-items: center;
  color: var(--text);
  text-decoration: none;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--line);
}
.mobile-nav[hidden] { display: none; }

@media (min-width: 860px) {
  .bar-nav { display: flex; }
  .bar-cta { margin-left: 0; }
  .menu-btn, .mobile-nav { display: none !important; }
}
@media (max-width: 720px) {
  .bar-cta .btn-solid { font-size: 0; padding-inline: 0.9rem; }
  .bar-cta .btn-solid::after { content: "Call"; font-size: 1.05rem; }
}
@media (max-width: 420px) {
  .brand-text { display: none; }
}

/* Hero */
.hero {
  position: relative;
  min-height: calc(100svh - var(--bar-h));
  min-height: calc(100vh - var(--bar-h));
  display: grid;
  align-items: end;
  overflow: hidden;
}
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 42% 50%;
}
.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(9,8,7,0.25) 0%, rgba(9,8,7,0.55) 45%, rgba(9,8,7,0.94) 100%),
    linear-gradient(90deg, rgba(9,8,7,0.62) 0%, rgba(9,8,7,0.18) 55%);
}
.hero-inner {
  position: relative;
  z-index: 1;
  width: min(100% - (var(--pad) * 2), 50rem);
  margin: 0 auto 0 0;
  padding: 3rem var(--pad) 3.25rem;
}
.hero .lede {
  font-size: 1.2rem;
  color: var(--muted);
  max-width: 34rem;
  letter-spacing: 0.02em;
}
.hero .tag {
  font-style: italic;
  color: var(--steel);
  font-size: 1rem;
  margin-bottom: 1.4rem;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 0.6rem; }

/* Capacity */
.capacity {
  padding: 4.5rem 0 3.5rem;
  background:
    repeating-linear-gradient(-12deg, transparent, transparent 11px, rgba(224,112,40,0.035) 11px, rgba(224,112,40,0.035) 12px),
    var(--bg-2);
  border-top: 1px solid var(--line);
}
.capacity-grid {
  display: grid;
  gap: 1.75rem;
  margin-bottom: 2.5rem;
}
.capacity-copy p:last-child { color: var(--muted); font-size: 1.12rem; max-width: 38rem; }
.capacity-photos {
  display: grid;
  gap: 0.65rem;
}
.capacity-photos figure {
  margin: 0;
  border: 1px solid var(--line);
  background: var(--black);
}
.capacity-photos img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.capacity-photos figure:first-child img { object-position: 50% 62%; }
.capacity-photos figure:last-child img { object-position: 55% 45%; }
.capacity-photos figcaption {
  padding: 0.65rem 0.85rem;
  font-size: 0.85rem;
  color: var(--steel);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 600;
}
.facts {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.facts li {
  background: var(--bg);
  padding: 1.35rem 1.2rem 1.2rem;
}
.fact-n {
  display: block;
  font-family: "Barlow Condensed", sans-serif;
  color: var(--orange);
  letter-spacing: 0.16em;
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}
.facts p { color: var(--muted); margin: 0; }

@media (min-width: 800px) {
  .capacity-grid {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: end;
    gap: 2.5rem;
  }
  .capacity-photos { grid-template-columns: 1fr 1fr; }
  .facts { grid-template-columns: 1fr 1fr 1fr; }
}

/* Services */
.services {
  padding: 4.5rem 0;
  border-top: 1px solid var(--line);
}
.service-grid {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-top: 1.75rem;
}
.service-grid article {
  background: var(--bg-2);
  padding: 1.5rem 1.25rem 1.35rem;
}
.service-grid p { color: var(--muted); margin: 0; }
@media (min-width: 700px) {
  .service-grid { grid-template-columns: 1fr 1fr; }
}

/* Gallery */
.gallery {
  padding: 4.5rem 0;
  background: var(--black);
  border-top: 1px solid var(--line);
}
.shots {
  display: grid;
  gap: 0.65rem;
  margin-top: 1.5rem;
  grid-template-columns: 1fr 1fr;
}
.shots figure { margin: 0; }
.shots img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  background: var(--bg-3);
}
.shots figcaption {
  margin-top: 0.4rem;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--steel);
  font-weight: 600;
}
@media (min-width: 800px) {
  .shots { grid-template-columns: repeat(3, 1fr); }
  .shots figure:nth-child(4) { grid-column: span 2; }
  .shots figure:nth-child(4) img { aspect-ratio: 16 / 10; object-position: 50% 45%; }
}

/* Quote */
.quote {
  padding: 4.5rem 0 4rem;
  border-top: 1px solid var(--line);
  background: var(--bg-2);
}
.quote-grid { display: grid; gap: 2.25rem; }
.quote-phone {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(2rem, 6vw, 3.2rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  margin: 0.2rem 0 1rem;
}
.quote-phone a { color: var(--text); text-decoration: none; }
.quote-phone a:hover { color: var(--orange-2); }
.map-link { font-weight: 600; }
.quote form {
  background: var(--bg);
  border: 1px solid var(--line);
  padding: 1.35rem 1.2rem 1.4rem;
}
.form-note {
  color: var(--muted);
  font-size: 0.95rem;
}
.quote label {
  display: block;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.8rem;
  margin: 0.85rem 0 0.35rem;
}
.quote input,
.quote textarea {
  width: 100%;
  background: var(--bg-3);
  color: var(--text);
  border: 1px solid #4a443a;
  padding: 0.7rem 0.75rem;
  font: inherit;
  min-height: 44px;
  color-scheme: dark;
}
.quote input::placeholder,
.quote textarea::placeholder { color: #8a8378; }
.quote textarea { min-height: 7rem; resize: vertical; }
.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.1rem;
}
.form-status {
  min-height: 1.4em;
  color: var(--orange-2);
  font-size: 0.95rem;
  margin: 0.75rem 0 0;
}
@media (min-width: 800px) {
  .quote-grid { grid-template-columns: 1fr 1.05fr; align-items: start; }
}

/* Footer */
.foot {
  border-top: 1px solid var(--line);
  padding: 1.75rem 0 2.25rem;
  background: var(--black);
  color: var(--steel);
  font-size: 0.95rem;
}
.foot a { color: var(--text); }
.foot-inner p { margin: 0 0 0.35rem; }
.credit {
  margin-top: 0.9rem !important;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: "Barlow Condensed", sans-serif;
}

/* Pitch page */
.pitch-banner {
  background: #3a2410;
  color: #f6d7b0;
  text-align: center;
  padding: 0.55rem var(--pad);
  font-family: "Barlow Condensed", sans-serif;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 700;
  border-bottom: 1px solid #6a4a22;
}
.pitch-hero {
  padding: 3.5rem 0 2rem;
  border-bottom: 1px solid var(--line);
}
.pitch-hero h1 { max-width: 16ch; }
.pitch-hero .lede { font-size: 1.2rem; color: var(--muted); max-width: 38rem; }
.pitch-body { padding: 2.5rem 0 4rem; }
.pitch-body h2 {
  font-size: 1.55rem;
  margin-top: 2.4rem;
  color: var(--orange-2);
}
.pitch-body h2:first-child { margin-top: 0; }
.pitch-body p { color: var(--muted); max-width: 42rem; }
.pitch-body strong { color: var(--text); font-weight: 600; }
.walk {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
}
.walk li {
  border: 1px solid var(--line);
  background: var(--bg-2);
  padding: 1.15rem 1.15rem 1.05rem;
  margin-bottom: 0.65rem;
  color: var(--muted);
}
.walk .n {
  display: block;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  font-size: 0.75rem;
  margin-bottom: 0.35rem;
}
.walk h3 {
  font-size: 1.25rem;
  margin-bottom: 0.45rem;
  color: var(--text);
}
.sublist {
  margin: 0.6rem 0 0;
  padding: 0 0 0 1.1rem;
  color: var(--muted);
}
.sublist li { margin-bottom: 0.25rem; }
.not-promise {
  border-left: 3px solid var(--orange);
  padding: 0.2rem 0 0.2rem 1rem;
  color: var(--muted);
  max-width: 40rem;
}
.week {
  list-style: none;
  counter-reset: week;
  padding: 0;
  margin: 0 0 1.5rem;
  max-width: 42rem;
}
.week li {
  counter-increment: week;
  position: relative;
  padding: 0.85rem 0 0.85rem 2.6rem;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}
.week li::before {
  content: counter(week);
  position: absolute;
  left: 0;
  top: 0.85rem;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  color: var(--orange);
}
.pitch-shop {
  margin-top: 2.5rem;
  padding: 1.25rem 1.2rem;
  border: 1px solid var(--line);
  background: var(--black);
  max-width: 42rem;
}
.pitch-shop p { margin: 0 0 0.35rem; color: var(--muted); }
.pitch-shop a { color: var(--orange-2); }
