/* Art direction: Vinyl bay proof sheet
   Shop-floor charcoal · Ocean brand blue · registration orange · cut-vinyl white
   Saira Condensed + Commissioner — lettering folio, not house ivory/serif */

@import url("https://fonts.googleapis.com/css2?family=Commissioner:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Saira+Condensed:wght@500;600;700;800&display=swap");

:root {
  --bay: #0c1016;
  --floor: #141a22;
  --panel: #1b2330;
  --ocean: #025486;
  --ocean-bright: #0a7ab8;
  --mark: #e85d04;
  --vinyl: #e8e4db;
  --mist: #a8b0bc;
  --line: rgba(232, 228, 219, 0.14);
  --line-strong: rgba(232, 228, 219, 0.28);
  --font-display: "Saira Condensed", "Arial Narrow", Impact, sans-serif;
  --font-body: "Commissioner", "Segoe UI", sans-serif;
  --wrap: 1180px;
  --header-h: 4.35rem;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--vinyl);
  background:
    radial-gradient(900px 480px at 12% -8%, rgba(2, 84, 134, 0.28), transparent 55%),
    radial-gradient(700px 420px at 92% 8%, rgba(232, 93, 4, 0.08), transparent 50%),
    linear-gradient(180deg, #0f141c 0%, var(--bay) 45%, #090c10 100%);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
  height: auto;
}

a {
  color: var(--ocean-bright);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--vinyl);
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  margin: 0 0 0.55rem;
}

p {
  margin: 0 0 1rem;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--mark);
  color: var(--bay);
  padding: 0.6rem 1rem;
  z-index: 1000;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.wrap {
  width: min(100% - 2.5rem, var(--wrap));
  margin-inline: auto;
}

.wrap-narrow {
  width: min(100% - 2.5rem, 720px);
  margin-inline: auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(12, 16, 22, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  width: min(100% - 1.5rem, var(--wrap));
  margin-inline: auto;
  min-height: var(--header-h);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
}

.brand {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand img {
  height: 2.15rem;
  width: auto;
}

.nav-desktop-wrap {
  justify-self: center;
}

.nav-desktop {
  display: flex;
  gap: 1.4rem;
  align-items: center;
}

.nav-desktop a {
  color: var(--vinyl);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  opacity: 0.88;
}

.nav-desktop a:hover,
.nav-desktop a[aria-current="page"] {
  opacity: 1;
  color: #fff;
}

.header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.header-phone {
  color: var(--mist);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  font-variant-numeric: tabular-nums;
}

.header-phone:hover {
  color: var(--vinyl);
}

.menu-toggle {
  display: none;
  appearance: none;
  border: 1px solid var(--line-strong);
  background: transparent;
  color: var(--vinyl);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.55rem 0.8rem;
  cursor: pointer;
}

.nav-mobile {
  display: none;
  border-top: 1px solid var(--line);
  background: var(--bay);
  padding: 0.5rem 1.25rem 1.25rem;
}

.nav-mobile.is-open {
  display: block;
}

.nav-mobile a {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 0.65rem 0;
  color: var(--vinyl);
  text-decoration: none;
  border-bottom: 1px solid var(--line);
  font-weight: 500;
}

.nav-mobile .btn {
  margin-top: 1rem;
  width: 100%;
  justify-content: center;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.75rem 1.2rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
}

.btn-mark {
  background: var(--mark);
  color: #140a02;
}

.btn-mark:hover {
  background: #ff6f14;
  color: #140a02;
}

.btn-ghost {
  background: transparent;
  color: var(--vinyl);
  border-color: var(--line-strong);
}

.btn-ghost:hover {
  border-color: var(--vinyl);
  color: #fff;
}

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

.btn-ocean:hover {
  background: var(--ocean-bright);
  color: #fff;
}

/* Hero */
.hero {
  position: relative;
  min-height: min(92vh, 820px);
  display: grid;
  align-items: end;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 11, 16, 0.82) 0%, rgba(8, 11, 16, 0.45) 48%, rgba(8, 11, 16, 0.35) 100%),
    linear-gradient(180deg, rgba(8, 11, 16, 0.35) 0%, rgba(8, 11, 16, 0.2) 40%, rgba(8, 11, 16, 0.88) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(100% - 2.5rem, var(--wrap));
  margin: 0 auto;
  padding: 5.5rem 0 3.5rem;
  max-width: 38rem;
  justify-self: start;
}

.hero-brand {
  font-size: clamp(3.2rem, 9vw, 5.6rem);
  margin-bottom: 0.35rem;
  color: #fff;
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.35);
}

.hero-line {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--mark);
  margin: 0 0 0.85rem;
}

.hero-lede {
  color: rgba(232, 228, 219, 0.9);
  font-size: 1.08rem;
  max-width: 32rem;
  margin-bottom: 1.5rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* Page hero (inner) */
.page-hero {
  padding: 3.5rem 0 2rem;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(2, 84, 134, 0.18), transparent 70%),
    var(--floor);
}

.page-hero h1 {
  font-size: clamp(2.6rem, 7vw, 4.2rem);
  color: #fff;
}

.page-hero p {
  color: var(--mist);
  max-width: 36rem;
  margin: 0;
  font-size: 1.08rem;
}

/* Sections */
.section {
  padding: 4.25rem 0;
}

.section-tight {
  padding: 1.75rem 0;
}

.section-dim {
  background: rgba(20, 26, 34, 0.65);
  border-block: 1px solid var(--line);
}

.section-title {
  font-size: clamp(2rem, 4.5vw, 3rem);
  color: #fff;
}

.section-lede {
  color: var(--mist);
  max-width: 38rem;
  margin-bottom: 2rem;
}

/* Proof ledger — not a 4-up strip */
.proof-ledger {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem 1.75rem;
  align-items: baseline;
  padding: 1.1rem 0;
  border-block: 1px solid var(--line-strong);
  font-size: 0.95rem;
}

.proof-ledger strong {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mark);
}

.proof-ledger span {
  color: var(--mist);
}

.proof-ledger em {
  font-style: normal;
  color: var(--vinyl);
}

/* Category index — proof sheet rows */
.folio-index {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.folio-row {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.4fr) auto;
  gap: 1rem 1.5rem;
  align-items: center;
  padding: 1.15rem 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  color: inherit;
  transition: background 0.25s var(--ease), padding 0.25s var(--ease);
}

.folio-row:hover {
  background: rgba(2, 84, 134, 0.15);
  padding-inline: 0.75rem;
}

.folio-row h3 {
  font-size: 1.55rem;
  margin: 0;
  color: #fff;
}

.folio-row p {
  margin: 0;
  color: var(--mist);
  font-size: 0.98rem;
}

.folio-row .tick {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mark);
}

/* Work mosaic */
.work-mosaic {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 0.65rem;
}

.work-tile {
  position: relative;
  overflow: hidden;
  min-height: 220px;
  background: var(--panel);
}

.work-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.work-tile:hover img {
  transform: scale(1.04);
}

.work-tile figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.1rem 1rem 0.9rem;
  background: linear-gradient(transparent, rgba(8, 11, 16, 0.92));
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
}

.work-tile.span-7 { grid-column: span 7; min-height: 340px; }
.work-tile.span-5 { grid-column: span 5; min-height: 340px; }
.work-tile.span-4 { grid-column: span 4; }
.work-tile.span-6 { grid-column: span 6; }
.work-tile.span-8 { grid-column: span 8; min-height: 300px; }
.work-tile.span-3 { grid-column: span 3; }

/* Install bands */
.install-stack {
  display: grid;
  gap: 0;
}

.install-band {
  display: grid;
  grid-template-columns: 8rem 1fr;
  gap: 1.5rem;
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--line);
}

.install-band:first-child {
  border-top: 1px solid var(--line);
}

.install-band .code {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--ocean-bright);
  letter-spacing: 0.04em;
  line-height: 1;
}

.install-band h3 {
  font-size: 1.7rem;
  color: #fff;
  margin-bottom: 0.4rem;
}

.install-band p {
  margin: 0;
  color: var(--mist);
  max-width: 40rem;
}

/* About split — asymmetric, not default card */
.about-rail {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.5rem;
  align-items: center;
}

.about-rail img {
  width: 100%;
  height: min(520px, 70vw);
  object-fit: cover;
  filter: contrast(1.04) saturate(0.95);
}

.about-rail .meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  margin: 1.25rem 0 0;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  color: var(--mist);
  font-size: 0.92rem;
}

.about-rail .meta strong {
  color: var(--vinyl);
  font-weight: 600;
}

.service-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 1.25rem;
}

.service-chips span {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.35rem 0.65rem;
  border: 1px solid var(--line-strong);
  color: var(--mist);
}

/* CTA close */
.cta-bay {
  padding: 4rem 0;
  background:
    linear-gradient(120deg, rgba(2, 84, 134, 0.35), rgba(12, 16, 22, 0.2) 55%),
    var(--panel);
  border-block: 1px solid var(--line);
  text-align: center;
}

.cta-bay h2 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  color: #fff;
}

.cta-bay p {
  color: var(--mist);
  max-width: 32rem;
  margin: 0 auto 1.5rem;
}

.cta-bay .hero-actions {
  justify-content: center;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2.5rem;
  align-items: start;
}

.contact-card {
  padding: 0;
}

.contact-card h2 {
  font-size: 1.8rem;
  color: #fff;
}

.contact-list {
  display: grid;
  gap: 1rem;
  margin: 1.25rem 0 1.75rem;
}

.contact-list dt {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mark);
  margin-bottom: 0.2rem;
}

.contact-list dd {
  margin: 0;
  color: var(--vinyl);
}

.contact-list a {
  color: var(--vinyl);
  text-decoration: none;
}

.contact-list a:hover {
  color: var(--ocean-bright);
}

.form {
  display: grid;
  gap: 0.9rem;
  padding: 1.5rem;
  background: rgba(20, 26, 34, 0.8);
  border: 1px solid var(--line);
}

.form label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--mist);
}

.form input,
.form select,
.form textarea {
  width: 100%;
  padding: 0.75rem 0.85rem;
  border: 1px solid var(--line-strong);
  background: var(--bay);
  color: var(--vinyl);
  font: inherit;
  border-radius: 0;
}

.form input:focus,
.form select:focus,
.form textarea:focus {
  outline: 2px solid var(--ocean-bright);
  outline-offset: 1px;
}

.form textarea {
  min-height: 140px;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
}

.form-status {
  margin: 0;
  padding: 0.75rem 0.9rem;
  background: rgba(2, 84, 134, 0.25);
  border: 1px solid rgba(10, 122, 184, 0.45);
  color: var(--vinyl);
  font-size: 0.95rem;
}

.map-embed {
  margin-top: 2rem;
  border: 1px solid var(--line);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: var(--panel);
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.35) contrast(1.05);
}

/* Work filter labels */
.work-cats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1.75rem;
}

.work-cats a {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--mist);
  padding: 0.4rem 0.7rem;
  border: 1px solid var(--line);
}

.work-cats a:hover,
.work-cats a.is-active {
  color: #fff;
  border-color: var(--mark);
  background: rgba(232, 93, 4, 0.12);
}

.work-block {
  margin-bottom: 3rem;
  scroll-margin-top: 5rem;
}

.work-block h2 {
  font-size: 1.8rem;
  color: #fff;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--line);
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.6rem;
}

.work-grid .tile {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--panel);
}

.work-grid .tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.work-grid .tile:hover img {
  transform: scale(1.04);
}

.work-grid .tile.wide {
  grid-column: span 2;
  aspect-ratio: 16 / 9;
}

/* Footer */
.site-footer {
  padding: 2.5rem 0 2rem;
  border-top: 1px solid var(--line);
  background: #080b10;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 2rem;
}

.footer-brand img {
  height: 2rem;
  width: auto;
  margin-bottom: 0.85rem;
}

.site-footer p,
.site-footer li,
.site-footer a {
  color: var(--mist);
  font-size: 0.92rem;
}

.site-footer a {
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--vinyl);
}

.site-footer h3 {
  font-size: 1.05rem;
  color: var(--vinyl);
  margin-bottom: 0.75rem;
}

.site-footer ul {
  display: grid;
  gap: 0.35rem;
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  justify-content: space-between;
  color: var(--mist);
  font-size: 0.85rem;
}

/* Motion */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.is-in {
  opacity: 1;
  transform: none;
}

.hero-content {
  animation: rise 0.9s var(--ease) both;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal,
  .hero-content,
  .work-tile img,
  .work-grid .tile img {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    animation: none !important;
  }
}

/* Responsive */
@media (max-width: 960px) {
  .nav-desktop-wrap {
    display: none;
  }

  .header-phone {
    display: none;
  }

  .header-actions .btn {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .header-inner {
    grid-template-columns: 1fr auto;
  }

  .folio-row {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }

  .folio-row .tick {
    justify-self: start;
  }

  .work-tile.span-7,
  .work-tile.span-5,
  .work-tile.span-4,
  .work-tile.span-6,
  .work-tile.span-8,
  .work-tile.span-3 {
    grid-column: span 12;
    min-height: 240px;
  }

  .about-rail,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .install-band {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

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

  .work-grid .tile.wide {
    grid-column: span 2;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .proof-ledger {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }
}

@media (max-width: 560px) {
  .hero {
    min-height: 78vh;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

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

  .work-grid .tile.wide {
    grid-column: span 1;
  }
}
