/* Ambient Media — Audio Design and Production */
:root {
  --oak: #3a2a1c;
  --walnut: #6b4a2a;
  --grain: #c4a574;
  --night: #07080b;
  --night-2: #0c0e12;
  --ivory: #f3efe6;
  --muted: #b7b1a4;
  --line: rgba(243, 239, 230, 0.12);
  --gold: #c9a227;
  --gold-dim: rgba(201, 162, 39, 0.28);
  --red: #9e1b1b;
  --green: #1e6b3a;
  --max: 1120px;
  --header-h: 5.25rem;
  --sans: "Avenir Next", "Segoe UI", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --display: Futura, "Century Gothic", "Avenir Next", "Tw Cen MT", "Trebuchet MS", sans-serif;
  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
}
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body {
  margin: 0;
  background: var(--night);
  color: var(--ivory);
  overflow-x: hidden;
}
body {
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.55;
  min-height: 100vh;
}
a { color: inherit; }
img, svg, canvas { display: block; max-width: 100%; }
button, input, textarea { font: inherit; color: inherit; }
h1, h2, h3, p, figure { margin: 0; }
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.skip {
  position: absolute;
  left: 1rem;
  top: 1rem;
  z-index: 80;
  transform: translateY(-180%);
  background: var(--ivory);
  color: var(--night);
  padding: 0.5rem 0.8rem;
  text-decoration: none;
}
.skip:focus, .skip:focus-visible {
  transform: none;
}

#field {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}
.vignette {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 50% 30%, transparent 0%, rgba(7,8,11,0.08) 48%, rgba(7,8,11,0.55) 100%);
}
.grain {
  position: fixed;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  width: 100%;
  height: 100%;
  opacity: 0.04;
  mix-blend-mode: overlay;
}

.wrap { position: relative; z-index: 3; }

header.site {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.4rem 0.4rem;
  min-height: var(--header-h);
  background: transparent;
  border-bottom: none;
}
.brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  text-decoration: none;
  color: var(--ivory);
  text-align: center;
  min-width: min(240px, 28vw);
}
.brand-mark {
  width: auto;
  height: clamp(56px, 8vw, 84px);
  flex: none;
  margin: 0 auto;
}
.brand-lockup {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.12rem;
  text-align: center;
}
.brand-name {
  font-family: var(--display);
  font-size: clamp(1.35rem, 2.6vw, 2rem);
  letter-spacing: 0.03em;
  font-weight: 600;
  line-height: 1.1;
}
.brand-sub {
  display: block;
  font-family: var(--display);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  font-weight: 400;
  color: var(--muted);
  line-height: 1.2;
}

nav.desk { display: flex; gap: 0.15rem; }
nav.desk a {
  text-decoration: none;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.55rem 0.85rem;
  color: var(--muted);
  border-bottom: 1px solid transparent;
}
nav.desk a:hover,
nav.desk a:focus-visible,
nav.desk a.is-on {
  color: var(--ivory);
  border-bottom-color: var(--gold);
  outline: none;
}
nav.desk a:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.burger {
  display: none;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 2px;
  cursor: pointer;
  padding: 0;
}
.burger span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 5px auto;
  background: var(--ivory);
}
.drawer {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(7,8,11,0.96);
  border-bottom: 1px solid var(--gold-dim);
  padding: 0.5rem 1rem 1rem;
}
.drawer a {
  display: block;
  text-decoration: none;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.85rem;
  padding: 0.85rem 0.4rem;
  border-bottom: 1px solid var(--line);
  color: var(--ivory);
}

main { display: block; }

/* page-header-bgv2.jpg 1152×324. Fill the hero; keep LCR (R must stay in frame). */
.hero {
  position: relative;
  width: 100%;
  aspect-ratio: 2.55 / 1;
  min-height: 22rem;
  max-height: 64svh;
  isolation: isolate;
  background: var(--night);
  overflow: hidden;
}
.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: right center;
  z-index: 0;
}
.hero-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(to right, rgba(7,8,11,0.72) 0%, rgba(7,8,11,0.28) 22%, rgba(7,8,11,0.05) 42%, transparent 58%),
    linear-gradient(to bottom, rgba(7,8,11,0.35) 0%, rgba(7,8,11,0.08) 28%, rgba(7,8,11,0.35) 55%, rgba(7,8,11,0.82) 78%, rgba(7,8,11,0.94) 100%);
}
.rings {
  position: absolute;
  inset: 8% 0 8%;
  z-index: 2;
  pointer-events: none;
  opacity: 0.45;
}
.rings svg { width: 100%; height: 100%; }
.hero-inner {
  position: absolute;
  left: 50%;
  top: 62%;
  transform: translate(-50%, -18%);
  z-index: 3;
  width: min(960px, calc(100% - 2rem));
  margin: 0;
  padding: 0 0 0.4rem;
  text-align: center;
}
.hero h1 {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(0.95rem, 3.6vw + 0.2rem, 2.85rem);
  line-height: 1;
  letter-spacing: -0.02em;
  white-space: nowrap;
}
.lede {
  margin: 0.85rem auto 0;
  max-width: 36rem;
  color: var(--ivory);
  font-size: clamp(0.92rem, 1.7vw, 1.08rem);
  line-height: 1.35;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.12rem;
}
.lede span { display: block; }
.cta-row {
  margin-top: 1.35rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: 1px solid var(--gold);
  background: transparent;
  color: var(--ivory);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.72rem;
  padding: 0.85rem 1.2rem;
  cursor: pointer;
  min-height: 44px;
}
.btn.solid {
  background: var(--ivory);
  color: var(--night);
  border-color: var(--ivory);
}
.btn:hover, .btn:focus-visible {
  background: var(--gold);
  color: var(--night);
  border-color: var(--gold);
  outline: none;
}
.btn.solid:hover, .btn.solid:focus-visible {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--night);
}

section.block {
  position: relative;
  padding: 5rem 1.25rem;
  border-top: 1px solid var(--line);
  overflow: hidden;
}
.inner { max-width: var(--max); margin: 0 auto; }
.sec-label {
  color: var(--gold);
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-size: 0.68rem;
  font-weight: 600;
  margin-bottom: 0.85rem;
}
.sec-title {
  font-size: clamp(1.6rem, 3.2vw, 2.3rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-bottom: 1.8rem;
}

/* 12-col image + text */
.grid12 {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1.4rem 1.6rem;
  align-items: center;
}
.span-7 { grid-column: 1 / span 7; }
.span-5 { grid-column: 8 / span 5; }
.grid12.flip .span-7 { grid-column: 6 / span 7; }
.grid12.flip .span-5 { grid-column: 1 / span 5; grid-row: 1; }
.grid12.about-grid .span-5 { grid-column: 1 / span 5; }
.grid12.about-grid .span-7 { grid-column: 6 / span 7; }

.shot {
  position: relative;
  margin: 0;
  background: var(--oak);
}
.shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 16 / 9;
}
.shot.tall img { aspect-ratio: 4 / 3; }

.svc-copy h3 {
  font-size: clamp(1.2rem, 2.4vw, 1.55rem);
  font-weight: 600;
  letter-spacing: -0.015em;
  margin-bottom: 0.7rem;
}
.svc-copy p { color: var(--muted); }

.svc-row + .svc-row { margin-top: 2.4rem; }

/* Tradition: wood-grain bands + tube ranks */
.wood-rule {
  position: relative;
}
.wood-rule::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 10px;
  pointer-events: none;
  background:
    repeating-linear-gradient(
      90deg,
      var(--oak) 0 7px,
      var(--walnut) 7px 11px,
      var(--grain) 11px 12px,
      var(--walnut) 12px 18px
    );
  opacity: 0.55;
}
.tubes {
  position: relative;
}
.tubes::after {
  content: "";
  position: absolute;
  top: 1.2rem;
  bottom: 1.2rem;
  right: 0.4rem;
  width: 42px;
  pointer-events: none;
  opacity: 0.38;
  background:
    repeating-linear-gradient(
      90deg,
      rgba(196,165,116,0.0) 0 3px,
      rgba(196,165,116,0.55) 3px 7px,
      rgba(58,42,28,0.9) 7px 9px
    );
  border-radius: 20px 20px 4px 4px;
  mask-image: linear-gradient(to bottom, transparent, #000 12%, #000 88%, transparent);
}

/* Space: meter ticks along a service edge */
.meters {
  position: relative;
}
.meters .shot::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 18px;
  pointer-events: none;
  background:
    repeating-linear-gradient(
      90deg,
      var(--gold) 0 2px,
      transparent 2px 7px,
      var(--green) 7px 9px,
      transparent 9px 14px,
      var(--red) 14px 16px,
      transparent 16px 22px
    );
  opacity: 0.7;
}

.history-quote {
  font-family: var(--serif);
  font-size: clamp(1.05rem, 2.15vw, 1.4rem);
  line-height: 1.4;
  letter-spacing: -0.01em;
}
.history-quote + .history-quote { margin-top: 0.75rem; }
.history-grid .span-5 { align-self: center; }

.career { list-style: none; padding: 0; margin: 0 0 1.6rem; }
.career li {
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--line);
}
.spec h3 {
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
}
.spec ul { margin: 0; padding: 0; list-style: none; }
.spec li {
  padding: 0.45rem 0 0.45rem 1rem;
  position: relative;
  color: var(--muted);
}
.spec li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.95rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 2rem;
}
.who {
  font-size: 1.6rem;
  font-weight: 500;
  margin: 0.3rem 0 0.8rem;
}
.who-sub { color: var(--muted); margin-bottom: 1.4rem; }
form.note { display: grid; gap: 0.7rem; }
label {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
input, textarea {
  width: 100%;
  background: rgba(7,8,11,0.7);
  border: 1px solid var(--line);
  padding: 0.75rem 0.85rem;
  border-radius: 0;
}
input:focus, textarea:focus,
input:focus-visible, textarea:focus-visible {
  outline: 1px solid var(--gold);
  border-color: var(--gold);
}
textarea { min-height: 8.5rem; resize: vertical; }
.form-row { display: flex; flex-wrap: wrap; gap: 0.6rem; align-items: center; }
.status {
  font-size: 0.9rem;
  color: var(--green);
  min-height: 1.2em;
}
.status.err { color: #e07070; }

footer.site {
  border-top: 1px solid var(--line);
  padding: 1.5rem 1.25rem 2.2rem;
  color: var(--muted);
  font-size: 0.78rem;
  background:
    repeating-linear-gradient(
      90deg,
      transparent 0 28px,
      rgba(58,42,28,0.35) 28px 29px
    );
}
footer .inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.5rem;
  justify-content: space-between;
  align-items: baseline;
}
.disc { max-width: 42rem; }

@media (max-width: 820px) {
  :root { --header-h: 4.6rem; }
  .brand {
    flex-direction: column;
    align-items: center;
    gap: 0.28rem;
    min-width: 0;
  }
  .brand-mark { height: 44px; }
  .brand-name { font-size: 1.05rem; }
  .brand-sub { display: none; }
  nav.desk { display: none; }
  .burger { display: inline-block; }
  header.site.is-open .drawer { display: block; }
  .grid12,
  .grid12.flip,
  .contact-grid { grid-template-columns: 1fr; }
  .span-7,
  .span-5,
  .grid12.flip .span-7,
  .grid12.flip .span-5,
  .grid12.about-grid .span-5,
  .grid12.about-grid .span-7 {
    grid-column: 1 / -1;
    grid-row: auto;
  }
  .tubes::after { display: none; }
  .hero {
    aspect-ratio: 2.2 / 1;
    min-height: 16.5rem;
    max-height: none;
  }
  .hero-photo {
    object-fit: cover;
    object-position: right center;
  }
  .hero-inner { top: 66%; width: calc(100% - 1.25rem); transform: translate(-50%, -12%); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .rings, #field { display: none !important; }
}
