/* ========================================================
   San Fernando Valley Appliance Repair — Stylesheet
   Design DNA: warm cream + deep burgundy + brass gold,
   serif-led typography (Frank Ruhl Libre + Manrope).
   Inspired by classic family-business aesthetics.
   ======================================================== */

:root {
  --vly-burgundy: #6b1f29;
  --vly-burgundy-deep: #4d141c;
  --vly-burgundy-soft: #8a3942;
  --vly-gold: #c89b3c;
  --vly-gold-soft: #e7c879;
  --vly-cream: #f7f3ee;
  --vly-cream-deep: #efe7d9;
  --vly-ink: #1f1a17;
  --vly-ink-soft: #5a544e;
  --vly-line: #e2d8ca;
  --vly-white: #ffffff;
  --vly-radius: 6px;
  --vly-shadow: 0 22px 60px -28px rgba(31, 26, 23, 0.25);
  --vly-shadow-card: 0 30px 80px -32px rgba(31, 26, 23, 0.35);
  --vly-container: 1200px;
  --vly-serif: 'Frank Ruhl Libre', Georgia, serif;
  --vly-sans: 'Manrope', system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--vly-sans);
  color: var(--vly-ink);
  background: var(--vly-white);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: var(--vly-burgundy); text-decoration: none; }
a:hover { color: var(--vly-burgundy-deep); }
img { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4 {
  font-family: var(--vly-serif);
  font-weight: 700;
  color: var(--vly-burgundy-deep);
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin: 0 0 0.4em;
}

p { margin: 0 0 1em; color: var(--vly-ink-soft); }

/* ---------- TOP STRIP ---------- */
.vly-strip {
  background: var(--vly-burgundy-deep);
  color: var(--vly-cream);
  font-size: 13px;
  letter-spacing: 0.02em;
}
.vly-strip__inner {
  max-width: var(--vly-container);
  margin: 0 auto;
  padding: 9px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.vly-strip__brag { font-style: italic; }
.vly-strip__phone {
  color: var(--vly-cream);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.vly-strip__phone:hover { color: var(--vly-gold-soft); }

/* ---------- MASTHEAD ---------- */
.vly-mast {
  background: var(--vly-white);
  border-bottom: 1px solid var(--vly-line);
  position: sticky;
  top: 0;
  z-index: 50;
}
.vly-mast__inner {
  max-width: var(--vly-container);
  margin: 0 auto;
  padding: 18px 24px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
}
.vly-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--vly-serif);
}
.vly-brand__img {
  display: block;
  height: 64px;
  width: auto;
  max-width: 380px;
}
.vly-nav {
  display: flex;
  gap: 28px;
  justify-content: center;
}
.vly-nav a {
  color: var(--vly-ink);
  font-weight: 500;
  font-size: 15px;
  position: relative;
  padding: 4px 0;
}
.vly-nav a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  height: 2px;
  width: 0;
  background: var(--vly-gold);
  transition: width 0.2s ease;
}
.vly-nav a:hover { color: var(--vly-burgundy); }
.vly-nav a:hover::after { width: 100%; }
.vly-mast__cta {
  background: var(--vly-burgundy);
  color: var(--vly-cream) !important;
  padding: 11px 20px;
  border-radius: var(--vly-radius);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.02em;
  border: 1px solid var(--vly-burgundy-deep);
  transition: background 0.15s;
}
.vly-mast__cta:hover { background: var(--vly-burgundy-deep); color: var(--vly-cream) !important; }

/* ---------- BUTTONS ---------- */
.vly-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  font-family: var(--vly-sans);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.02em;
  border-radius: var(--vly-radius);
  border: 1px solid transparent;
  cursor: pointer;
  text-align: center;
  transition: transform 0.15s, background 0.15s, box-shadow 0.15s;
  text-decoration: none;
}
.vly-btn--primary {
  background: var(--vly-burgundy);
  color: var(--vly-cream) !important;
  border-color: var(--vly-burgundy-deep);
  box-shadow: 0 8px 22px -10px rgba(107, 31, 41, 0.6);
}
.vly-btn--primary:hover {
  background: var(--vly-burgundy-deep);
  transform: translateY(-1px);
}
.vly-btn--ghost {
  background: transparent;
  color: var(--vly-burgundy-deep) !important;
  border: 1px solid var(--vly-burgundy);
}
.vly-btn--ghost:hover {
  background: var(--vly-burgundy);
  color: var(--vly-cream) !important;
}
.vly-btn--inverse {
  background: var(--vly-cream);
  color: var(--vly-burgundy-deep) !important;
  border-color: var(--vly-cream);
}
.vly-btn--inverse:hover {
  background: var(--vly-gold-soft);
}
.vly-btn--block { width: 100%; }

/* ---------- HERO ---------- */
.vly-hero {
  background:
    radial-gradient(circle at 90% 10%, rgba(200, 155, 60, 0.08) 0%, transparent 50%),
    linear-gradient(to bottom, var(--vly-cream) 0%, var(--vly-cream-deep) 100%);
  padding: 64px 24px 0;
  position: relative;
}
.vly-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(107, 31, 41, 0.06) 1px, transparent 1px);
  background-size: 22px 22px;
  pointer-events: none;
  mask-image: linear-gradient(to bottom, transparent 0%, black 30%, black 70%, transparent 100%);
}
.vly-hero__inner {
  position: relative;
  max-width: var(--vly-container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: center;
  padding-bottom: 80px;
}
.vly-eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--vly-burgundy);
  font-weight: 700;
  margin-bottom: 18px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--vly-gold);
}
.vly-hero__copy h1 {
  font-size: clamp(2.2rem, 4.4vw, 3.4rem);
  font-weight: 900;
  margin-bottom: 22px;
  color: var(--vly-burgundy-deep);
}
.vly-hero__lede {
  font-size: 17px;
  line-height: 1.65;
  max-width: 540px;
  color: var(--vly-ink);
}
.vly-hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
  margin-bottom: 28px;
}
.vly-hero__trust {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--vly-ink-soft);
}
.vly-hero__trust strong { color: var(--vly-burgundy-deep); }
.vly-stars { display: inline-flex; gap: 2px; }

/* Hero photo (truck) */
.vly-hero__photo {
  margin: 0;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--vly-shadow-card);
  border: 1px solid var(--vly-line);
  transform: rotate(-0.5deg);
}
.vly-hero__photo img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.vly-hero__photo figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(31, 26, 23, 0.85) 0%, rgba(31, 26, 23, 0) 100%);
  color: var(--vly-cream);
  font-family: var(--vly-serif);
  font-style: italic;
  font-size: 15px;
  padding: 36px 22px 16px;
  letter-spacing: 0.01em;
}

/* Below-hero contact strip */
.vly-hero__strip {
  position: relative;
  max-width: var(--vly-container);
  margin: -28px auto 0;
  background: var(--vly-burgundy-deep);
  color: var(--vly-cream);
  border-radius: 12px;
  padding: 22px 28px;
  box-shadow: var(--vly-shadow-card);
  z-index: 5;
  border: 2px solid var(--vly-gold);
  transform: translateY(28px);
}
.vly-hero__strip-inner {
  display: grid;
  grid-template-columns: 1fr 2.4fr;
  gap: 28px;
  align-items: center;
}
.vly-hero__strip-copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
  line-height: 1.4;
}
.vly-hero__strip-copy strong {
  font-family: var(--vly-serif);
  font-size: 19px;
  color: var(--vly-cream);
}
.vly-hero__strip-copy span {
  font-size: 13px;
  color: var(--vly-cream);
  opacity: 0.78;
}
.vly-quickform {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
}
.vly-quickform__field { display: contents; }
.vly-quickform__field input {
  font-family: inherit;
  font-size: 14px;
  padding: 11px 12px;
  border-radius: var(--vly-radius);
  border: 1px solid rgba(247, 243, 238, 0.2);
  background: rgba(247, 243, 238, 0.08);
  color: var(--vly-cream);
  width: 100%;
}
.vly-quickform__field--wide input { grid-column: 1 / -1; }
.vly-quickform__field input::placeholder { color: rgba(247, 243, 238, 0.55); }
.vly-quickform__field input:focus {
  outline: none;
  background: var(--vly-cream);
  color: var(--vly-ink);
  border-color: var(--vly-gold);
}
.vly-quickform__field input:focus::placeholder { color: rgba(31, 26, 23, 0.5); }
.vly-quickform__verify {
  grid-column: 1 / 3;
  display: flex;
  align-items: center;
  min-height: 48px;
}
.vly-quickform__verify .cf-turnstile { width: 100%; }
.vly-quickform__submit {
  grid-column: 3 / 4;
  align-self: stretch;
  padding: 12px 22px;
}
.vly-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}
.vly-sr {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ---------- TRUST PILLARS ---------- */
.vly-pillars {
  background: var(--vly-cream);
  color: var(--vly-ink);
  padding: 96px 24px 64px;
  border-bottom: 1px solid var(--vly-line);
}
.vly-pillars__inner {
  max-width: var(--vly-container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.vly-pillar {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: var(--vly-white);
  padding: 28px;
  border-radius: 10px;
  border: 1px solid var(--vly-line);
  border-left: 3px solid var(--vly-gold);
  position: relative;
}
.vly-pillar__icon { color: var(--vly-burgundy); }
.vly-pillar h3 {
  color: var(--vly-burgundy-deep);
  font-size: 20px;
  margin: 0;
}
.vly-pillar p {
  color: var(--vly-ink-soft);
  font-size: 14px;
  margin: 0;
  line-height: 1.55;
}

/* ---------- SHARED SECTION HEAD ---------- */
.vly-section__head {
  max-width: 760px;
  margin: 0 auto 56px;
  padding: 0 24px;
}
.vly-section__head--center { text-align: center; }
.vly-section__label {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--vly-gold);
  font-weight: 700;
  margin-bottom: 14px;
}
.vly-section__title {
  font-size: clamp(1.9rem, 3.6vw, 2.7rem);
  margin-bottom: 18px;
}
.vly-section__lede {
  font-size: 17px;
  line-height: 1.65;
  color: var(--vly-ink-soft);
}

/* ---------- SERVICES ---------- */
.vly-services {
  padding: 96px 0;
  background: var(--vly-white);
}
.vly-svc-grid {
  max-width: var(--vly-container);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.vly-svc {
  background: var(--vly-cream);
  border: 1px solid var(--vly-line);
  border-radius: 10px;
  padding: 36px 30px 30px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  color: var(--vly-ink);
  position: relative;
  overflow: hidden;
}
.vly-svc::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--vly-burgundy);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.vly-svc:hover {
  transform: translateY(-4px);
  box-shadow: var(--vly-shadow);
  border-color: var(--vly-burgundy-soft);
  color: var(--vly-ink);
}
.vly-svc:hover::before { transform: scaleX(1); }
.vly-svc__art {
  color: var(--vly-burgundy);
  margin-bottom: 14px;
  height: 80px;
  display: flex;
  align-items: flex-end;
}
.vly-svc h3 {
  font-size: 22px;
  margin: 0;
  color: var(--vly-burgundy-deep);
}
.vly-svc p {
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
  flex: 1;
}
.vly-svc__more {
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--vly-burgundy);
  font-weight: 700;
  margin-top: 14px;
}

/* ---------- FOUNDER (MEET BEN) ---------- */
.vly-founder {
  background:
    linear-gradient(180deg, var(--vly-white) 0%, var(--vly-cream) 100%);
  padding: 96px 24px;
  border-top: 1px solid var(--vly-line);
}
.vly-founder__inner {
  max-width: var(--vly-container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 64px;
  align-items: start;
}
.vly-founder__plate {
  background: var(--vly-burgundy-deep);
  color: var(--vly-cream);
  padding: 36px 32px 32px;
  border-radius: 12px;
  text-align: center;
  position: sticky;
  top: 100px;
  box-shadow: var(--vly-shadow-card);
  border: 2px solid var(--vly-gold);
}
.vly-founder__monogram {
  width: 130px;
  height: 130px;
  margin: 0 auto 18px;
  background: var(--vly-cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
  border: 3px solid var(--vly-gold);
}
.vly-founder__monogram img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
}
.vly-founder__name {
  font-family: var(--vly-serif);
  color: var(--vly-cream);
  font-size: 28px;
  margin: 0 0 4px;
  font-weight: 700;
}
.vly-founder__title {
  color: var(--vly-gold-soft);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 0 0 22px;
  font-weight: 700;
}
.vly-founder__creds {
  list-style: none;
  margin: 0;
  padding: 18px 0 0;
  border-top: 1px solid rgba(247, 243, 238, 0.18);
  font-size: 13px;
  text-align: left;
}
.vly-founder__creds li {
  padding: 6px 0;
  color: rgba(247, 243, 238, 0.85);
  position: relative;
  padding-left: 18px;
}
.vly-founder__creds li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--vly-gold);
  font-weight: 700;
}
.vly-founder__story h2 { font-size: clamp(1.9rem, 3.4vw, 2.5rem); margin-bottom: 22px; }
.vly-founder__story p {
  font-size: 17px;
  line-height: 1.75;
  color: var(--vly-ink);
  margin-bottom: 18px;
}
.vly-founder__quote {
  margin: 36px 0 0;
  padding: 28px 32px 28px 56px;
  background: var(--vly-cream-deep);
  border-left: 4px solid var(--vly-burgundy);
  border-radius: 0 10px 10px 0;
  position: relative;
  font-family: var(--vly-serif);
}
.vly-founder__quote-mark {
  position: absolute;
  left: 18px;
  top: 8px;
  font-family: var(--vly-serif);
  font-size: 60px;
  color: var(--vly-burgundy);
  opacity: 0.45;
  line-height: 1;
}
.vly-founder__quote p {
  font-size: 20px;
  font-style: italic;
  color: var(--vly-burgundy-deep);
  font-weight: 600;
  margin: 0 0 8px;
  line-height: 1.4;
}
.vly-founder__quote cite {
  display: block;
  font-style: normal;
  font-size: 13px;
  color: var(--vly-ink-soft);
  letter-spacing: 0.04em;
  font-family: var(--vly-sans);
}

/* ---------- BIG STATEMENT ---------- */
.vly-statement {
  background: var(--vly-burgundy);
  color: var(--vly-cream);
  padding: 96px 24px;
  position: relative;
  overflow: hidden;
}
.vly-statement::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(135deg, transparent 0%, transparent 50%, rgba(200, 155, 60, 0.08) 100%),
    radial-gradient(circle at 80% 20%, rgba(247, 243, 238, 0.04) 0%, transparent 50%);
  pointer-events: none;
}
.vly-statement__inner {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}
.vly-statement__pre {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--vly-gold-soft);
  margin-bottom: 22px;
  font-weight: 700;
}
.vly-statement__title {
  color: var(--vly-cream);
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 56px;
  font-style: italic;
}
.vly-statement__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  border-top: 1px solid rgba(247, 243, 238, 0.18);
  padding-top: 40px;
}
.vly-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.vly-stat strong {
  font-family: var(--vly-serif);
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  color: var(--vly-gold-soft);
  font-weight: 900;
  line-height: 1;
}
.vly-stat span {
  font-size: 13px;
  color: var(--vly-cream);
  letter-spacing: 0.04em;
  opacity: 0.85;
}

/* ---------- REVIEWS ---------- */
.vly-reviews {
  background: var(--vly-cream);
  padding: 96px 0;
}
.vly-reviews__grid {
  max-width: var(--vly-container);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.vly-review {
  background: var(--vly-white);
  border: 1px solid var(--vly-line);
  border-radius: 10px;
  padding: 32px 30px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}
.vly-review::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 24px;
  font-family: var(--vly-serif);
  font-size: 90px;
  color: var(--vly-burgundy);
  opacity: 0.18;
  line-height: 1;
}
.vly-review blockquote {
  font-family: var(--vly-serif);
  font-size: 18px;
  line-height: 1.55;
  color: var(--vly-ink);
  margin: 0;
  font-style: italic;
  font-weight: 400;
}
.vly-review figcaption {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--vly-line);
  padding-top: 14px;
  font-size: 14px;
}
.vly-review figcaption strong {
  font-family: var(--vly-serif);
  color: var(--vly-burgundy-deep);
  font-size: 16px;
}
.vly-review figcaption span { color: var(--vly-ink-soft); font-size: 13px; }

/* ---------- BRANDS ---------- */
.vly-brands {
  padding: 96px 0;
  background: var(--vly-white);
}
.vly-brand-rail {
  max-width: var(--vly-container);
  margin: 0 auto;
  padding: 0 24px;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
.vly-brand-rail li {
  font-family: var(--vly-serif);
  font-size: 18px;
  font-weight: 600;
  color: var(--vly-burgundy-deep);
  padding: 12px 22px;
  background: var(--vly-cream);
  border: 1px solid var(--vly-line);
  border-radius: 999px;
  letter-spacing: 0.01em;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
.vly-brand-rail li:hover {
  background: var(--vly-burgundy);
  color: var(--vly-cream);
  transform: translateY(-2px);
}

/* ---------- AREAS ---------- */
.vly-areas {
  background: var(--vly-cream-deep);
  padding: 96px 24px;
}
.vly-areas__grid {
  max-width: var(--vly-container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
  align-items: start;
}
.vly-areas__copy h2 { font-size: clamp(1.9rem, 3.5vw, 2.6rem); }
.vly-areas__copy p {
  font-size: 17px;
  line-height: 1.65;
  margin-bottom: 28px;
  color: var(--vly-ink);
}
.vly-areas__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  background: var(--vly-white);
  border: 1px solid var(--vly-line);
  border-radius: 10px;
  overflow: hidden;
}
.vly-areas__list li {
  padding: 14px 20px;
  font-size: 15px;
  color: var(--vly-ink);
  border-bottom: 1px solid var(--vly-line);
  border-right: 1px solid var(--vly-line);
  font-weight: 500;
  position: relative;
}
.vly-areas__list li::before {
  content: '◆';
  color: var(--vly-gold);
  margin-right: 8px;
  font-size: 10px;
  vertical-align: middle;
}
.vly-areas__list li:nth-child(3n) { border-right: 0; }

/* ---------- FAQ ---------- */
.vly-faq {
  background: var(--vly-white);
  padding: 96px 24px;
}
.vly-faq__list {
  max-width: 820px;
  margin: 0 auto;
}
.vly-faq__item {
  border-top: 1px solid var(--vly-line);
  padding: 4px 0;
}
.vly-faq__item:last-child { border-bottom: 1px solid var(--vly-line); }
.vly-faq__item summary {
  cursor: pointer;
  list-style: none;
  font-family: var(--vly-serif);
  font-size: 19px;
  font-weight: 600;
  color: var(--vly-burgundy-deep);
  padding: 22px 40px 22px 0;
  position: relative;
  outline: none;
}
.vly-faq__item summary::-webkit-details-marker { display: none; }
.vly-faq__item summary::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 26px;
  color: var(--vly-burgundy);
  font-weight: 300;
  transition: transform 0.2s;
}
.vly-faq__item[open] summary::after { content: '−'; }
.vly-faq__body {
  padding: 0 0 22px;
}
.vly-faq__body p {
  font-size: 16px;
  line-height: 1.65;
  margin: 0;
  color: var(--vly-ink);
}

/* ---------- BIG CTA ---------- */
.vly-bigcta {
  background:
    linear-gradient(135deg, var(--vly-burgundy-deep) 0%, var(--vly-burgundy) 100%);
  color: var(--vly-cream);
  padding: 80px 24px;
  text-align: center;
}
.vly-bigcta__inner { max-width: 760px; margin: 0 auto; }
.vly-bigcta h2 {
  color: var(--vly-cream);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  margin-bottom: 12px;
}
.vly-bigcta p {
  color: var(--vly-cream);
  opacity: 0.85;
  font-size: 17px;
  margin-bottom: 28px;
}

/* ---------- FOOTER ---------- */
.vly-foot {
  background: var(--vly-ink);
  color: var(--vly-cream);
  padding: 64px 24px 24px;
}
.vly-foot__grid {
  max-width: var(--vly-container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(247, 243, 238, 0.12);
}
.vly-brand--light .vly-brand__name strong { color: var(--vly-cream); }
.vly-brand--light .vly-brand__name em { color: var(--vly-cream); opacity: 0.65; }
.vly-foot__col h4 {
  font-family: var(--vly-serif);
  font-size: 16px;
  letter-spacing: 0.04em;
  color: var(--vly-gold-soft);
  margin-bottom: 14px;
  text-transform: uppercase;
  font-weight: 700;
}
.vly-foot__col p {
  font-size: 14px;
  color: rgba(247, 243, 238, 0.7);
  line-height: 1.6;
}
.vly-foot__col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.vly-foot__col li {
  font-size: 14px;
  color: rgba(247, 243, 238, 0.8);
  padding: 4px 0;
}
.vly-foot__col a {
  color: rgba(247, 243, 238, 0.8);
  transition: color 0.15s;
}
.vly-foot__col a:hover { color: var(--vly-gold-soft); }
.vly-foot__emergency {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px dashed rgba(247, 243, 238, 0.12);
  font-style: italic;
  font-size: 13px !important;
}
.vly-foot__base {
  max-width: var(--vly-container);
  margin: 24px auto 0;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(247, 243, 238, 0.5);
  letter-spacing: 0.04em;
  flex-wrap: wrap;
  gap: 8px;
}

/* ---------- SUB-PAGE HERO ---------- */
.vly-page-hero {
  background:
    radial-gradient(circle at 90% 10%, rgba(200, 155, 60, 0.08) 0%, transparent 50%),
    linear-gradient(to bottom, var(--vly-cream) 0%, var(--vly-cream-deep) 100%);
  padding: 56px 24px 64px;
  position: relative;
  border-bottom: 1px solid var(--vly-line);
}
.vly-page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(107, 31, 41, 0.06) 1px, transparent 1px);
  background-size: 22px 22px;
  pointer-events: none;
  mask-image: linear-gradient(to bottom, transparent 0%, black 30%, black 100%);
}
.vly-page-hero__inner {
  position: relative;
  max-width: 960px;
  margin: 0 auto;
}
.vly-page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 14px 0 16px;
  font-weight: 900;
}
.vly-page-hero__lede {
  font-size: 19px;
  line-height: 1.6;
  max-width: 720px;
  color: var(--vly-ink);
}
.vly-page-hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.vly-page-hero--service { border-top: 4px solid var(--vly-burgundy); }
.vly-page-hero--brand   { border-top: 4px solid var(--vly-gold); }
.vly-page-hero--area    { border-top: 4px solid var(--vly-burgundy-deep); }

.vly-crumb {
  font-size: 13px;
  color: var(--vly-ink-soft);
  letter-spacing: 0.04em;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 14px;
}
.vly-crumb a { color: var(--vly-burgundy); text-decoration: none; }
.vly-crumb a:hover { text-decoration: underline; }
.vly-crumb [aria-current] { color: var(--vly-ink); }
.vly-crumb span { color: var(--vly-ink-soft); }

/* ---------- LONG-FORM PROSE ---------- */
.vly-prose {
  background: var(--vly-white);
  padding: 72px 24px;
}
.vly-prose__inner {
  max-width: 760px;
  margin: 0 auto;
  font-size: 17px;
  line-height: 1.75;
  color: var(--vly-ink);
}
.vly-prose__inner h2 {
  font-size: clamp(1.6rem, 2.6vw, 2rem);
  margin: 48px 0 16px;
  color: var(--vly-burgundy-deep);
  border-bottom: 2px solid var(--vly-gold);
  padding-bottom: 10px;
  display: inline-block;
}
.vly-prose__inner h3 {
  font-size: 1.3rem;
  margin: 32px 0 12px;
  color: var(--vly-burgundy);
}
.vly-prose__inner p { margin: 0 0 18px; }
.vly-prose__inner ul, .vly-prose__inner ol { margin: 0 0 22px 22px; padding: 0; }
.vly-prose__inner li { margin-bottom: 8px; }
.vly-prose__inner blockquote {
  margin: 28px 0;
  padding: 22px 28px;
  background: var(--vly-cream);
  border-left: 4px solid var(--vly-burgundy);
  border-radius: 0 8px 8px 0;
  font-family: var(--vly-serif);
  font-style: italic;
  font-size: 18px;
  color: var(--vly-burgundy-deep);
}
.vly-prose__inner strong { color: var(--vly-burgundy-deep); }
.vly-prose__inner a {
  color: var(--vly-burgundy);
  text-decoration: underline;
  text-decoration-color: var(--vly-gold);
  text-underline-offset: 3px;
}

/* ---------- PROBLEM-CAUSE-FIX CARDS ---------- */
.vly-pcf {
  background: var(--vly-cream);
  padding: 80px 24px;
  border-top: 1px solid var(--vly-line);
}
.vly-pcf__grid {
  max-width: var(--vly-container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.vly-pcf__card {
  background: var(--vly-white);
  padding: 28px;
  border-radius: 10px;
  border: 1px solid var(--vly-line);
  border-top: 3px solid var(--vly-burgundy);
}
.vly-pcf__card h3 {
  font-size: 19px;
  color: var(--vly-burgundy-deep);
  margin: 0 0 14px;
}
.vly-pcf__card p {
  font-size: 14px;
  margin: 0 0 8px;
  color: var(--vly-ink);
  line-height: 1.55;
}
.vly-pcf__card strong {
  color: var(--vly-burgundy);
  display: block;
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 2px;
}

/* ---------- PROCESS STEPS ---------- */
.vly-process {
  background: var(--vly-white);
  padding: 80px 24px;
}
.vly-process__list {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 920px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  counter-reset: vly-step;
}
.vly-process__step {
  background: var(--vly-cream);
  padding: 32px 28px 28px;
  border-radius: 10px;
  position: relative;
  border-left: 3px solid var(--vly-gold);
}
.vly-process__num {
  position: absolute;
  top: -18px;
  left: -18px;
  width: 44px;
  height: 44px;
  background: var(--vly-burgundy);
  color: var(--vly-cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--vly-serif);
  font-weight: 900;
  font-size: 18px;
  border: 3px solid var(--vly-gold);
}
.vly-process__step h3 { color: var(--vly-burgundy-deep); margin: 0 0 8px; font-size: 19px; }
.vly-process__step p { margin: 0; font-size: 15px; line-height: 1.6; color: var(--vly-ink-soft); }

/* ---------- BRAND PRODUCT LINEUP ---------- */
.vly-lineup { background: var(--vly-cream); padding: 80px 24px; }
.vly-lineup__grid {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: var(--vly-container);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.vly-lineup__grid li {
  background: var(--vly-white);
  padding: 26px;
  border-radius: 10px;
  border: 1px solid var(--vly-line);
}
.vly-lineup__grid h3 { color: var(--vly-burgundy-deep); margin: 0 0 8px; font-size: 18px; }
.vly-lineup__grid p { margin: 0; font-size: 14px; line-height: 1.55; color: var(--vly-ink-soft); }

/* ---------- AREA FACTS BAND ---------- */
.vly-areafacts {
  background: var(--vly-burgundy-deep);
  color: var(--vly-cream);
  padding: 36px 24px;
}
.vly-areafacts__grid {
  max-width: var(--vly-container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.vly-areafact { display: flex; flex-direction: column; gap: 4px; align-items: center; text-align: center; }
.vly-areafact strong {
  font-family: var(--vly-serif);
  font-size: clamp(1.8rem, 2.6vw, 2.4rem);
  font-weight: 900;
  color: var(--vly-gold-soft);
  line-height: 1;
}
.vly-areafact span { font-size: 13px; color: var(--vly-cream); opacity: 0.85; letter-spacing: 0.02em; }

/* ---------- NEIGHBORHOODS ---------- */
.vly-hoods { background: var(--vly-cream); padding: 80px 24px; }
.vly-hoods__grid {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 960px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.vly-hoods__grid li {
  background: var(--vly-white);
  padding: 20px 24px;
  border-radius: 8px;
  border: 1px solid var(--vly-line);
  border-left: 3px solid var(--vly-burgundy);
}
.vly-hoods__grid strong {
  display: block;
  font-family: var(--vly-serif);
  font-size: 17px;
  color: var(--vly-burgundy-deep);
  margin-bottom: 4px;
}
.vly-hoods__grid span { font-size: 14px; color: var(--vly-ink-soft); line-height: 1.5; }

/* ---------- RELATED CARDS ---------- */
.vly-related { background: var(--vly-white); padding: 80px 24px; border-top: 1px solid var(--vly-line); }
.vly-related__grid {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: var(--vly-container);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.vly-related__grid a {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: var(--vly-cream);
  padding: 22px 24px;
  border: 1px solid var(--vly-line);
  border-radius: 8px;
  color: var(--vly-ink);
  text-decoration: none;
  transition: transform 0.15s, border-color 0.15s, box-shadow 0.15s;
}
.vly-related__grid a:hover {
  transform: translateY(-2px);
  border-color: var(--vly-burgundy);
  box-shadow: var(--vly-shadow);
}
.vly-related__grid strong { font-family: var(--vly-serif); font-size: 17px; color: var(--vly-burgundy-deep); }
.vly-related__grid span { font-size: 14px; color: var(--vly-ink-soft); line-height: 1.5; }

.vly-brands--inset { padding-top: 64px; padding-bottom: 64px; background: var(--vly-cream-deep); }

/* ---------- CONTACT PAGE ---------- */
.vly-contact { background: var(--vly-white); padding: 80px 24px 96px; }
.vly-contact__grid {
  max-width: var(--vly-container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}
.vly-contact__info h2,
.vly-contact__form-wrap h2 {
  font-size: clamp(1.6rem, 2.6vw, 2.1rem);
  margin: 0 0 16px;
  color: var(--vly-burgundy-deep);
  border-bottom: 2px solid var(--vly-gold);
  padding-bottom: 10px;
  display: inline-block;
}
.vly-contact__form-wrap p { font-size: 16px; margin: 0 0 22px; color: var(--vly-ink-soft); line-height: 1.6; }

.vly-contact__dl { margin: 0 0 36px; }
.vly-contact__dl dt {
  font-family: var(--vly-serif);
  font-weight: 700;
  color: var(--vly-burgundy);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 18px;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--vly-line);
}
.vly-contact__dl dd { margin: 8px 0 0; font-size: 15px; line-height: 1.6; color: var(--vly-ink); }
.vly-contact__dl dd a { color: var(--vly-burgundy); }

.vly-contact__cities h3 {
  font-family: var(--vly-serif);
  font-size: 17px;
  color: var(--vly-burgundy-deep);
  margin: 0 0 12px;
}
.vly-contact__cities ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px 16px;
}
.vly-contact__cities li {
  font-size: 14px;
  color: var(--vly-ink);
  padding: 4px 0;
  position: relative;
  padding-left: 14px;
}
.vly-contact__cities li::before {
  content: '·';
  color: var(--vly-gold);
  position: absolute;
  left: 0;
  font-weight: 900;
}

.vly-fullform {
  background: var(--vly-cream);
  padding: 32px;
  border-radius: 10px;
  border: 1px solid var(--vly-line);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.vly-fullform label { display: flex; flex-direction: column; gap: 6px; }
.vly-fullform label span {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--vly-burgundy);
}
.vly-fullform input,
.vly-fullform textarea {
  font-family: inherit;
  font-size: 15px;
  padding: 12px 14px;
  border: 1px solid var(--vly-line);
  border-radius: var(--vly-radius);
  background: var(--vly-white);
  color: var(--vly-ink);
  resize: vertical;
}
.vly-fullform input:focus,
.vly-fullform textarea:focus {
  outline: none;
  border-color: var(--vly-burgundy);
  box-shadow: 0 0 0 3px rgba(107, 31, 41, 0.08);
}
.vly-fullform__verify { margin: 4px 0; }
.vly-fullform__fine {
  font-size: 13px;
  text-align: center;
  margin: 4px 0 0;
  color: var(--vly-ink-soft);
}

.vly-brand--light .vly-brand__img--light { filter: brightness(0) invert(1) opacity(0.92); height: 48px; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1020px) {
  .vly-hero__inner { grid-template-columns: 1fr; gap: 36px; padding-bottom: 64px; }
  .vly-hero__photo { transform: none; max-width: 640px; margin: 0 auto; }
  .vly-quickform { grid-template-columns: 1fr 1fr; }
  .vly-quickform__field--wide input { grid-column: 1 / -1; }
  .vly-quickform__verify { grid-column: 1 / -1; }
  .vly-quickform__submit { grid-column: 1 / -1; }
  .vly-hero__strip-inner { grid-template-columns: 1fr; gap: 16px; }
  .vly-svc-grid,
  .vly-reviews__grid { grid-template-columns: repeat(2, 1fr); }
  .vly-pillars__inner { grid-template-columns: 1fr; gap: 16px; }
  .vly-statement__stats { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .vly-areas__grid { grid-template-columns: 1fr; gap: 32px; }
  .vly-foot__grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .vly-founder__inner { grid-template-columns: 1fr; gap: 32px; }
  .vly-founder__plate { position: static; max-width: 380px; margin: 0 auto; }
  .vly-brand__img { height: 54px; max-width: 280px; }
  .vly-pcf__grid,
  .vly-process__list,
  .vly-related__grid,
  .vly-lineup__grid,
  .vly-hoods__grid { grid-template-columns: 1fr; }
  .vly-areafacts__grid { grid-template-columns: repeat(2, 1fr); }
  .vly-contact__grid { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 720px) {
  .vly-mast__inner { grid-template-columns: auto auto; gap: 12px; padding: 12px 16px; }
  .vly-nav { display: none; }
  .vly-mast__cta { padding: 9px 14px; font-size: 13px; }
  .vly-brand__img { height: 42px; max-width: 220px; }
  .vly-strip__inner { flex-direction: column; gap: 6px; padding: 8px 16px; }
  .vly-svc-grid,
  .vly-reviews__grid { grid-template-columns: 1fr; }
  .vly-areas__list { grid-template-columns: repeat(2, 1fr); }
  .vly-areas__list li:nth-child(3n) { border-right: 1px solid var(--vly-line); }
  .vly-areas__list li:nth-child(2n) { border-right: 0; }
  .vly-foot__grid { grid-template-columns: 1fr; gap: 24px; }
  .vly-foot__base { flex-direction: column; align-items: flex-start; }
  .vly-hero { padding: 40px 16px 0; }
  .vly-quickform { grid-template-columns: 1fr; }
  .vly-quickform__field--wide input,
  .vly-quickform__verify,
  .vly-quickform__submit { grid-column: auto; }
  .vly-hero__strip { padding: 18px; margin-left: 0; margin-right: 0; }
  .vly-services,
  .vly-reviews,
  .vly-brands,
  .vly-areas,
  .vly-founder,
  .vly-faq { padding-top: 56px; padding-bottom: 56px; }
  .vly-pillars { padding-top: 64px; padding-bottom: 48px; }
  .vly-founder__quote { padding: 22px 22px 22px 44px; }
  .vly-founder__quote p { font-size: 17px; }
  .vly-page-hero { padding: 40px 16px 48px; }
  .vly-prose { padding: 56px 16px; }
  .vly-prose__inner { font-size: 16px; }
  .vly-pcf, .vly-process, .vly-lineup, .vly-hoods, .vly-related { padding: 56px 16px; }
}
