/* =========================================================
   Jimmy Burgoff Moving & Hauling — Design System
   "Working Americana": warm paper, ink navy, brass gold,
   barn red. Slab-serif headlines, sturdy grotesk body.
   ========================================================= */

:root {
  --paper: #f3ecdd;
  --paper-dark: #e7dabf;
  --paper-line: #d9c9a3;
  --ink: #161616;
  --ink-soft: #2c2c2c;
  --ink-70: rgba(22, 22, 22, 0.7);
  --ink-50: rgba(22, 22, 22, 0.5);
  --brass: #a8201a;
  --brass-light: #c53029;
  --barn: #7a1510;
  --barn-light: #9a1e17;
  --cream: #f8f3e8;

  --font-display: "Arvo", Georgia, serif;
  --font-body: "Archivo", -apple-system, BlinkMacSystemFont, sans-serif;

  --wrap: 1180px;
  --radius: 14px;
  --shadow-soft: 0 20px 40px -20px rgba(28, 23, 14, 0.35);
  --header-h: 78px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, p { margin: 0; }
button { font: inherit; background: none; border: none; cursor: pointer; }
input, textarea { font: inherit; }

section[id] { scroll-margin-top: calc(var(--header-h) + 14px); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}

.wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 24px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--ink);
  color: var(--paper);
  padding: 12px 18px;
  z-index: 999;
  border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* subtle paper grain */
.grain-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.045;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='140' height='140'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  background-size: 220px 220px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-ink { background: var(--ink); color: var(--paper); box-shadow: var(--shadow-soft); }
.btn-ink:hover { background: var(--ink-soft); }
.btn-brass { background: var(--brass); color: var(--cream); box-shadow: 0 14px 30px -14px rgba(168, 32, 26, 0.5); }
.btn-brass:hover { background: var(--brass-light); }
.btn-outline { border: 2px solid var(--ink); color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: var(--paper); }
.btn-sm { padding: 10px 18px; font-size: 0.88rem; }
.btn-block { width: 100%; padding: 16px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(243, 236, 221, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--paper-line);
  transition: box-shadow 0.25s ease;
}
.site-header.scrolled { box-shadow: 0 8px 24px -16px rgba(28,23,14,0.3); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 20px;
}
.brand { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.brand-mark { color: var(--ink); flex-shrink: 0; }
.brand-word { display: flex; flex-direction: column; line-height: 1.15; }
.brand-word strong { font-family: var(--font-display); font-weight: 600; font-size: 1.12rem; }
.brand-word em { font-style: normal; font-size: 0.68rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--barn); font-weight: 700; }

.main-nav ul { display: flex; gap: 30px; }
.main-nav a {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--ink-70);
  position: relative;
  padding: 6px 0;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%; bottom: 0;
  height: 2px;
  background: var(--brass);
  transition: right 0.25s ease;
}
.main-nav a:hover { color: var(--ink); }
.main-nav a:hover::after { right: 0; }

.header-cta { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.phone-pill {
  display: flex; align-items: center; gap: 8px;
  font-weight: 700; font-size: 0.92rem;
  padding: 10px 16px;
  border: 1.5px solid var(--ink);
  border-radius: 999px;
}
.phone-pill:hover { background: var(--ink); color: var(--paper); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  flex-shrink: 0;
}
.nav-toggle span { width: 24px; height: 2.5px; background: var(--ink); border-radius: 2px; transition: transform 0.25s ease, opacity 0.25s ease; margin: 0 auto; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { position: relative; padding: 64px 0 0; overflow: hidden; }
.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 40px;
  padding-bottom: 60px;
}
.eyebrow {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--barn);
  margin-bottom: 14px;
  display: block;
}
.eyebrow.center { text-align: center; }
h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.4rem, 5.2vw, 3.7rem);
  line-height: 1.06;
  letter-spacing: -0.01em;
}
.ink-brass { color: var(--brass); font-style: italic; }
.hero-lede {
  margin-top: 22px;
  font-size: 1.13rem;
  color: var(--ink-70);
  max-width: 46ch;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 32px; }
.hero-tagline {
  margin-top: 26px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.98rem;
  color: var(--ink-50);
  max-width: 42ch;
}

.hero-art { position: relative; }
.truck-illustration { width: 100%; height: auto; }
.hero-badge-float { animation: floaty 4.5s ease-in-out infinite; transform-origin: center; }
@keyframes floaty {
  0%, 100% { transform: translateY(0) rotate(-3deg); }
  50% { transform: translateY(-10px) rotate(2deg); }
}

.stripe-divider {
  height: 18px;
  background: repeating-linear-gradient(-45deg, var(--ink) 0 14px, var(--brass) 14px 28px);
}
.stripe-divider.flip { transform: scaleX(-1); }

/* ---------- Stats ---------- */
.stats-strip { background: var(--ink); color: var(--cream); padding: 48px 0; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-num {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--paper);
}
.stat-label {
  display: block;
  margin-top: 6px;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(248, 243, 232, 0.7);
  font-weight: 600;
}

/* ---------- Sections general ---------- */
.section { padding: 100px 0; }
.section-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.9rem, 3.6vw, 2.7rem);
  line-height: 1.15;
  letter-spacing: -0.01em;
}
.section-title.center { text-align: center; max-width: 720px; margin: 0 auto; }
.section-title.center + .area-lede,
p.area-lede {
  text-align: center;
  max-width: 60ch;
  margin: 20px auto 0;
  color: var(--ink-70);
  font-size: 1.06rem;
}

/* ---------- Services ---------- */
.services-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.service-card {
  background: var(--cream);
  border: 1px solid var(--paper-line);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-soft);
  border-color: var(--brass);
}
.service-icon {
  width: 60px; height: 60px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--paper-dark);
  color: var(--barn);
  margin-bottom: 20px;
}
.service-card h3 { font-family: var(--font-display); font-size: 1.24rem; font-weight: 600; margin-bottom: 10px; }
.service-card p { color: var(--ink-70); font-size: 0.96rem; }

/* ---------- Piano spotlight ---------- */
.piano-spotlight { background: var(--paper-dark); padding: 100px 0; }
.piano-inner { display: grid; grid-template-columns: 1fr 0.85fr; gap: 60px; align-items: center; }
.piano-copy p { color: var(--ink-70); margin-top: 18px; max-width: 52ch; }
.piano-copy .section-title { margin-top: 6px; }
.check-list { margin-top: 22px; display: grid; gap: 10px; }
.check-list li {
  position: relative;
  padding-left: 28px;
  font-weight: 600;
  font-size: 0.95rem;
}
.check-list li::before {
  content: "";
  position: absolute; left: 0; top: 3px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--brass);
}
.check-list li::after {
  content: "";
  position: absolute; left: 5px; top: 7px;
  width: 8px; height: 4px;
  border-left: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  transform: rotate(-45deg);
}
.piano-copy .btn { margin-top: 28px; }
.piano-illustration { width: 100%; }

/* ---------- About ---------- */
.about-inner { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 60px; align-items: center; }
.about-frame { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-soft); }
.bass-illustration { width: 100%; }
.about-copy p { color: var(--ink-70); margin-top: 18px; max-width: 58ch; }
.about-copy .section-title { margin-top: 6px; }
.badge-row { display: flex; gap: 18px; margin-top: 34px; flex-wrap: wrap; }
.badge-stamp { width: 80px; color: var(--barn); opacity: 0.85; transition: transform 0.3s ease; }
.badge-stamp:hover { transform: rotate(-6deg) scale(1.05); }

/* ---------- Service area ---------- */
.area { padding-bottom: 0; }
.marquee {
  margin-top: 48px;
  overflow: hidden;
  border-top: 1px solid var(--paper-line);
  border-bottom: 1px solid var(--paper-line);
  padding: 22px 0;
  white-space: nowrap;
}
.marquee-track {
  display: inline-flex;
  gap: 14px;
  animation: scroll-left 32s linear infinite;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.3rem;
}
.marquee-track span:nth-child(odd) { color: var(--barn); }
@keyframes scroll-left {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.radius-wrap {
  display: grid;
  grid-template-columns: 220px 1fr;
  align-items: center;
  gap: 40px;
  padding: 60px 24px;
}
.radius-graphic { width: 200px; }
.radius-note { font-size: 1.05rem; color: var(--ink-70); max-width: 46ch; }

/* ---------- Reviews ---------- */
.reviews-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-ticket {
  margin: 0;
  background: var(--cream);
  border: 1px dashed var(--ink-50);
  border-radius: 10px;
  padding: 28px 26px;
  position: relative;
}
.review-ticket::before {
  content: "\201C";
  font-family: var(--font-display);
  font-size: 3.2rem;
  color: var(--brass);
  position: absolute;
  top: 6px; left: 16px;
  line-height: 1;
  opacity: 0.5;
}
.review-ticket p { font-size: 0.98rem; font-style: italic; color: var(--ink-soft); position: relative; z-index: 1; }
.review-ticket cite {
  display: block;
  margin-top: 16px;
  font-style: normal;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--barn);
}
.review-links { display: flex; gap: 28px; justify-content: center; margin-top: 38px; font-weight: 700; }
.review-links a { border-bottom: 2px solid var(--brass); padding-bottom: 2px; }
.review-links a:hover { color: var(--barn); }

/* ---------- Contact ---------- */
.contact { padding-top: 0; }
.contact-inner {
  padding-top: 80px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
}
.contact-copy p { color: var(--ink-70); margin-top: 16px; max-width: 46ch; }
.contact-details { margin-top: 32px; display: grid; gap: 16px; }
.contact-details li { display: flex; align-items: center; gap: 12px; font-weight: 600; }
.contact-details svg { color: var(--brass); flex-shrink: 0; }
.contact-details a:hover { color: var(--barn); }

.contact-form {
  scroll-margin-top: calc(var(--header-h) + 14px);
  background: var(--cream);
  border: 1px solid var(--paper-line);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow-soft);
}
.form-row { margin-bottom: 18px; }
.form-row.two-up { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 0; }
.form-row.two-up > div { margin-bottom: 18px; }
.contact-form label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--ink-70);
  margin-bottom: 7px;
}
.contact-form input, .contact-form textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1.5px solid var(--paper-line);
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink);
  resize: vertical;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.contact-form input:focus, .contact-form textarea:focus {
  outline: none;
  border-color: var(--brass);
  box-shadow: 0 0 0 3px rgba(193, 146, 47, 0.2);
}
.form-note { margin-top: 14px; font-size: 0.9rem; font-weight: 700; min-height: 1.2em; color: var(--barn); }
.form-note.success { color: #3d6b3d; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: var(--cream); padding: 56px 0 0; }
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 28px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(248, 243, 232, 0.14);
}
.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-brand strong { font-family: var(--font-display); font-size: 1.05rem; }
.footer-brand p { font-size: 0.82rem; color: rgba(248, 243, 232, 0.6); margin-top: 2px; }
.footer-nav { display: flex; gap: 22px; flex-wrap: wrap; }
.footer-nav a { font-size: 0.9rem; font-weight: 600; color: rgba(248, 243, 232, 0.8); }
.footer-nav a:hover { color: var(--brass-light); }
.footer-social { display: flex; gap: 14px; }
.footer-social a {
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(248, 243, 232, 0.08);
  color: var(--cream);
  transition: background 0.2s ease, color 0.2s ease;
}
.footer-social a:hover { background: var(--brass); color: var(--ink); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  padding: 22px 24px 26px;
  font-size: 0.82rem;
  color: rgba(248, 243, 232, 0.55);
}

/* ---------- Sticky mobile CTA ---------- */
.sticky-cta {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 90;
  display: none;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  gap: 10px;
  background: rgba(243, 236, 221, 0.96);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--paper-line);
  box-shadow: 0 -10px 24px -14px rgba(28,23,14,0.3);
}
.sticky-btn {
  flex: 1;
  text-align: center;
  padding: 13px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.92rem;
}
.sticky-call { background: var(--ink); color: var(--paper); }
.sticky-quote { background: var(--brass); color: var(--ink); }

/* ---------- Reveal-on-scroll ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-art { max-width: 420px; margin: 0 auto; }
  .piano-inner, .about-inner, .contact-inner { grid-template-columns: 1fr; }
  .about-art { order: 2; }
  .about-frame { max-width: 360px; margin: 0 auto; }
  .piano-art { order: -1; max-width: 340px; margin: 0 auto; }
  .services-grid, .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .radius-wrap { grid-template-columns: 1fr; text-align: center; justify-items: center; }
}

@media (max-width: 860px) {
  .main-nav, .header-cta { display: none; }
  .nav-toggle { display: flex; }

  .main-nav {
    display: none;
  }
  .main-nav.open {
    display: block;
    position: absolute;
    top: var(--header-h);
    left: 0; right: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--paper-line);
    box-shadow: 0 20px 30px -20px rgba(28,23,14,0.3);
    padding: 8px 24px 24px;
  }
  .main-nav.open ul { flex-direction: column; gap: 4px; }
  .main-nav.open a { display: block; padding: 12px 4px; font-size: 1.02rem; }

  .section { padding: 72px 0; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px 20px; }
  .services-grid, .reviews-grid { grid-template-columns: 1fr; }
  .form-row.two-up { grid-template-columns: 1fr; }
  .sticky-cta { display: flex; }
  body { padding-bottom: 74px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 520px) {
  .wrap { padding: 0 18px; }
  .header-inner { height: 68px; }
  :root { --header-h: 68px; }
  .hero { padding-top: 40px; }
  .hero-actions .btn { width: 100%; }
  .hero-actions { flex-direction: column; }
  .badge-row { justify-content: center; }
  .contact-form { padding: 26px 20px; }
  .marquee-track { font-size: 1.05rem; }
}

/* =========================================================
   Multi-page additions: photo components, page heroes,
   real trust badges, testimonials wall, service nav cards
   ========================================================= */

/* ---------- Active nav state ---------- */
.main-nav a.active { color: var(--barn); }
.main-nav a.active::after { right: 0; background: var(--barn); }

/* ---------- Photo frame ---------- */
.photo-frame {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 6px solid var(--cream);
  outline: 1px solid var(--paper-line);
}
.photo-frame img { width: 100%; height: 100%; object-fit: cover; display: block; }
.photo-frame .frame-tag {
  position: absolute;
  bottom: 14px; left: 14px;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 7px 12px;
  border-radius: 999px;
}

/* ---------- Home hero photo (replaces illustration on index) ---------- */
.hero-photo .photo-frame { transform: rotate(1.2deg); }
.hero-photo .hero-badge-float { position: absolute; top: -18px; right: -18px; z-index: 2; }

/* ---------- Page hero (sub-pages) ---------- */
.page-hero { padding: 56px 0 0; }
.page-hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
  padding-bottom: 56px;
}
.page-hero h1 { font-size: clamp(2.1rem, 4.2vw, 3.1rem); }
.page-hero .hero-lede { margin-top: 18px; }
.page-hero-photo .photo-frame { transform: rotate(-1deg); aspect-ratio: 4 / 3; }
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.82rem; font-weight: 600; color: var(--ink-50);
  margin-bottom: 18px;
}
.breadcrumb a:hover { color: var(--barn); }

/* ---------- Pull quote ---------- */
.pull-quote {
  margin: 40px 0;
  padding: 28px 30px;
  border-left: 4px solid var(--brass);
  background: var(--paper-dark);
  border-radius: 0 10px 10px 0;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--ink-soft);
}
.pull-quote cite {
  display: block;
  margin-top: 10px;
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--barn);
}

/* ---------- Inline photo strip (secondary images within a page) ---------- */
.photo-strip {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.photo-strip .photo-frame { aspect-ratio: 4 / 3; }
.photo-strip figcaption {
  margin-top: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink-70);
  text-align: center;
}

/* ---------- Real trust badges (Yelp / Angie's List / Chamber) ---------- */
.badge-row.real img {
  width: 64px; height: auto;
  filter: grayscale(1) opacity(0.65);
  transition: filter 0.25s ease, transform 0.25s ease;
  border-radius: 10px;
}
.badge-row.real img:hover { filter: grayscale(0) opacity(1); transform: translateY(-3px); }

/* ---------- Service nav cards (home page teaser grid) ---------- */
.service-link-card {
  display: block;
  background: var(--cream);
  border: 1px solid var(--paper-line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.service-link-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); border-color: var(--brass); }
.service-link-card .card-photo { aspect-ratio: 4 / 3; overflow: hidden; }
.service-link-card .card-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.service-link-card:hover .card-photo img { transform: scale(1.06); }
.service-link-card .card-body { padding: 24px 24px 28px; }
.service-link-card h3 { font-family: var(--font-display); font-size: 1.24rem; font-weight: 600; margin-bottom: 8px; }
.service-link-card p { color: var(--ink-70); font-size: 0.94rem; }
.service-link-card .card-arrow {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 14px; font-weight: 700; font-size: 0.88rem; color: var(--barn);
}

/* ---------- Testimonials wall (dedicated page) ---------- */
.testimonial-wall {
  margin-top: 48px;
  columns: 3 260px;
  column-gap: 22px;
}
.testimonial-wall .review-ticket {
  display: inline-block;
  width: 100%;
  margin: 0 0 22px;
  break-inside: avoid;
}
.testimonials-count {
  text-align: center;
  color: var(--ink-50);
  font-weight: 600;
  font-size: 0.9rem;
  margin-top: 14px;
}

/* ---------- Form select ---------- */
.contact-form select {
  width: 100%;
  padding: 13px 14px;
  border: 1.5px solid var(--paper-line);
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink);
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='9'><path d='M1 1l6 6 6-6' stroke='%231c2333' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
}
.contact-form select:focus { outline: none; border-color: var(--brass); box-shadow: 0 0 0 3px rgba(193, 146, 47, 0.2); }

/* ---------- Footer license line ---------- */
.footer-license {
  font-size: 0.76rem;
  color: rgba(248, 243, 232, 0.45);
  letter-spacing: 0.02em;
}

/* ---------- License strip under contact details ---------- */
.license-strip {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px dashed var(--paper-line);
  font-size: 0.8rem;
  color: var(--ink-50);
  font-weight: 600;
}

@media (max-width: 1024px) {
  .page-hero-inner { grid-template-columns: 1fr; }
  .page-hero-photo { max-width: 480px; margin: 0 auto; order: -1; }
  .photo-strip { grid-template-columns: 1fr; }
  .testimonial-wall { columns: 2 220px; }
}

@media (max-width: 640px) {
  .testimonial-wall { columns: 1; }
}

/* ---------- Quick capability tags (home) ---------- */
.quick-caps {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
.quick-caps li {
  padding: 10px 20px;
  border: 1.5px solid var(--paper-line);
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--ink-70);
  background: var(--cream);
}

/* ---------- CTA band ---------- */
.cta-band { background: var(--ink); color: var(--cream); }
.cta-band .eyebrow { color: var(--brass-light); }
.cta-band .section-title { color: var(--paper); }
.cta-band-inner {
  padding: 64px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-band-inner p { color: rgba(248,243,232,0.75); margin-top: 14px; max-width: 44ch; }
.cta-band-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.cta-band .btn-ink { background: var(--paper); color: var(--ink); }
.cta-band .btn-ink:hover { background: var(--cream); }

@media (max-width: 640px) {
  .cta-band-inner { flex-direction: column; align-items: flex-start; text-align: left; }
  .cta-band-actions .btn { width: 100%; justify-content: center; }
  .cta-band-actions { width: 100%; flex-direction: column; }
}

/* ---------- Tagline Prominent ---------- */
.tagline-prominent {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(1.25rem, 2.8vw, 1.85rem);
  color: var(--brass); /* Brand red */
  margin-top: 18px;
  line-height: 1.35;
  letter-spacing: 0.01em;
}

/* ---------- Hero Bass Icon ---------- */
.hero-bass-icon {
  margin-top: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-bass-icon::after {
  content: "Upright bass. Moving truck. Same hands.";
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-50);
  max-width: 20ch;
  line-height: 1.4;
}

/* ---------- Musical Divider ---------- */
.divider-musical {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin: 64px auto;
  max-width: 600px;
  color: var(--brass); /* Brand red */
  opacity: 0.85;
}
.divider-musical::before,
.divider-musical::after {
  content: "";
  flex: 1;
  height: 1.5px;
  background: linear-gradient(to right, transparent, var(--paper-line), transparent);
}
.divider-musical.dark::before,
.divider-musical.dark::after {
  background: linear-gradient(to right, transparent, rgba(248, 243, 232, 0.25), transparent);
}
.divider-musical svg {
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.divider-musical:hover svg {
  transform: scale(1.15) rotate(-5deg);
}

/* ---------- Masonic Emblem ---------- */
.masonic-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 32px;
  color: var(--brass);
  opacity: 0.8;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.masonic-container:hover {
  opacity: 1;
  transform: translateY(-2px);
}
.masonic-label {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  margin-top: 8px;
  color: rgba(248, 243, 232, 0.45);
}

