/* The Sign Shop — shop-floor preview. Black, cyan, royal, silver. */
:root {
  --black: #050505;
  --black-2: #0b0c10;
  --panel: #101218;
  --cyan: #00c6ff;
  --cyan-dim: #009ad1;
  --royal: #1a4fd8;
  --silver: #c5cdd8;
  --silver-dim: #8b95a3;
  --chrome: #eef2f7;
  --line: rgba(197, 205, 216, 0.18);
  --font-display: "Barlow Condensed", "Arial Narrow", Impact, sans-serif;
  --font-body: "Barlow", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--black);
  color: var(--silver);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--cyan); text-decoration-thickness: 1px; text-underline-offset: 0.18em; }
a:hover { color: var(--chrome); }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--chrome);
  letter-spacing: 0.02em;
  line-height: 1.05;
  margin: 0 0 0.45em;
  font-weight: 700;
}
p { margin: 0 0 1rem; }
address { font-style: normal; }

.skip {
  position: absolute;
  left: 0.75rem;
  top: -3rem;
  background: var(--cyan);
  color: #000;
  padding: 0.4rem 0.7rem;
  z-index: 20;
}
.skip:focus { top: 0.75rem; }

.wrap {
  width: min(1080px, calc(100% - 2rem));
  margin-inline: auto;
}
.wrap-wide { width: min(1120px, calc(100% - 2rem)); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(5, 5, 5, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 rgba(0, 198, 255, 0.35);
}
.header-inner {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.65rem 1rem;
  min-height: 3.4rem;
  padding: 0.35rem 0;
}
.brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--chrome);
  text-decoration: none;
  margin-right: auto;
}
.brand:hover { color: var(--cyan); }
.nav {
  display: flex;
  gap: 0.85rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.nav a {
  color: var(--silver-dim);
  text-decoration: none;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  white-space: nowrap;
}
.nav a:hover { color: var(--cyan); }
.header-phone {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  color: var(--cyan);
  text-decoration: none;
  white-space: nowrap;
}
.header-phone:hover { color: var(--chrome); }

.hero {
  padding: 2.2rem 0 2.6rem;
  background:
    radial-gradient(ellipse 80% 55% at 50% 18%, rgba(26, 79, 216, 0.28), transparent 70%),
    radial-gradient(ellipse 50% 40% at 50% 22%, rgba(0, 198, 255, 0.16), transparent 65%),
    var(--black);
  text-align: center;
  border-bottom: 1px solid var(--line);
}
.hero-inner { max-width: 740px; }
.eyebrow {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.8rem;
  color: var(--cyan);
  margin-bottom: 1.1rem;
}
.logo-glow {
  display: flex;
  justify-content: center;
  margin: 0 auto 1.25rem;
  filter: drop-shadow(0 0 28px rgba(0, 198, 255, 0.28));
}
.hero-logo {
  width: min(78vw, 400px);
  height: auto;
}
.hero h1 {
  font-size: clamp(1.7rem, 5.6vw, 2.85rem);
  font-weight: 800;
  text-wrap: balance;
  margin-bottom: 0.55rem;
}
.lede {
  font-size: clamp(1.05rem, 2.6vw, 1.28rem);
  color: var(--chrome);
  margin-bottom: 0.7rem;
}
.hero-specialties {
  color: var(--silver);
  font-size: 1rem;
  max-width: 38rem;
  margin: 0 auto 1.35rem;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.7rem;
  margin-bottom: 1.1rem;
}
.hero-meta {
  color: var(--silver-dim);
  font-size: 0.92rem;
  margin: 0 0 2rem;
}

.hero-special {
  display: grid;
  gap: 1.1rem;
  text-align: left;
  background:
    linear-gradient(180deg, rgba(197, 205, 216, 0.07), transparent 32%),
    var(--panel);
  border: 1px solid rgba(197, 205, 216, 0.28);
  box-shadow:
    inset 0 1px 0 rgba(238, 242, 247, 0.1),
    0 0 0 1px rgba(0, 198, 255, 0.12),
    0 18px 40px rgba(0, 0, 0, 0.35);
  overflow: hidden;
}
.special-art {
  margin: 0;
  background: #07080c;
}
.special-art img {
  width: 100%;
  height: 100%;
  max-height: 280px;
  object-fit: cover;
  object-position: center 40%;
}
.special-copy {
  padding: 0.35rem 1.15rem 1.3rem;
}
.special-kicker {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--cyan);
  margin-bottom: 0.2rem;
}
.special-price {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(3.2rem, 10vw, 4.6rem);
  line-height: 0.9;
  color: var(--cyan);
  margin: 0 0 0.25rem;
  text-shadow: 0 0 24px rgba(0, 198, 255, 0.35);
}
.hero-special h2 {
  font-size: clamp(1.45rem, 3.8vw, 2rem);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  max-width: none;
  margin-bottom: 0.4rem;
}
.special-line {
  color: var(--chrome);
  margin-bottom: 1rem;
  max-width: 34rem;
}
.hero-special .btn { margin-bottom: 0.75rem; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.85rem;
  padding: 0.55rem 1.15rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  border-radius: 0;
}
.btn-call {
  background: var(--cyan);
  color: #041018;
  box-shadow: 0 0 24px rgba(0, 198, 255, 0.25);
}
.btn-call:hover { background: var(--chrome); color: #041018; }
.btn-ghost {
  background: transparent;
  color: var(--cyan);
  border-color: rgba(0, 198, 255, 0.55);
}
.btn-ghost:hover { border-color: var(--chrome); color: var(--chrome); }

.section { padding: 3.2rem 0 3.4rem; }
.section-alt {
  background: var(--black-2);
  border-block: 1px solid var(--line);
}
.section-kicker {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cyan);
  font-size: 0.78rem;
  margin-bottom: 0.45rem;
}
.section h2 {
  font-size: clamp(1.7rem, 4.5vw, 2.45rem);
  font-weight: 800;
  max-width: 18ch;
}
.section-lead {
  max-width: 42rem;
  color: var(--silver);
  margin-bottom: 1.8rem;
}

.spec-grid {
  display: grid;
  gap: 0.95rem;
  margin-bottom: 1.25rem;
}
.spec-card {
  background:
    linear-gradient(180deg, rgba(197, 205, 216, 0.07), transparent 28%),
    var(--panel);
  border: 1px solid rgba(197, 205, 216, 0.24);
  box-shadow: inset 0 1px 0 rgba(238, 242, 247, 0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 0 0 1.15rem;
}
.spec-card .card-art { margin: 0 0 0.9rem; height: 10.5rem; }
.spec-card h3 {
  font-size: clamp(1.35rem, 3vw, 1.7rem);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0 1.1rem;
  margin-bottom: 0.35rem;
}
.spec-card p,
.spec-card .btn { margin-left: 1.1rem; margin-right: 1.1rem; }
.spec-card .price { margin-bottom: 0.25rem; }
.spec-card .fine { margin-bottom: 0.7rem; }
.spec-card .btn { align-self: start; }
.spec-tag {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.72rem;
  color: var(--cyan);
  padding: 0 1.1rem;
  margin: 0 0 0.25rem;
}
.also {
  color: var(--silver-dim);
  margin: 0;
  max-width: 42rem;
}

.catalog-jump {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0 0 2rem;
}
.catalog-jump a {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.85rem;
  color: var(--chrome);
  text-decoration: none;
  border: 1px solid rgba(0, 198, 255, 0.4);
  padding: 0.35rem 0.65rem;
  background: rgba(0, 198, 255, 0.06);
}
.catalog-jump a:hover { background: rgba(0, 198, 255, 0.16); color: var(--cyan); }

.cat { margin-bottom: 2.4rem; scroll-margin-top: 4.2rem; }
.cat h3 {
  font-size: 1.45rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-bottom: 1px solid var(--line);
  padding-bottom: 0.45rem;
  margin-bottom: 1rem;
}
.cat-note {
  color: var(--silver-dim);
  max-width: 42rem;
  margin-top: -0.35rem;
  margin-bottom: 1.1rem;
}
.catalog-fine { margin-top: -1.1rem; margin-bottom: 1.4rem; }

.grid {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: 1fr;
}
.product {
  background:
    linear-gradient(180deg, rgba(197, 205, 216, 0.06), transparent 22%),
    var(--panel);
  border: 1px solid rgba(197, 205, 216, 0.22);
  border-left: 3px solid var(--cyan);
  box-shadow: inset 0 1px 0 rgba(238, 242, 247, 0.08);
  padding: 0 0 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  overflow: hidden;
}
.product h4,
.product p,
.product .btn,
.product .rate-list,
.product .badge {
  margin-left: 1.05rem;
  margin-right: 1.05rem;
}
.product h4 {
  font-size: 1.28rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0.15rem;
  margin-bottom: 0;
}
.product p { margin-bottom: 0; }
.product .sizes {
  color: var(--silver-dim);
  font-size: 0.92rem;
}
.product .price,
.spec-card .price {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cyan);
  font-size: 0.92rem;
}
.product .btn { margin-top: 0.45rem; align-self: start; min-height: 2.4rem; font-size: 0.95rem; }
.product-quote { border-left-color: var(--silver-dim); }
.product-special { border-left-color: var(--cyan); box-shadow: inset 0 1px 0 rgba(238, 242, 247, 0.08), 0 0 0 1px rgba(0, 198, 255, 0.16); }

.card-art {
  position: relative;
  height: 9.25rem;
  margin: 0 0 0.55rem;
  overflow: hidden;
  display: grid;
  place-items: center;
  background-color: #07080c;
  background-image:
    url("logo.png"),
    radial-gradient(circle at 50% 46%, rgba(0, 198, 255, 0.2), transparent 58%),
    radial-gradient(circle at 50% 50%, #12224a 0%, #07080c 62%, #050505 100%);
  background-repeat: no-repeat, no-repeat, no-repeat;
  background-position: center, center, center;
  background-size: 58% auto, 100% 100%, 100% 100%;
  border-bottom: 1px solid rgba(197, 205, 216, 0.22);
}
.card-art::before {
  content: "";
  position: absolute;
  width: 6.8rem;
  height: 6.8rem;
  border-radius: 50%;
  border: 2px solid rgba(197, 205, 216, 0.45);
  box-shadow:
    0 0 0 4px rgba(26, 79, 216, 0.45),
    0 0 20px rgba(0, 198, 255, 0.35);
  opacity: 0.55;
  pointer-events: none;
}
.card-art::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 42%, rgba(238, 242, 247, 0.08) 50%, transparent 58%);
  pointer-events: none;
}
.card-art--photo {
  background-image: none;
  background-color: #07080c;
  padding: 0;
  height: auto;
  aspect-ratio: 3 / 2;
}
.card-art--photo::before,
.card-art--photo::after { display: none; }
.card-art--photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
}
.spec-card .card-art--photo {
  height: auto;
  aspect-ratio: 3 / 2;
}
.spec-card .card-art--photo img {
  height: 100%;
  object-fit: contain;
  object-position: center center;
}

.rate-list {
  list-style: none;
  margin: 0.15rem 1.05rem 0.1rem;
  padding: 0;
  display: grid;
  gap: 0.28rem;
}
.rate-list li {
  display: flex;
  justify-content: space-between;
  gap: 0.7rem;
  font-size: 0.88rem;
  border-bottom: 1px solid rgba(197, 205, 216, 0.1);
  padding-bottom: 0.22rem;
  color: var(--silver-dim);
}
.rate-list b {
  color: var(--chrome);
  font-weight: 600;
  text-align: right;
  font-family: var(--font-display);
  letter-spacing: 0.03em;
}

.fine {
  font-size: 0.78rem;
  color: var(--silver-dim);
  margin: 0;
}

.badge {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.68rem;
  color: #041018;
  background: var(--silver);
  padding: 0.15rem 0.4rem;
  width: max-content;
  margin-bottom: 0.05rem;
  margin-top: 0.15rem;
}
.badge-special {
  background: var(--cyan);
  color: #041018;
}

.order-points {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--silver-dim);
}
.order-points li { margin-bottom: 0.45rem; }
#order, #contact, #area, #work, #products, #special { scroll-margin-top: 4rem; }

.towns {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0 0 1.8rem;
  padding: 0;
}
.towns li {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.95rem;
  color: var(--chrome);
  border: 1px solid rgba(0, 198, 255, 0.35);
  padding: 0.4rem 0.7rem;
  background: rgba(0, 198, 255, 0.05);
}

.routes { display: grid; gap: 0.85rem; }
.route {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
  align-items: center;
  background: var(--panel);
  border: 1px solid var(--line);
  padding: 0.85rem 1rem;
}
.route p { margin: 0; color: var(--silver); }
.route strong { color: var(--cyan); font-weight: 600; }

.shield {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 2.7rem;
  padding: 0.28rem 0.4rem 0.42rem;
  background: #f4f6f8;
  color: #111;
  clip-path: polygon(12% 0, 88% 0, 100% 16%, 100% 70%, 50% 100%, 0 70%, 0 16%);
  line-height: 1;
}
.shield small {
  font-family: var(--font-display);
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}
.shield b {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
}

.contact-grid {
  display: grid;
  gap: 2rem;
}
.shop-card {
  background:
    linear-gradient(180deg, rgba(197, 205, 216, 0.06), transparent 28%),
    var(--panel);
  border: 1px solid var(--line);
  border-left: 3px solid var(--cyan);
  padding: 1.15rem 1.2rem;
  max-width: 28rem;
}
.shop-name {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--chrome);
  font-size: 1.15rem;
  margin-bottom: 0.55rem;
}
.shop-card p { margin: 0 0 0.45rem; }
.shop-card a { color: var(--chrome); text-decoration: none; }
.shop-card a:hover { color: var(--cyan); }

.job-form {
  display: grid;
  gap: 0.75rem;
  background: var(--black-2);
  border: 1px solid var(--line);
  padding: 1.15rem 1.15rem 1.25rem;
}
.form-label {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cyan);
  font-size: 0.8rem;
  margin: 0;
}
.job-form label {
  display: grid;
  gap: 0.28rem;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--silver-dim);
  font-weight: 600;
}
.job-form input,
.job-form textarea,
.job-form select {
  font: 500 1rem/1.4 var(--font-body);
  text-transform: none;
  letter-spacing: 0;
  color: var(--chrome);
  background: var(--black);
  border: 1px solid rgba(197, 205, 216, 0.28);
  padding: 0.65rem 0.7rem;
  border-radius: 0;
  width: 100%;
}
.job-form select { min-height: 2.7rem; }
.job-form input:focus,
.job-form textarea:focus,
.job-form select:focus {
  outline: 2px solid var(--cyan);
  outline-offset: 1px;
  border-color: var(--cyan);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 5.5rem;
  gap: 0.65rem;
}
.job-form .btn { width: 100%; margin-top: 0.15rem; }
.art-line {
  margin: 0.15rem 0 0;
  font-size: 0.95rem;
  color: var(--chrome);
}
.form-note {
  margin: 0;
  font-size: 0.82rem;
  color: var(--silver-dim);
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 1.15rem 0 1.4rem;
  color: var(--silver-dim);
  font-size: 0.88rem;
}
.site-footer p { margin: 0; letter-spacing: 0.02em; }

@media (min-width: 640px) {
  .grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 720px) {
  .nav { overflow: visible; gap: 1.1rem; }
  .contact-grid { grid-template-columns: 1fr 1fr; align-items: start; gap: 2.5rem; }
  .section { padding: 3.8rem 0 4rem; }
  .hero { padding: 2.6rem 0 3.2rem; }
  .hero-special {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: stretch;
  }
  .special-art img { max-height: none; }
  .special-copy {
    padding: 1.35rem 1.4rem 1.4rem 0.4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .spec-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 980px) {
  .grid { grid-template-columns: 1fr 1fr 1fr; }
}

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