/* ============================================================
   Schafer Services — shared styles
   Brand: neon rainbow graffiti on black, paint-drip energy
   ============================================================ */

:root {
  --bg: #0a0a0f;
  --bg-raised: #14141d;
  --bg-card: #191924;
  --ink: #f4f4f8;
  --ink-dim: #b8b8c8;
  --magenta: #ff2bd6;
  --cyan: #19d3ff;
  --lime: #8aff2b;
  --yellow: #ffd21f;
  --orange: #ff7a1a;
  --purple: #a44dff;
  --red: #ff3b3b;
  --rainbow: linear-gradient(100deg, var(--red), var(--orange), var(--yellow), var(--lime), var(--cyan), var(--purple), var(--magenta));
  --font-display: "Bungee", sans-serif;
  --font-accent: "Permanent Marker", cursive;
  --font-body: "Rubik", system-ui, sans-serif;
  --radius: 14px;
  --maxw: 1100px;

  /* ==========================================================
     ROLE TOKENS — components reference ONLY these, never the
     palette above. To re-skin for another client, override this
     block and nothing else. Component rules stay untouched.
     ========================================================== */

  /* Rotating accent palette. Seven slots because this brand is a
     rainbow; a two-colour brand simply repeats values. */
  --accent-1: var(--red);
  --accent-2: var(--orange);
  --accent-3: var(--yellow);
  --accent-4: var(--lime);
  --accent-5: var(--cyan);
  --accent-6: var(--purple);
  --accent-7: var(--magenta);

  /* Semantic roles */
  --accent-primary: var(--accent-7);   /* focus rings, active nav, emphasis */
  --accent-link:    var(--accent-5);   /* links, ghost buttons, hover borders */
  --accent-check:   var(--accent-4);   /* spec-list checkmarks */
  --accent-notice:  var(--accent-3);   /* policy strips, prices, warnings */

  /* Brand gradient + its animated variant */
  --brand-gradient: var(--rainbow);
  --brand-gradient-flow: linear-gradient(100deg,
    var(--accent-1), var(--accent-2), var(--accent-3), var(--accent-4),
    var(--accent-5), var(--accent-6), var(--accent-7), var(--accent-1));

  /* Glow colours as raw RGB triplets so alpha can vary at each use */
  --glow-primary-rgb: 255, 43, 214;
  --glow-secondary-rgb: 25, 211, 255;

  /* Surfaces + borders (previously hardcoded hex) */
  --border: #262633;
  --border-soft: #23232f;
  --border-strong: #33333f;
  --border-chip: #2b2b3a;
  --surface-deep: #101018;
  --on-brand: #0a0a0f;                 /* text on top of the brand gradient */
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.6;
  min-height: 100vh;
}

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

a { color: var(--accent-link); }

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

/* ---------- Rainbow text + headings ---------- */

.brand-text {
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

h1, h2, h3 { line-height: 1.15; }

.display {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.accent { font-family: var(--font-accent); }

/* ---------- Header / nav ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 10, 15, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-soft);
}

.site-header::after {
  content: "";
  display: block;
  height: 3px;
  background: var(--brand-gradient);
}

.nav-bar {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0.7rem 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  font-family: var(--font-display);
  font-size: 1.05rem;
  text-decoration: none;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  gap: 0.25rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  display: block;
  padding: 0.45rem 0.85rem;
  color: var(--ink-dim);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 8px;
  transition: color 0.15s, background 0.15s;
}

.nav-links a:hover { color: var(--ink); background: var(--bg-raised); }

.nav-links a.active { color: var(--ink); }
.nav-links a.active { box-shadow: inset 0 -3px 0 var(--accent-primary); border-radius: 8px 8px 0 0; }

.nav-links a.nav-cta {
  color: var(--on-brand);
  background: var(--brand-gradient);
  font-family: var(--font-display);
  font-size: 0.8rem;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  box-shadow: 0 0 18px rgba(var(--glow-primary-rgb), 0.45);
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border-strong);
  color: var(--ink);
  font-size: 1.4rem;
  line-height: 1;
  padding: 0.35rem 0.6rem;
  border-radius: 8px;
  cursor: pointer;
}

@media (max-width: 780px) {
  .nav-toggle { display: block; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    background: var(--surface-deep);
    border-bottom: 1px solid var(--border-soft);
    padding: 0.5rem 1rem 1rem;
  }
  .nav-links.open { display: flex; }
  .nav-links a.active { box-shadow: inset 3px 0 0 var(--accent-primary); border-radius: 8px; }
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 3.5rem 20px 4rem;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(10, 10, 15, 0.55) 30%, rgba(10, 10, 15, 0) 75%),
    var(--hero-image, none) center / cover no-repeat;
  pointer-events: none;
}

.hero > * { position: relative; }

.hero-logo {
  width: min(420px, 80vw);
  margin: 0 auto 1.5rem;
  filter: drop-shadow(0 0 35px rgba(var(--glow-primary-rgb), 0.35));
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 5vw, 3rem);
  text-transform: uppercase;
}

.hero .tagline {
  font-family: var(--font-accent);
  font-size: clamp(1.1rem, 2.6vw, 1.5rem);
  color: var(--ink-dim);
  margin: 0.75rem 0 1.75rem;
}

/* ---------- Buttons ---------- */

.btn-row { display: flex; gap: 0.9rem; justify-content: center; flex-wrap: wrap; }

.btn {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.9rem;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.8rem 1.6rem;
  border-radius: 999px;
  transition: transform 0.15s, box-shadow 0.15s;
}

.btn:hover { transform: translateY(-2px); }

.btn-primary {
  color: var(--on-brand);
  background: var(--brand-gradient);
  box-shadow: 0 0 24px rgba(var(--glow-primary-rgb), 0.5);
}

.btn-primary:hover { box-shadow: 0 0 34px rgba(var(--glow-primary-rgb), 0.7); }

.btn-ghost {
  color: var(--ink);
  border: 2px solid var(--accent-link);
  box-shadow: 0 0 14px rgba(var(--glow-secondary-rgb), 0.25) inset, 0 0 14px rgba(var(--glow-secondary-rgb), 0.2);
}

/* ---------- Sections & cards ---------- */

.section { padding: 3.5rem 0; }
.section-alt { background: var(--bg-raised); }

.section-lede {
  color: var(--ink-dim);
  max-width: 640px;
  margin-bottom: 2rem;
}

.center { text-align: center; }
.center .section-lede { margin-left: auto; margin-right: auto; }

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.2rem;
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: transform 0.15s, border-color 0.15s;
}

.card:hover { transform: translateY(-3px); }

.card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.card p { color: var(--ink-dim); font-size: 0.95rem; }

.card .card-icon { font-size: 1.8rem; margin-bottom: 0.6rem; }

.card-a7:hover { border-color: var(--accent-7); }
.card-a5:hover { border-color: var(--accent-5); }
.card-a4:hover { border-color: var(--accent-4); }
.card-a3:hover { border-color: var(--accent-3); }
.card-a2:hover { border-color: var(--accent-2); }
.card-a6:hover { border-color: var(--accent-6); }

/* ---------- Pricing tables ---------- */

.price-table-wrap { overflow-x: auto; }

.price-table {
  width: 100%;
  /* Floor the width so the table scrolls inside .price-table-wrap on a phone
     rather than compressing to one word per line. Pairs with the min-width:0
     on grid children — without that floor, the column just squeezes. */
  min-width: 30rem;
  border-collapse: collapse;
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
}

.price-table th, .price-table td {
  padding: 0.9rem 1.1rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.price-table th {
  font-family: var(--font-display);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: var(--surface-deep);
}

.price-table tr:last-child td { border-bottom: none; }

.price-table .price {
  font-family: var(--font-display);
  font-size: 1.05rem;
  white-space: nowrap;
}

.price-table .desc { color: var(--ink-dim); font-size: 0.88rem; }

tr.row-a1 .tier { color: var(--accent-1); }
tr.row-a7 .tier { color: var(--accent-7); }
tr.row-a4 .tier { color: var(--accent-4); }
tr.row-a5 .tier { color: var(--accent-5); }
tr.row-a3 .tier { color: var(--accent-3); }

.price-table .tier { font-family: var(--font-display); font-size: 0.95rem; }

/* ---------- Feature band (Dot Tees) ---------- */

.feature-band {
  position: relative;
  border: 2px solid transparent;
  border-radius: var(--radius);
  background:
    linear-gradient(var(--bg-card), var(--bg-card)) padding-box,
    var(--brand-gradient) border-box;
  padding: 2.2rem;
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
}

@media (max-width: 720px) { .feature-band { grid-template-columns: 1fr; } }

.feature-band h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}

.feature-band p { color: var(--ink-dim); }

.feature-band ul { margin: 0.9rem 0 0 1.2rem; color: var(--ink-dim); }
.feature-band li { margin-bottom: 0.35rem; }

.dot-swatch {
  /* Portrait so the full printed graphic reads, not a slice of it. */
  aspect-ratio: 3 / 4;
  border-radius: var(--radius);
  background: var(--swatch-image, var(--bg-card)) center / cover no-repeat;
  box-shadow: 0 0 40px rgba(var(--glow-primary-rgb), 0.3);
}

/* ---------- Callout / policy strip ---------- */

.policy-strip {
  background: var(--bg-card);
  border-left: 5px solid var(--accent-notice);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.2rem 1.5rem;
  margin-top: 2rem;
}

.policy-strip strong { color: var(--accent-notice); }
.policy-strip p { color: var(--ink-dim); font-size: 0.95rem; }

/* ---------- Gallery ---------- */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.2rem;
}

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border);
  /* Do not stretch to the tallest tile in the row. Grid items stretch by
     default, and with height:100% + cover that silently cropped every photo
     whose shape differed from its row — half the gallery is landscape and was
     losing ~45% of the frame, cutting logos and phone numbers off real work. */
  align-self: start;
}

.gallery-item img { width: 100%; height: auto; display: block; }

.gallery-item figcaption {
  padding: 0.7rem 1rem;
  font-size: 0.88rem;
  color: var(--ink-dim);
}

.gallery-placeholder {
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.5rem;
  color: var(--ink-dim);
  font-family: var(--font-accent);
  font-size: 1.1rem;
  background:
    radial-gradient(circle at 20% 30%, rgba(var(--glow-primary-rgb), 0.15), transparent 45%),
    radial-gradient(circle at 80% 70%, rgba(var(--glow-secondary-rgb), 0.15), transparent 45%),
    var(--bg-card);
}

/* ---------- Forms ---------- */

.quote-form {
  display: grid;
  gap: 1.1rem;
  max-width: 640px;
}

.form-row { display: grid; gap: 1.1rem; grid-template-columns: 1fr 1fr; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }

.field label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.35rem;
}

.field input, .field select, .field textarea {
  width: 100%;
  background: var(--bg-card);
  border: 1px solid var(--border-strong);
  border-radius: 10px;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.7rem 0.9rem;
}

.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--accent-primary);
  box-shadow: 0 0 0 3px rgba(var(--glow-primary-rgb), 0.2);
}

.field textarea { resize: vertical; min-height: 130px; }

.form-note { font-size: 0.85rem; color: var(--ink-dim); }

.quote-form .btn { border: none; cursor: pointer; font-size: 0.95rem; }

/* ---------- Contact info panel ---------- */

.contact-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2.5rem;
  align-items: start;
}

@media (max-width: 800px) { .contact-layout { grid-template-columns: 1fr; } }

.info-card { position: sticky; top: 90px; }

.info-card .big-phone {
  font-family: var(--font-display);
  font-size: 1.5rem;
  display: block;
  margin: 0.3rem 0 1rem;
  text-decoration: none;
}

/* ---------- CTA banner ---------- */

.cta-banner {
  text-align: center;
  padding: 3.5rem 20px;
  background:
    radial-gradient(circle at 30% 20%, rgba(var(--glow-primary-rgb), 0.15), transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(var(--glow-secondary-rgb), 0.15), transparent 50%),
    var(--bg-raised);
}

.cta-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2.3rem);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.cta-banner p { color: var(--ink-dim); margin-bottom: 1.5rem; }

/* ---------- Animated rainbow text (shared) ---------- */

.brand-flow {
  background: var(--brand-gradient-flow);
  background-size: 300% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: brand-slide 6s linear infinite;
}

@keyframes brand-slide {
  to { background-position: -300% 0; }
}

/* ---------- Scroll reveals (shared) ---------- */

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.65s ease, transform 0.65s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .brand-flow { animation: none; }
}

/* ---------- Split page hero (photo + copy) ---------- */

.page-hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.5rem;
  align-items: center;
  padding: 3.5rem 0 1rem;
}

@media (max-width: 800px) { .page-hero { grid-template-columns: 1fr; padding-top: 2rem; } }

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 4.5vw, 2.7rem);
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}

.page-hero .lede { color: var(--ink-dim); max-width: 520px; margin-bottom: 1.5rem; }

.hero-photo {
  border-radius: var(--radius);
  overflow: hidden;
  border: 2px solid transparent;
  background:
    linear-gradient(var(--bg-card), var(--bg-card)) padding-box,
    var(--brand-gradient) border-box;
  box-shadow: 0 0 40px rgba(var(--glow-primary-rgb), 0.22);
}

.hero-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ---------- Photo-backed service cards ---------- */

.photo-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.15s, border-color 0.15s;
}

.photo-card:hover { transform: translateY(-3px); border-color: var(--accent-link); }

.photo-card img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; display: block; }

.photo-card .pc-body { padding: 1.1rem 1.3rem 1.3rem; }

.photo-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}

.photo-card p { color: var(--ink-dim); font-size: 0.93rem; }

/* ---------- Footer ---------- */

.site-footer {
  border-top: 1px solid var(--border-soft);
  padding: 2.5rem 0 2rem;
  margin-top: 0;
}

.site-footer::before {
  content: "";
  display: block;
  height: 3px;
  background: var(--brand-gradient);
  margin-top: -2.5rem;
  margin-bottom: 2.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.site-footer h4 {
  font-family: var(--font-display);
  font-size: 0.85rem;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.site-footer p, .site-footer a { color: var(--ink-dim); font-size: 0.92rem; }
.site-footer ul { list-style: none; }
.site-footer li { margin-bottom: 0.3rem; }

.footer-bottom {
  border-top: 1px solid var(--border-soft);
  padding-top: 1.2rem;
  font-size: 0.85rem;
  color: var(--ink-dim);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* ============================================================
   Services page — sticky sub-nav, section theming, price blocks
   ============================================================ */

:root {
  --header-h: 60px;               /* measured and overwritten by main.js */
  --ss-blue: #1f7bff;
  --ss-blue-light: #5fb0ff;
  --ss-chrome: #dfe6f2;
  --ss-blue-deep: #0d1730;
  --blue-ramp: linear-gradient(100deg, #0a4fd6, #1f7bff, #5fb0ff, #cfe4ff);
}

/* ---------- Sticky service jump bar ---------- */

.svc-nav {
  position: sticky;
  top: var(--header-h);
  z-index: 40;
  background: rgba(16, 16, 24, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-soft);
}

.svc-nav ul {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0.5rem 20px;
  display: flex;
  gap: 0.3rem;
  list-style: none;
  overflow-x: auto;
  scrollbar-width: none;
}

.svc-nav ul::-webkit-scrollbar { display: none; }

.svc-nav a {
  display: block;
  white-space: nowrap;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  color: var(--ink-dim);
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: color 0.15s, background 0.15s;
}

.svc-nav a:hover { color: var(--ink); background: var(--bg-card); }
.svc-nav a.current { color: var(--on-brand); background: var(--brand-gradient); }

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

.svc-section {
  padding: 3.2rem 0;
  scroll-margin-top: calc(var(--header-h) + 52px);
}

.svc-head { margin-bottom: 1.6rem; }

.svc-kicker {
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-dim);
  margin-bottom: 0.4rem;
}

.svc-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2.3rem);
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}

.svc-head p { color: var(--ink-dim); max-width: 660px; }

.svc-split {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2rem;
  align-items: start;
}

@media (max-width: 860px) { .svc-split { grid-template-columns: 1fr; } }

/* ---------- King Ink blue panel (wraps & vinyl) ---------- */

.wrap-panel {
  border: 2px solid transparent;
  border-radius: var(--radius);
  background:
    linear-gradient(var(--bg-card), var(--bg-card)) padding-box,
    var(--blue-ramp) border-box;
  padding: 1.8rem;
  box-shadow: 0 0 40px rgba(31, 123, 255, 0.18);
}

.blue-text {
  background: var(--blue-ramp);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.price-table.table-blue th { background: var(--ss-blue-deep); color: var(--ss-chrome); }
.price-table.table-blue .price-alt {
  font-family: var(--font-display);
  font-size: 1.05rem;
  white-space: nowrap;
  color: var(--ss-blue-light);
}

/* ---------- Spec lists, chips, notes ---------- */

.spec-list { list-style: none; display: grid; gap: 0.4rem; margin-top: 1rem; }

.spec-list li {
  color: var(--ink-dim);
  font-size: 0.95rem;
  padding-left: 1.6rem;
  position: relative;
}

.spec-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--accent-check);
  font-weight: 700;
}

.spec-list.blue li::before { color: var(--ss-blue-light); }

.size-examples { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1.1rem; }

.size-chip {
  background: var(--bg-card);
  border: 1px solid var(--border-chip);
  border-radius: 999px;
  padding: 0.45rem 0.95rem;
  font-size: 0.85rem;
  color: var(--ink-dim);
}

.size-chip strong { color: var(--ink); font-family: var(--font-display); font-size: 0.85rem; }

.price-note { color: var(--ink-dim); font-size: 0.85rem; margin-top: 0.8rem; }

/* ---------- Add-on / upcharge cards ---------- */

.addon-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 0.9rem;
  margin-top: 1.4rem;
}

.addon {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent-primary);
  border-radius: 0 10px 10px 0;
  padding: 0.9rem 1.1rem;
}

.addon h4 {
  font-family: var(--font-display);
  font-size: 0.82rem;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 0.25rem;
}

.addon .addon-price {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--accent-notice);
}

.addon p { color: var(--ink-dim); font-size: 0.88rem; margin-top: 0.15rem; }

.addon-a5 { border-left-color: var(--accent-5); }
.addon-a4 { border-left-color: var(--accent-4); }
.addon-blue { border-left-color: var(--ss-blue); }

/* Section photos: cap portrait shots so the two columns stay balanced */
.svc-split .hero-photo img { aspect-ratio: 4 / 3; }

/* Keep short column headers on one line ("T-Shirts", "Hoodies") */
.price-table th { white-space: nowrap; }

/* ---------- Logo lockup (art + SVG tagline) ----------
   assets/logo-art.png is the original logo with the baked-in tagline cropped
   off and faded to black, so the wording lives in editable SVG text below it.
   Change the tagline by editing the <text> in the markup — not the artwork. */

.logo-lockup {
  display: block;
  height: auto;
  margin: 0 auto 0.8rem;
}

/* Sized to fit naturally at these widths -- do NOT use textLength to force a
   fit. Squeezing glyphs desynced the fill from the gradient in iOS Safari and
   the first and last few letters rendered as bare black stroke. The condensed
   look comes from a plain scale() on the group instead, and the gradient uses
   userSpaceOnUse so it never depends on the text bounding box. */
.logo-lockup .ll-tag { font-family: var(--font-display); font-size: 28px; }

/* Grid and flex children default to min-width:auto, so one wide descendant —
   a nowrap table header, a long unbroken word — grows the whole column past
   the viewport instead of scrolling inside its own overflow container. This
   is what made services.html scroll sideways on a 390px phone. */
.svc-split > *,
.card-grid > *,
.addon-grid > * { min-width: 0; }
