/* Teek Audio — palette taken straight from the subject: the amber glow of a
   heated filament, the blue-violet cast inside the glass, and the near-black
   of a workshop with the lights down. */

@font-face {
  font-family: "Archivo";
  font-style: normal;
  font-weight: 600 800;
  font-display: swap;
  src: url("/fonts/archivo-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
                 U+02DC, U+2000-206F, U+20AC, U+2122, U+2212, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Barlow";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/fonts/barlow-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
                 U+02DC, U+2000-206F, U+20AC, U+2122, U+2212, U+FEFF, U+FFFD;
}

:root {
  --ground:      #0d0b0a;
  --surface:     #16120e;
  --surface-2:   #211a14;
  --line:        #33281f;
  --line-bright: #4d3c2c;

  --amber:       #ff9a3c;
  --amber-bright:#ffb867;
  --amber-deep:  #d1660c;
  --amber-glow:  rgba(255, 154, 60, .30);

  --violet:      #7b8ede;
  --violet-dim:  #4a5aa8;

  --text:        #f4ede3;
  --text-muted:  #b3a596;
  --text-faint:  #7d7167;

  --radius:   4px;
  --radius-lg: 8px;
  --maxw:     1140px;

  --display: "Archivo", "Helvetica Neue", Arial, sans-serif;
  --body: "Barlow", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

body {
  margin: 0;
  background: var(--ground);
  color: var(--text);
  font-family: var(--body);
  font-size: 17.5px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* height:auto is load-bearing. Without it, an <img> carrying a height attribute
   keeps that exact pixel height while max-width shrinks its width — which
   silently distorts the picture. */
img { max-width: 100%; height: auto; display: block; }
a { color: var(--amber-bright); text-underline-offset: 3px; }
a:hover { color: var(--amber); }
:focus-visible { outline: 3px solid var(--amber); outline-offset: 3px; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--amber); color: #140b02; padding: 12px 20px; font-weight: 700;
}
.skip-link:focus { left: 0; }

/* ---------- header ---------- */

.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(13, 11, 10, .86);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap {
  display: flex; align-items: center; justify-content: space-between;
  gap: 22px; min-height: 70px; flex-wrap: wrap;
}

.brand { display: flex; align-items: baseline; gap: 10px; text-decoration: none; }
.brand-mark {
  font-family: var(--display); font-weight: 800; font-size: 1.3rem;
  letter-spacing: .16em; text-transform: uppercase; color: var(--text);
}
.brand-mark em { font-style: normal; color: var(--amber); }
.brand-sub {
  font-size: .7rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--text-faint);
}

.nav { display: flex; gap: 2px; flex-wrap: wrap; }
.nav a {
  color: var(--text-muted); text-decoration: none;
  font-family: var(--display); font-weight: 600;
  font-size: .76rem; letter-spacing: .16em; text-transform: uppercase;
  padding: 10px 14px; border-radius: var(--radius);
  transition: color .15s, background .15s;
}
.nav a:hover { color: var(--text); background: var(--surface-2); }
.nav a[aria-current="page"] { color: var(--amber); }

/* ---------- buttons ---------- */

.btn {
  display: inline-block; padding: 14px 30px;
  font-family: var(--display); font-weight: 700;
  font-size: .8rem; letter-spacing: .14em; text-transform: uppercase;
  text-decoration: none; border-radius: var(--radius);
  border: 1px solid transparent; transition: transform .12s, box-shadow .18s, background .18s;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(180deg, var(--amber-bright), var(--amber-deep));
  color: #170c02; box-shadow: 0 6px 26px var(--amber-glow);
}
.btn-primary:hover { color: #170c02; box-shadow: 0 10px 34px rgba(255,154,60,.45); }
.btn-ghost { border-color: var(--line-bright); color: var(--text); }
.btn-ghost:hover { color: var(--text); border-color: var(--amber); background: rgba(255,154,60,.10); }

/* ---------- hero ---------- */

.hero { position: relative; min-height: min(76vh, 620px); display: flex; align-items: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 45%; }
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 40% 55%, rgba(255,154,60,.16) 0%, transparent 70%),
    linear-gradient(100deg, rgba(13,11,10,.94) 0%, rgba(13,11,10,.72) 45%, rgba(13,11,10,.55) 100%),
    linear-gradient(0deg, rgba(13,11,10,.95) 0%, transparent 45%);
}
.hero .wrap { position: relative; z-index: 2; padding-top: 76px; padding-bottom: 76px; }
.hero .eyebrow {
  font-family: var(--display); font-weight: 600; font-size: .78rem;
  letter-spacing: .28em; text-transform: uppercase; color: var(--amber);
  margin: 0 0 18px;
}
.hero h1 {
  font-family: var(--display); font-weight: 800;
  font-size: clamp(2.5rem, 6.5vw, 4.6rem); line-height: 1.02;
  letter-spacing: -.01em; margin: 0 0 20px; max-width: 16ch;
  text-wrap: balance;
}
.hero h1 .glow { color: var(--amber); text-shadow: 0 0 46px var(--amber-glow); }
.hero p.lede { font-size: 1.14rem; color: var(--text); max-width: 48ch; margin: 0 0 34px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- sections ---------- */

.section { padding: 84px 0; }
.section + .section { border-top: 1px solid var(--line); }
.section-alt { background: var(--surface); }

.eyebrow {
  font-family: var(--display); font-weight: 600; font-size: .74rem;
  letter-spacing: .26em; text-transform: uppercase; color: var(--amber);
  margin: 0 0 12px;
}
.section h2 {
  font-family: var(--display); font-weight: 800;
  font-size: clamp(1.7rem, 4vw, 2.5rem); line-height: 1.1;
  margin: 0 0 14px; text-wrap: balance;
}
.section .sub { color: var(--text-muted); margin: 0 0 44px; max-width: 62ch; font-size: 1.05rem; }

.page-head { padding: 74px 0 10px; }
.page-head h1 {
  font-family: var(--display); font-weight: 800;
  font-size: clamp(2.1rem, 5.5vw, 3.4rem); line-height: 1.05; margin: 0 0 14px;
}
.page-head p { color: var(--text-muted); margin: 0; max-width: 62ch; font-size: 1.06rem; }

.prose p { max-width: 68ch; margin: 0 0 20px; }
.prose p:last-child { margin-bottom: 0; }

/* ---------- service cards ---------- */

.grid { display: grid; gap: 22px; }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(330px, 1fr)); }

.card {
  background: var(--surface-2); border: 1px solid var(--line);
  border-radius: var(--radius-lg); overflow: hidden;
  display: flex; flex-direction: column;
  transition: border-color .2s, transform .2s;
}
.card:hover { border-color: var(--line-bright); transform: translateY(-3px); }
.card > img { width: 100%; height: 210px; object-fit: cover; }
.card-body { padding: 26px 28px 30px; }
.card h3 {
  font-family: var(--display); font-weight: 700; font-size: 1.22rem;
  letter-spacing: .01em; margin: 0 0 6px;
}
.card .summary { color: var(--amber-bright); font-size: .95rem; margin: 0 0 12px; }
.card p { color: var(--text-muted); margin: 0; }

/* ---------- why-us list ---------- */

.reasons { list-style: none; margin: 0; padding: 0; display: grid; gap: 2px; }
.reasons li {
  display: grid; grid-template-columns: auto 1fr; gap: 20px; align-items: baseline;
  padding: 20px 4px; border-bottom: 1px solid var(--line);
}
.reasons li:first-child { border-top: 1px solid var(--line); }
.reasons .n {
  font-family: var(--display); font-weight: 700; font-size: .8rem;
  color: var(--violet); letter-spacing: .1em; font-variant-numeric: tabular-nums;
}
.reasons strong {
  font-family: var(--display); font-weight: 700; font-size: 1.04rem;
  display: block; margin-bottom: 3px;
}
.reasons span.text { color: var(--text-muted); }

@media (max-width: 620px) {
  .reasons li { grid-template-columns: 1fr; gap: 4px; }
}

/* ---------- split ---------- */

.split { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 44px; align-items: center; }
.split img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
}

/* ---------- contact ---------- */

.contact-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 20px; }
.contact-list li { display: grid; grid-template-columns: 110px 1fr; gap: 16px; align-items: baseline; }
.contact-list .label {
  font-family: var(--display); font-weight: 600; font-size: .72rem;
  letter-spacing: .18em; text-transform: uppercase; color: var(--text-faint);
}
.contact-list .value { font-size: 1.1rem; }
@media (max-width: 560px) { .contact-list li { grid-template-columns: 1fr; gap: 2px; } }

.notice {
  border: 1px dashed var(--line-bright); border-radius: var(--radius-lg);
  padding: 18px 22px; color: var(--text-muted); font-size: .95rem;
  background: rgba(123, 142, 222, .06);
}

/* ---------- cta band ---------- */

.cta {
  border-top: 1px solid var(--line);
  background:
    radial-gradient(ellipse 60% 140% at 50% 120%, rgba(255,154,60,.14), transparent 70%),
    var(--surface);
  padding: 76px 0; text-align: center;
}
.cta h2 { font-family: var(--display); font-weight: 800; font-size: clamp(1.7rem,4vw,2.4rem); margin: 0 0 12px; }
.cta p { color: var(--text-muted); max-width: 52ch; margin: 0 auto 28px; }

/* ---------- footer ---------- */

.site-footer {
  border-top: 1px solid var(--line); background: var(--ground);
  padding: 46px 0 36px; color: var(--text-muted); font-size: .93rem;
}
.footer-grid { display: flex; flex-wrap: wrap; gap: 30px; justify-content: space-between; align-items: flex-start; }
.footer-legal { margin: 30px 0 0; color: var(--text-faint); font-size: .84rem; }
