:root {
  --bg: #101114;
  --surface: #1a1d22;
  --surface-2: #24282e;
  --line: #343942;
  --yellow: #ffc20e;
  --yellow-deep: #e5a800;
  --text: #f4f5f6;
  --text-muted: #a9aeb6;
  --radius: 2px;
  --container-max: 1120px;
  --gutter: clamp(1rem, 5vw, 2rem);
  --callbar-h: calc(64px + env(safe-area-inset-bottom));
}

* { margin: 0; padding: 0; box-sizing: border-box; }

@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  font-size: 1.0625rem;
  line-height: 1.6;
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

a:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 2px;
}

/* shared caps-label style: section eyebrows, provenance bar, card headings */
.eyebrow, .provenance, .contact-card h3 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
}

.eyebrow { color: var(--yellow); margin-bottom: 0.75rem; }

/* ---------- header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  min-height: 56px;
  padding: 0.5rem clamp(1rem, 4vw, 2rem);
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--text);
  font-weight: 800;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 2.1rem;
  height: 2.1rem;
  background: var(--yellow);
  color: var(--bg);
  font-size: 1.3rem;
  font-weight: 800;
  clip-path: polygon(8% 0, 100% 0, 92% 100%, 0 100%);
}

.brand-name em { font-style: normal; color: var(--yellow); }

.site-nav { display: none; gap: 1.1rem; margin-left: auto; }

.site-nav a {
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.25rem 0;
  border-bottom: 2px solid transparent;
}

.site-nav a:hover { border-bottom-color: var(--yellow); }

.call-btn {
  margin-left: auto;
  border-radius: 999px;
  font-size: 0.95rem;
  padding: 0.6rem 1rem;
  white-space: nowrap;
}

/* ---------- hero ---------- */
.hero {
  background:
    repeating-linear-gradient(135deg, color-mix(in srgb, var(--yellow) 7%, transparent) 0 2px, transparent 2px 14px),
    radial-gradient(ellipse at 20% 0%, var(--surface-2), transparent 70%),
    var(--bg);
  padding: clamp(4rem, 10vw, 6.5rem) 0;
  border-bottom: 6px solid var(--yellow);
}

.hero h1 {
  font-size: clamp(2.25rem, 7vw, 4rem);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  border-left: 4px solid var(--yellow);
  padding-left: 1rem;
}

.hero-sub { margin-top: 1.5rem; max-width: 55ch; }

.hero-actions { margin-top: 2rem; display: flex; flex-wrap: wrap; gap: 0.8rem; }

.provenance {
  text-align: center;
  color: var(--text-muted);
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  padding: 0.75rem 1rem;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  text-decoration: none;
  font-weight: 700;
  padding: 0.7rem 1.4rem;
  border: 2px solid transparent;
  border-radius: var(--radius);
}

.btn-primary { background: var(--yellow); color: var(--bg); }
.btn-primary:hover { background: var(--yellow-deep); }

.btn-ghost { border-color: var(--yellow); color: var(--yellow); }
.btn-ghost:hover { background: color-mix(in srgb, var(--yellow) 10%, transparent); }

/* ---------- sections ---------- */
.section {
  padding: clamp(3rem, 8vw, 5rem) 0;
  position: relative;
  scroll-margin-top: 72px;
}

.section + .section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(var(--container-max), calc(100% - 2 * var(--gutter)));
  border-top: 2px dashed color-mix(in srgb, var(--yellow) 35%, transparent);
}

.section h2 {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

/* muted supporting copy */
.hero-sub, .section-lead, .split p:not(.eyebrow), .card-note { color: var(--text-muted); }

.section-lead { max-width: 60ch; margin-bottom: 2rem; }

.section-band { background: var(--surface); }

/* ---------- services ---------- */
.service-grid {
  list-style: none;
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.service-grid li {
  background: var(--surface);
  padding: 1.5rem;
  font-weight: 700;
  border-top: 2px solid transparent;
}

.service-grid li:hover { border-top-color: var(--yellow); background: var(--surface-2); }

/* ---------- brands ---------- */
.brand-grid {
  list-style: none;
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}

.brand-grid li {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.45);
  padding: 1.1rem 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--yellow);
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.brand-grid small {
  color: var(--text-muted);
  font-weight: 400;
  text-transform: none;
  letter-spacing: normal;
  font-size: 0.8rem;
}

/* ---------- about / split ---------- */
.about-cols {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 20rem), 1fr));
  margin-top: 1rem;
}

.about-cols p { max-width: 68ch; }

.split {
  display: grid;
  gap: 3rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 20rem), 1fr));
}

.split p:not(.eyebrow) { margin: 0.5rem 0 1.5rem; max-width: 55ch; }

/* ---------- contact ---------- */
.contact-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 16rem), 1fr));
  margin-top: 1.5rem;
}

.contact-card {
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-top: 3px solid var(--yellow);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.contact-card h3 { color: var(--yellow); margin-bottom: 0.75rem; }

.contact-card .address { font-weight: 700; margin-bottom: 1.25rem; }

.hours { border-collapse: collapse; width: 100%; }
.hours td { padding: 0.45rem 0; border-bottom: 1px solid var(--line); }
.hours tr:last-child td { border-bottom: none; }
.hours td:last-child { text-align: right; font-weight: 700; white-space: nowrap; }

.phone-big { margin-bottom: 0.5rem; }

.phone-big a {
  color: var(--yellow);
  font-size: 1.7rem;
  font-weight: 800;
  text-decoration: none;
}

.card-note { font-size: 0.95rem; }

/* ---------- mobile call bar ---------- */
.mobile-call {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0.5rem 1rem calc(0.5rem + env(safe-area-inset-bottom));
  background: var(--yellow);
  color: var(--bg);
  font-weight: 700;
  font-size: 1.05rem;
  text-decoration: none;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.35);
}

/* ---------- footer ---------- */
.site-footer {
  background: var(--surface);
  border-top: 1px solid var(--line);
  color: var(--text-muted);
  font-size: 0.9rem;
  padding: 1.5rem 0 2rem;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
}

.site-footer a { color: var(--yellow); font-weight: 700; }

/* ---------- breakpoints (single desktop switch: nav vs. call bar) ---------- */
@media (max-width: 559px) {
  .call-num { display: none; }
  .brand-name { font-size: 0.95rem; }
}

@media (max-width: 799px) {
  body { padding-bottom: var(--callbar-h); }
}

@media (min-width: 800px) {
  .site-nav { display: flex; }
  .call-btn { margin-left: 0; }
  .mobile-call { display: none; }
  .brand-grid { grid-template-columns: repeat(4, 1fr); }
}
