/* =========================================
   Jarrett Tree Experts — shared stylesheet
   ========================================= */

:root {
  --bark:        #2a1d10;
  --bark-deep:   #1a1109;
  --moss:        #3d5a2a;
  --moss-deep:   #2a3f1c;
  --sand:        #f1e7d4;
  --sand-warm:   #e8d9bd;
  --cream:       #faf4e6;
  --rust:        #b54a1e;
  --rust-deep:   #8a3414;
  --gold:        #c8902a;
  --gulf:        #1f5a6b;
  --ink:         #18120a;
  --line:        rgba(42, 29, 16, 0.15);
}

@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,500;9..144,700;9..144,900&family=Inter+Tight:wght@400;500;600&family=Caveat:wght@500;700&display=swap');

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter Tight', sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.55;
  font-size: 17px;
  background-image:
    radial-gradient(circle at 12% 18%, rgba(61, 90, 42, 0.05), transparent 40%),
    radial-gradient(circle at 88% 82%, rgba(181, 74, 30, 0.04), transparent 35%);
}

/* ---------- TOP BAR ---------- */
.topbar {
  background: var(--bark-deep);
  color: var(--sand);
  font-size: 13px;
  letter-spacing: 0.04em;
  padding: 9px 0;
}
.topbar-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.topbar a { color: var(--sand); text-decoration: none; }
.topbar .pill {
  background: var(--gold);
  color: var(--bark-deep);
  padding: 3px 10px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 11.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ---------- NAV ---------- */
nav.main {
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(8px);
}
.nav-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 18px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.brand {
  font-family: 'Fraunces', serif;
  font-weight: 900;
  font-size: 26px;
  letter-spacing: -0.02em;
  color: var(--bark);
  text-decoration: none;
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.brand .mark {
  color: var(--moss);
  font-style: italic;
  font-weight: 400;
}
.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
  list-style: none;
  flex-wrap: wrap;
}
.nav-links a {
  color: var(--bark);
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  position: relative;
  padding: 4px 0;
}
.nav-links a:hover { color: var(--rust); }
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 2px;
  background: var(--rust);
}
.btn-quote {
  background: var(--rust);
  color: var(--cream) !important;
  padding: 10px 18px !important;
  border-radius: 4px;
  font-weight: 600 !important;
  letter-spacing: 0.03em;
  transition: background 0.2s;
}
.btn-quote:hover { background: var(--rust-deep); color: var(--cream) !important; }
.btn-quote.active::after { display: none; }

/* ---------- HERO ---------- */
.hero {
  padding: 60px 28px 110px;
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}
.hero-eyebrow {
  font-family: 'Caveat', cursive;
  color: var(--rust);
  font-size: 26px;
  margin-bottom: 14px;
}
.hero h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(48px, 6vw, 88px);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--bark);
  margin-bottom: 28px;
}
.hero h1 em {
  font-style: italic;
  font-weight: 400;
  color: var(--moss);
}
.hero p.lead {
  font-size: 19px;
  color: rgba(24, 18, 10, 0.75);
  max-width: 520px;
  margin-bottom: 36px;
}
.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.btn {
  display: inline-block;
  padding: 14px 26px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 4px;
  font-size: 15px;
  letter-spacing: 0.03em;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
  font-family: inherit;
}
.btn-primary { background: var(--rust); color: var(--cream); }
.btn-primary:hover { background: var(--rust-deep); transform: translateY(-1px); }
.btn-secondary {
  background: transparent;
  color: var(--bark);
  border: 1.5px solid var(--bark);
}
.btn-secondary:hover { background: var(--bark); color: var(--cream); }

.hero-stat-stack {
  display: grid;
  gap: 14px;
}
.stat-card {
  background: var(--sand);
  border-left: 4px solid var(--moss);
  padding: 22px 26px;
  border-radius: 2px;
}
.stat-card .n {
  font-family: 'Fraunces', serif;
  font-size: 44px;
  font-weight: 900;
  color: var(--bark);
  line-height: 1;
}
.stat-card .l {
  display: block;
  margin-top: 6px;
  color: rgba(24, 18, 10, 0.7);
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ---------- SECTIONS ---------- */
section {
  padding: 80px 28px;
  max-width: 1240px;
  margin: 0 auto;
}
.section-band {
  background: var(--bark);
  color: var(--cream);
  margin: 40px 0;
}
.section-band-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 80px 28px;
}
.eyebrow {
  font-family: 'Caveat', cursive;
  color: var(--rust);
  font-size: 24px;
  margin-bottom: 10px;
}
.section-band .eyebrow { color: var(--gold); }
h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--bark);
  margin-bottom: 24px;
}
.section-band h2 { color: var(--cream); }
h2 em { font-style: italic; font-weight: 400; color: var(--moss); }
.section-band h2 em { color: var(--gold); }

h3 {
  font-family: 'Fraunces', serif;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--bark);
  margin-bottom: 12px;
}

/* ---------- TRUCK SCROLLER ---------- */
.scroller-wrap {
  background: var(--bark);
  padding: 60px 0;
  overflow: hidden;
  position: relative;
}
.scroller-heading {
  max-width: 1240px;
  margin: 0 auto 40px;
  padding: 0 28px;
  color: var(--cream);
}
.scroller-heading .eyebrow { color: var(--gold); }
.scroller-heading h2 { color: var(--cream); }
.scroller-heading h2 em { color: var(--gold); }
.scroller {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: slide 38s linear infinite;
}
.scroller:hover { animation-play-state: paused; }
.truck-card {
  width: 480px;
  height: 320px;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  background: var(--moss-deep);
  flex-shrink: 0;
}
.truck-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.truck-card .badge {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--gold);
  color: var(--bark-deep);
  font-family: 'Fraunces', serif;
  font-weight: 900;
  letter-spacing: 0.12em;
  padding: 6px 12px;
  font-size: 13px;
}
@keyframes slide {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---------- FEATURE GRID ---------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 40px;
}
.feature {
  padding: 32px;
  background: var(--sand);
  border-radius: 4px;
  border-top: 4px solid var(--rust);
}
.feature .icon {
  width: 44px; height: 44px;
  background: var(--bark);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Fraunces', serif;
  font-weight: 900;
  font-size: 22px;
  margin-bottom: 18px;
}
.feature p {
  color: rgba(24, 18, 10, 0.75);
  font-size: 15.5px;
}

/* ---------- TWO-COL ---------- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

/* ---------- TAX BANNER ---------- */
.tax-banner {
  background: linear-gradient(135deg, var(--moss-deep), var(--moss));
  color: var(--cream);
  padding: 50px 40px;
  border-radius: 4px;
  margin: 60px auto;
  max-width: 1240px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.tax-banner::before {
  content: '★';
  position: absolute;
  font-family: 'Fraunces', serif;
  font-size: 320px;
  color: rgba(250, 244, 230, 0.06);
  right: -60px;
  top: -100px;
  line-height: 1;
}
.tax-banner h3 {
  font-size: 32px;
  color: var(--gold);
  margin-bottom: 0;
  line-height: 1.05;
}
.tax-banner p {
  font-size: 17px;
  line-height: 1.55;
}

/* ---------- SERVICES (page 2) ---------- */
.svc-list {
  display: grid;
  gap: 28px;
}
.svc-item {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
  align-items: center;
  padding: 36px 0;
  border-top: 1px solid var(--line);
}
.svc-item:last-child { border-bottom: 1px solid var(--line); }
.svc-item:nth-child(even) { grid-template-columns: 1.1fr 0.9fr; }
.svc-item:nth-child(even) .svc-img { order: 2; }
.svc-img {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 4px;
  background: var(--sand-warm);
}
.svc-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.svc-num {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 20px;
  color: var(--rust);
  margin-bottom: 6px;
}
.svc-item h3 { font-size: 36px; }
.svc-item p {
  color: rgba(24, 18, 10, 0.75);
  font-size: 16.5px;
  margin-bottom: 14px;
}
.urgent-strip {
  background: var(--rust);
  color: var(--cream);
  padding: 8px 14px;
  display: inline-block;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

/* ---------- SERVICE AREA MAP ---------- */
.area-section {
  background: var(--sand-warm);
}
.area-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 80px 28px;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
}
.area-map {
  position: relative;
  aspect-ratio: 1/1;
  background: var(--cream);
  border-radius: 50%;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
}
.area-map svg { width: 100%; height: 100%; }

/* ---------- REVIEWS (page 3) ---------- */
.review-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 40px;
}
.review-card {
  background: var(--sand);
  padding: 32px;
  border-radius: 4px;
  position: relative;
  border-left: 3px solid var(--gold);
}
.review-card::before {
  content: '"';
  position: absolute;
  top: -8px;
  left: 18px;
  font-family: 'Fraunces', serif;
  font-size: 110px;
  color: var(--rust);
  line-height: 1;
  opacity: 0.25;
}
.review-source {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(24, 18, 10, 0.6);
}
.review-source .src {
  background: var(--bark);
  color: var(--cream);
  padding: 3px 9px;
  border-radius: 2px;
  font-weight: 600;
}
.review-source .src.google { background: #4285F4; }
.review-source .src.yelp { background: #d32323; }
.stars {
  color: var(--gold);
  letter-spacing: 2px;
  font-size: 16px;
  margin-bottom: 14px;
}
.review-card p {
  font-size: 16px;
  color: var(--ink);
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}
.review-card .author {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 17px;
}
.review-card .meta {
  font-size: 13px;
  color: rgba(24, 18, 10, 0.55);
  margin-top: 2px;
}
.live-pulse {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--moss);
  color: var(--cream);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 14px;
}
.live-pulse .dot {
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}
.leave-review {
  background: var(--bark);
  color: var(--cream);
  padding: 60px 40px;
  border-radius: 4px;
  margin-top: 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.leave-review h2 { color: var(--cream); }
.leave-review h2 em { color: var(--gold); }
.review-buttons {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.btn-google, .btn-yelp {
  padding: 16px 24px;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 16px;
  border-radius: 4px;
  transition: transform 0.2s;
}
.btn-google { background: #fff; color: #4285F4; }
.btn-yelp { background: #d32323; color: #fff; }
.btn-google:hover, .btn-yelp:hover { transform: translateX(4px); }

/* ---------- QUOTE FORM (page 4) ---------- */
.quote-hero {
  padding: 80px 28px 40px;
  max-width: 1240px;
  margin: 0 auto;
  text-align: center;
}
.quote-hero h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(46px, 6vw, 80px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 0.95;
  color: var(--bark);
  margin-bottom: 22px;
}
.quote-hero h1 em { font-style: italic; font-weight: 400; color: var(--moss); }
.quote-hero p {
  font-size: 19px;
  color: rgba(24, 18, 10, 0.7);
  max-width: 620px;
  margin: 0 auto;
}
.quote-form-wrap {
  max-width: 880px;
  margin: 0 auto 100px;
  padding: 0 28px;
}
.form-card {
  background: var(--sand);
  padding: 56px;
  border-radius: 4px;
  border-top: 6px solid var(--rust);
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 22px;
}
.field { display: flex; flex-direction: column; }
.field.full { grid-column: 1 / -1; }
.field label {
  font-family: 'Fraunces', serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bark);
  margin-bottom: 8px;
}
.field input,
.field select,
.field textarea {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 3px;
  padding: 14px 16px;
  font-family: inherit;
  font-size: 15.5px;
  color: var(--ink);
  transition: border-color 0.2s;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--rust);
}
.field textarea { resize: vertical; min-height: 130px; }
.upload-zone {
  background: var(--cream);
  border: 2px dashed var(--moss);
  border-radius: 4px;
  padding: 36px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
}
.upload-zone:hover { background: rgba(61, 90, 42, 0.06); }
.upload-zone .up-icon {
  font-family: 'Fraunces', serif;
  font-size: 36px;
  color: var(--moss);
  font-weight: 900;
}
.upload-zone p {
  font-size: 15px;
  color: rgba(24, 18, 10, 0.7);
  margin-top: 8px;
}
.upload-zone .small {
  font-size: 12.5px;
  color: rgba(24, 18, 10, 0.5);
  margin-top: 4px;
}
.upload-zone input[type=file] { display: none; }
.preview-thumbs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 16px;
}
.preview-thumbs .thumb {
  width: 90px; height: 90px;
  background: var(--bark);
  color: var(--cream);
  font-size: 12px;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
  text-align: center;
}
.discount-note {
  background: var(--moss-deep);
  color: var(--cream);
  padding: 16px 22px;
  border-radius: 3px;
  margin: 24px 0;
  display: flex;
  gap: 14px;
  align-items: center;
  font-size: 15px;
}
.discount-note .star {
  color: var(--gold);
  font-size: 24px;
  font-family: 'Fraunces', serif;
  font-weight: 900;
  line-height: 1;
}
.submit-row {
  margin-top: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.email-note {
  font-size: 14px;
  color: rgba(24, 18, 10, 0.65);
}
.email-note a { color: var(--rust); font-weight: 600; }

/* ---------- FLOATING QUOTE LINK ---------- */
.floating-quote {
  position: fixed;
  bottom: 28px;
  right: 28px;
  background: var(--rust);
  color: var(--cream);
  padding: 14px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14.5px;
  letter-spacing: 0.04em;
  box-shadow: 0 12px 28px rgba(0,0,0,0.18);
  z-index: 60;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.2s;
}
.floating-quote:hover {
  background: var(--rust-deep);
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(0,0,0,0.22);
}
.floating-quote .arrow {
  font-family: 'Fraunces', serif;
  font-weight: 900;
}

/* ---------- FOOTER ---------- */
footer {
  background: var(--bark-deep);
  color: var(--sand);
  padding: 70px 28px 32px;
  margin-top: 60px;
}
.footer-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(241, 231, 212, 0.12);
}
footer h4 {
  font-family: 'Fraunces', serif;
  font-size: 18px;
  color: var(--gold);
  margin-bottom: 18px;
  font-weight: 700;
}
footer .brand-footer {
  font-family: 'Fraunces', serif;
  font-size: 30px;
  font-weight: 900;
  color: var(--cream);
  margin-bottom: 14px;
  line-height: 1;
}
footer .brand-footer em { font-style: italic; font-weight: 400; color: var(--gold); }
footer ul { list-style: none; }
footer ul li { margin-bottom: 10px; font-size: 14.5px; }
footer a { color: var(--sand); text-decoration: none; }
footer a:hover { color: var(--gold); }
.footer-bottom {
  max-width: 1240px;
  margin: 0 auto;
  padding-top: 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  font-size: 13px;
  color: rgba(241, 231, 212, 0.55);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 900px) {
  .hero, .two-col, .tax-banner, .area-inner, .leave-review {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .feature-grid, .review-grid { grid-template-columns: 1fr; }
  .svc-item, .svc-item:nth-child(even) {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .svc-item:nth-child(even) .svc-img { order: 0; }
  .field-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .form-card { padding: 32px 24px; }
  .truck-card { width: 320px; height: 220px; }
  .nav-links { gap: 14px; font-size: 13px; }
  .floating-quote { bottom: 16px; right: 16px; padding: 12px 18px; }
}

/* =========================================
   HERO SLIDESHOW — real Jarrett trucks
   Two slides, 30s visible each, 1s crossfade, 60s loop
   ========================================= */
.hero-slideshow {
  position: relative;
  width: 100%;
  height: 58vh;
  min-height: 360px;
  max-height: 620px;
  overflow: hidden;
  background: var(--bark-deep);
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  animation: heroFade 60s infinite;
}
/* slide 1 visible 0–30s, slide 2 visible 30–60s, 1s crossfade */
.hero-slide-1 {
  background-image: url('images/jarrett_truck_1.jpg');
  animation-delay: 0s;
}
.hero-slide-2 {
  background-image: url('images/jarrett_truck_2.jpg');
  animation-delay: 30s;
}
@keyframes heroFade {
  0%   { opacity: 0; }
  1.6% { opacity: 1; }   /* fade in over ~1s */
  50%  { opacity: 1; }   /* hold for 30s */
  51.6%{ opacity: 0; }   /* fade out over ~1s */
  100% { opacity: 0; }
}
.hero-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(26, 17, 9, 0) 50%,
    rgba(26, 17, 9, 0.55) 100%
  );
  display: flex;
  align-items: flex-end;
  justify-content: center;
  pointer-events: none;
}
.hero-slide-tag {
  font-family: 'Caveat', cursive;
  color: var(--cream);
  font-size: 22px;
  letter-spacing: 0.02em;
  padding: 28px 32px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.45);
}
@media (max-width: 900px) {
  .hero-slideshow { height: 38vh; min-height: 240px; }
  .hero-slide-tag { font-size: 18px; padding: 18px 20px; }
}

/* ---------- PHOTO NOTE (replaces upload zone) ---------- */
.photo-note {
  background: var(--cream);
  border: 1px solid var(--line);
  border-left: 4px solid var(--gold);
  border-radius: 3px;
  padding: 22px 26px;
  margin: 28px 0 4px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.photo-note-icon {
  font-size: 28px;
  line-height: 1;
  flex-shrink: 0;
  padding-top: 2px;
}
.photo-note h3 {
  font-size: 19px;
  margin-bottom: 4px;
}
.photo-note p {
  font-size: 15.5px;
  line-height: 1.5;
}

/* =========================================
   LOGO IMAGE in nav (replaces .brand text)
   ========================================= */
.brand {
  display: inline-flex;
  align-items: center;
  line-height: 0;            /* prevents stray descender gap */
  text-decoration: none;
}
.brand img {
  height: 128px;
  width: auto;
  display: block;
  /* multiply blends the logo's cream backdrop with our cream page
     background so it reads as transparent without hard edges */
  mix-blend-mode: multiply;
}
@media (max-width: 900px) {
  .brand img { height: 100px; }
}

/* =========================================
   PHONE NUMBER — bigger & more prominent everywhere
   ========================================= */
a[href^="tel:"] {
  font-size: 16.5px;          /* up from inherited 13px in topbar */
  font-weight: 700;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.topbar a[href^="tel:"] {
  font-size: 17px;            /* extra bump in the top banner */
}
@media (max-width: 900px) {
  a[href^="tel:"] { font-size: 15.5px; }
}

/* =========================================
   FOOTER credit line — "Website: Kennedeno & Associates"
   ========================================= */
.footer-credit {
  max-width: 1240px;
  margin: 0 auto;
  padding-top: 2px;
  font-size: 12.5px;
  color: rgba(241, 231, 212, 0.45);
  text-align: left;
}
.footer-credit a {
  color: rgba(241, 231, 212, 0.7);
  text-decoration: none;
  border-bottom: 1px dotted rgba(241, 231, 212, 0.4);
}
.footer-credit a:hover { color: var(--gold); border-bottom-color: var(--gold); }
