/* ============================================================
   THE MUTT MAVENS — brand stylesheet (v2, matches Canva mockup)
   Palette sampled directly from the approved Canva design.
   ============================================================ */

:root {
  --rose: #a36b6f;
  --rose-deep: #8a5559;
  --pink: #ffa4a4;
  --cream: #e3d9c4;
  --cream-2: #eee6d4;
  --rust: #7b3628;
  --sage: #7ea49c;
  --sage-deep: #678f87;
  --maroon: #772e33;
  --maroon-deep: #5c2226;
  --slate: #56777e;
  --gold-tan: #cebca0;
  --ink: #2b211b;
  --white: #ffffff;

  --shadow-sm: 0 2px 10px rgba(43, 33, 27, 0.12);
  --shadow-md: 0 12px 30px rgba(43, 33, 27, 0.16);
  --shadow-lg: 0 24px 55px rgba(43, 33, 27, 0.22);

  --radius-sm: 12px;
  --radius-md: 22px;
  --radius-lg: 32px;

  --container: 1180px;

  --font-display: "Baloo 2", "Fraunces", "Georgia", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.1;
  margin: 0 0 0.5em;
}

p { margin: 0 0 1em; }
a { color: inherit; text-decoration: none; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 32px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.98rem;
  font-family: var(--font-display);
  letter-spacing: 0.01em;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  white-space: nowrap;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.btn-pink {
  background: linear-gradient(180deg, #ffb8b8 0%, var(--pink) 55%, #f18f8f 100%);
  color: var(--maroon-deep);
  box-shadow: var(--shadow-sm), inset 0 1px 0 rgba(255,255,255,0.6);
}
.btn-pink:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-sage {
  background: linear-gradient(180deg, #9bc0b8 0%, var(--sage) 60%, var(--sage-deep) 100%);
  color: var(--ink);
  box-shadow: var(--shadow-sm);
}
.btn-sage:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline {
  background: transparent;
  border-color: currentColor;
  text-decoration: none;
}
.btn-outline:hover { transform: translateY(-2px); }
.btn-block { width: 100%; }

.link-underline {
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 700;
}

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ---------- Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--rose);
  padding: 18px 0;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.nav .btn-pink { position: relative; right: -50px; }
@media (max-width: 860px) { .nav .btn-pink { right: 0; } }
.brand-tag {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.1rem;
  line-height: 1.15;
  color: var(--pink);
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.nav-links a {
  padding: 8px 16px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--cream-2);
  border-bottom: 2px dotted transparent;
  transition: background 0.15s ease, color 0.15s ease;
}
.nav-links a:hover { background: rgba(255,255,255,0.12); border-bottom-color: var(--pink); }

.nav-toggle {
  display: none;
  border: none;
  background: none;
  font-size: 1.6rem;
  cursor: pointer;
  color: var(--cream-2);
}

@media (max-width: 880px) {
  .nav-links {
    order: 3;
    width: 100%;
    justify-content: center;
    display: none;
  }
  .nav-links.open { display: flex; flex-wrap: wrap; }
  .nav-toggle { display: inline-block; }
}

/* ---------- Sections ---------- */
.section { padding: 84px 0; position: relative; overflow: hidden; }
.bg-rose { background: var(--rose); color: var(--cream-2); }
.bg-rose h2, .bg-rose h3 { color: var(--pink); }
.bg-cream { background: var(--cream); color: var(--ink); }
.bg-sage { background: var(--sage); color: var(--ink); }
.bg-maroon { background: var(--maroon); color: var(--cream-2); }
.bg-maroon h2 { color: var(--pink); }

.eyebrow-heading {
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  font-weight: 800;
  text-transform: uppercase;
}

/* ---------- Hero ---------- */
.hero { background: var(--rose); padding-top: 18px; padding-bottom: 36px; }

.hero-grid { position: relative; }
@media (min-width: 861px) { .hero-grid { min-height: 700px; } }

/* -- two-lobe hero photo (dome + arch, matching the Canva mockup), logo + tagline anchored to its bottom -- */
.hero-photo-block { position: relative; max-width: 580px; margin: 0 auto; text-align: center; }

.hero-photo-lobes { position: relative; aspect-ratio: 660 / 580; filter: drop-shadow(0 10px 18px rgba(0,0,0,0.22)); }
.lobe-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 46%; }
.lobe-top { clip-path: url(#lobeTopClip); }
.lobe-bottom { clip-path: url(#lobeBottomClip); }
.lobe-outline { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; }
.lobe-outline path { fill: none; stroke: #f3c9cf; stroke-width: 2; vector-effect: non-scaling-stroke; }

.hero-wordmark-lg {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 190%;
  max-width: min(910px, 92vw);
  margin: -32% 0 0;
  display: block;
  filter: drop-shadow(0 6px 14px rgba(0,0,0,0.25));
}

.hero-tagline {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: inline-block;
  text-align: center;
  white-space: nowrap;
  margin: -10px 0 0;
  padding: 8px 24px;
  background: var(--cream-2);
  border-radius: 4px;
  box-shadow: var(--shadow-sm);
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--ink);
  font-size: clamp(0.85rem, 4.2vw, 1.8rem);
  letter-spacing: 0.01em;
}

@media (max-width: 560px) {
  .hero-photo-block { max-width: 380px; }
  .hero-wordmark-lg { width: 175%; max-width: min(520px, 92vw); margin-top: -30%; }
  .hero-tagline { padding: 6px 14px; }
}

/* -- megaphone + meet & greet, pinned to the far right, pointing back up to the nav button -- */
.hero-side { position: absolute; top: 113px; right: -54px; z-index: 3; }
@media (max-width: 860px) {
  .hero-side { position: static; margin: 24px auto 0; display: flex; justify-content: center; }
}

.hero-cta-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  max-width: 260px;
  margin: 0 auto;
}
.cta-arrow {
  position: absolute;
  top: -170px;
  left: 50%;
  transform: translateX(calc(-50% - 10px));
  width: 24px;
  height: 170px;
  color: var(--cream);
  opacity: 0.85;
}
@media (max-width: 860px) { .cta-arrow { display: none; } }

.hero-cta-wrap .megaphone { width: 155px; }
.meet-greet-oval {
  margin-top: -4px;
  background: var(--cream);
  border-radius: 50% / 40%;
  padding: 26px 30px;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-cta-wrap .meet-greet {
  font-family: var(--font-display);
  font-weight: 700;
  text-align: center;
  color: var(--sage-deep);
  font-size: 1.4rem;
  line-height: 1.25;
  text-decoration: underline;
}
.hero-cta-wrap .meet-greet:hover { color: var(--maroon); }

/* ---------- About / intro ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 50px;
  align-items: center;
}
@media (max-width: 900px) { .about-grid { grid-template-columns: 1fr; } }
.about-grid > * { min-width: 0; }

.about-photo-wrap { position: relative; }
.about-photo-wrap .about-photo {
  border-radius: 50%;
  aspect-ratio: 0.85/1;
  object-fit: cover;
  box-shadow: var(--shadow-md);
  border: 6px solid var(--white);
}
.about-bubble {
  position: absolute;
  background: var(--cream);
  border: 2px dotted var(--rust);
  border-radius: 999px;
  padding: 14px 22px;
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--slate);
  text-align: center;
  font-size: 1rem;
  line-height: 1.2;
}
.about-bubble.b1 { left: -8%; top: 58%; }
.about-bubble.b2 { left: 4%; top: 74%; }
.about-dog-icon { position: absolute; left: -16%; top: 28%; width: 150px; }
.about-paws { position: absolute; left: 8%; top: 88%; width: 130px; }
@media (max-width: 640px) {
  .about-dog-icon { width: 100px; left: -8%; }
  .about-paws { width: 90px; left: 10%; }
}

.furry-heading { max-width: 480px; margin: 0 auto 18px; width: 100%; height: auto; }
.about-copy { text-align: center; }
.about-copy b { color: var(--rust); }

/* ---------- Services & Pricing ---------- */
.services-title { margin-bottom: 30px; }

.services-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}
@media (max-width: 960px) {
  .services-row { flex-direction: column; align-items: center; gap: 40px; }
}

.services-row .grid-3 { flex: 1; min-width: 0; max-width: 800px; }

.request-badge {
  text-align: center;
  position: relative;
  flex-shrink: 0;
  width: 200px;
  padding-top: 6px;
}
@media (max-width: 960px) { .request-badge { margin: 0 auto; } }
.request-badge .pill {
  display: block;
  position: relative;
  z-index: 2;
  margin: 0 auto;
  background: var(--cream);
  border-radius: 999px;
  padding: 18px 10px;
  width: 150px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.55rem;
  color: var(--pink);
  text-decoration: underline;
  box-shadow: var(--shadow-sm);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.request-badge .pill:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.request-badge .badge-connector {
  display: block;
  width: 20px;
  height: 150px;
  margin: 4px auto 0;
  color: var(--maroon-deep);
  opacity: 0.85;
}
.request-badge .click-here {
  display: block;
  margin-top: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--pink);
  text-decoration: underline;
  font-size: 1.6rem;
}

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 960px) { .grid-3 { grid-template-columns: 1fr; width: 100%; } }

.price-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: var(--radius-md);
  padding: 30px 26px;
  color: var(--white);
  box-shadow: var(--shadow-md);
  border: 3px solid var(--gold-tan);
  text-align: center;
}
.price-card h3 {
  font-size: 1.7rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 4px;
}
.price-icon-img { width: 66px; margin: 10px auto 16px; display: block; }
.card-maroon .price-icon-img { width: 92px; margin: 18px auto 20px; }
.card-rose .price-icon-img { margin: 18px auto 20px; }
.price-line { font-size: 1.05rem; font-weight: 600; margin: 10px 0; }
.price-fine { margin-top: 16px; font-size: 0.82rem; font-weight: 400; opacity: 0.92; }
.price-fine div { margin-bottom: 4px; }
.card-maroon { background: var(--maroon); }
.card-slate { background: var(--slate); }
.card-rose { background: var(--rose); }

.pricing-note {
  text-align: center;
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px dashed rgba(43,33,27,0.3);
  font-size: clamp(0.6rem, 1.3vw, 0.95rem);
  white-space: nowrap;
}
@media (max-width: 900px) {
  .pricing-note { white-space: normal; font-size: 0.85rem; }
}
.pricing-note a { color: var(--ink); }

/* ---------- Fans / testimonials ---------- */
.fans-head-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 42px;
  flex-wrap: wrap;
  gap: 24px;
}
.socials-badge { display: flex; align-items: center; gap: 18px; }
.socials-badge .pup-badge {
  background: var(--rose);
  color: var(--white);
  border: 2px dotted var(--rust);
  border-radius: 999px;
  padding: 14px 24px;
  font-family: var(--font-display);
  font-weight: 800;
  text-align: center;
  font-size: 0.95rem;
  line-height: 1.25;
}
.social-icons { display: flex; gap: 10px; }
.social-icons a {
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-sm);
  background: var(--white);
  transition: transform 0.15s ease;
}
.social-icons a:hover { transform: translateY(-3px); }
.social-icons svg { width: 24px; height: 24px; }

.testimonial-card { text-align: center; display: flex; flex-direction: column; height: 100%; }
.testimonial-photo { border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-md); margin-bottom: -46px; position: relative; z-index: 1; flex-shrink: 0; }
.testimonial-photo img { width: 100%; aspect-ratio: 3/4; object-fit: cover; }
.testimonial-bubble {
  position: relative;
  z-index: 2;
  margin: 0 14px;
  border-radius: var(--radius-md);
  padding: 26px 22px 40px;
  color: var(--white);
  font-size: 0.95rem;
  box-shadow: var(--shadow-sm);
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.testimonial-bubble .who { display: block; margin-top: auto; padding-top: 12px; font-family: var(--font-display); font-weight: 800; }
.bubble-slate { background: var(--slate); }
.bubble-maroon { background: var(--maroon); }
.bubble-gold { background: var(--gold-tan); color: var(--ink); }

/* ---------- Request to Book (dedicated section) ---------- */
.book-heading {
  text-align: center;
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 10px;
}
.book-stage { position: relative; }
@media (min-width: 901px) { .book-stage { min-height: 570px; } }

.book-note { font-size: 0.92rem; line-height: 1.45; max-width: 260px; text-shadow: 0 2px 6px rgba(0,0,0,0.5); }
.note-topright {
  position: absolute;
  top: 0;
  right: 20px;
  z-index: 3;
  max-width: 420px;
  font-size: 0.85rem;
  text-align: right;
}
.note-bottomleft {
  position: absolute;
  left: 6px;
  top: 340px;
  max-width: 230px;
  text-align: left;
}
.note-center { margin: 22px auto 0; text-align: center; max-width: 320px; }

.book-center { max-width: 640px; margin: 0 auto; text-align: center; padding-top: 100px; }

@media (max-width: 900px) {
  .note-topright { position: static; max-width: 360px; margin: 0 auto 20px; text-align: center; }
  .note-bottomleft { position: static; max-width: 360px; margin: 20px auto 0; text-align: center; }
  .book-center { padding-top: 0; }
}

.book-cta-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
  margin: 10px 0;
}
@media (max-width: 640px) {
  .book-cta-row { display: flex; flex-wrap: wrap; justify-content: center; }
}
.dog-bark-icon {
  width: 190px;
  flex-shrink: 0;
  justify-self: end;
  margin-top: -34px;
  position: relative;
  z-index: 2;
  transform: scale(3);
  transform-origin: 100% 50%;
}
@media (max-width: 640px) {
  .dog-bark-icon { width: 130px; margin-top: -14px; justify-self: unset; transform: none; }
}
.click-pill {
  background: var(--sage);
  border-radius: 999px;
  padding: 30px 52px;
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: var(--shadow-md);
  transition: transform 0.15s ease;
  justify-self: center;
}
@media (max-width: 640px) { .click-pill { justify-self: unset; } }
.click-pill:hover { transform: translateY(-2px); }
.click-pill .link-circle {
  width: 74px; height: 74px; border-radius: 50%;
  background: var(--white); color: var(--slate);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.click-pill .link-circle svg { width: 34px; height: 34px; }
.click-pill span:last-child {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.1rem;
  color: var(--ink);
  text-decoration: underline;
  line-height: 1.15;
}

.speech-bubbles { display: flex; align-items: flex-end; gap: 6px; justify-self: start; }
.bubble-dot { display: block; border-radius: 50%; background: var(--cream); border: 2px solid var(--pink); }
.bubble-dot.d1 { width: 10px; height: 10px; }
.bubble-dot.d2 { width: 16px; height: 16px; }
.bubble-dot.d3 { width: 22px; height: 22px; }
@media (max-width: 640px) { .speech-bubbles { display: none; } }

.book-waitbadge-wrap { text-align: center; margin: 26px auto 0; }
.waitbadge-icon { width: 90px; margin: 0 auto 6px; display: block; }
.waitbadge {
  display: inline-block;
  background: var(--cream);
  border: 2px dotted var(--pink);
  border-radius: 999px / 50%;
  padding: 16px 30px;
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--pink);
  text-align: center;
  font-size: 0.95rem;
  line-height: 1.3;
}

.cowboy-cutout-wrap { position: absolute; top: 45px; right: 0; z-index: 1; text-align: center; }
.cowboy-cutout-wrap img {
  max-width: 320px;
  width: 100%;
  margin: 0 auto;
  transform: scaleX(-1);
  display: block;
}
@media (max-width: 900px) {
  .cowboy-cutout-wrap { position: static; margin-top: 30px; }
  .cowboy-cutout-wrap img { max-width: 260px; }
}

/* ---------- Join our team ---------- */
.hook-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 30px 0 40px;
  padding: 24px 0;
  border-top: 1px dashed rgba(43,33,27,0.35);
  border-bottom: 1px dashed rgba(43,33,27,0.35);
}
@media (max-width: 760px) { .hook-row { grid-template-columns: 1fr; } }
.hook-row div {
  font-family: var(--font-display);
  font-weight: 800;
  text-align: center;
  font-size: 1.05rem;
}

.join-grid {
  display: grid;
  grid-template-columns: auto 1fr 1fr 1fr;
  gap: 22px;
  align-items: start;
}
@media (max-width: 1080px) { .join-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .join-grid { grid-template-columns: 1fr; } }

.apply-badge-wrap { text-align: center; }
.apply-badge-wrap .running-dog { width: 130px; margin: 0 auto; }
.apply-badge {
  display: block;
  margin: -10px auto 0;
  background: var(--cream-2);
  border: 2px dotted var(--maroon);
  border-radius: 999px;
  padding: 20px 18px;
  width: 170px;
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--maroon);
  text-align: center;
  font-size: 1.05rem;
  line-height: 1.25;
  text-decoration: underline;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  box-shadow: var(--shadow-sm);
}
.apply-badge:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.apply-connector { width: 20px; height: 90px; margin: 4px auto 0; color: var(--maroon); }
.apply-connector svg { width: 100%; height: 100%; display: block; }
.apply-here-link {
  display: block;
  margin-top: 4px;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--sage-deep);
  font-size: 1.2rem;
  text-decoration: underline;
}
.join-photo { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); grid-column: span 1; }
.join-photo img { width: 100%; height: 100%; object-fit: cover; }

.join-card {
  background: var(--maroon);
  color: var(--cream-2);
  border-radius: var(--radius-md);
  padding: 26px 24px;
  border: 3px solid var(--gold-tan);
}
.join-card h4 { color: var(--white); text-transform: uppercase; font-size: 1.05rem; text-align:center; }
.join-card ul { margin: 0; padding-left: 18px; font-size: 0.92rem; }
.join-card li { margin-bottom: 12px; }

.requirements { margin-top: 34px; }
.requirements h4 { text-transform: uppercase; font-size: 1.05rem; }
.requirements ul { padding-left: 20px; }
.requirements li { margin-bottom: 8px; }

/* ---------- FAQ ---------- */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 30px;
}
@media (max-width: 760px) { .faq-grid { grid-template-columns: 1fr; } }
.faq-bubble {
  background: var(--slate);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  text-align: center;
}
.faq-bubble h3 { font-size: 1.1rem; color: var(--white); font-family: var(--font-body); font-weight: 700; }
.faq-bubble p { font-size: 0.94rem; margin: 0; opacity: 0.95; }
.faq-bubble.center { grid-column: 1 / -1; max-width: 640px; margin: 0 auto; }

.policies-link { text-align: center; }
.policies-link a {
  font-family: var(--font-display);
  font-weight: 800;
  text-decoration: underline;
  font-size: 1.05rem;
}

/* ---------- About Us (second) ---------- */
.aboutus-section { overflow: visible; }
.aboutus-row {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 50px;
  align-items: center;
}
@media (max-width: 900px) { .aboutus-row { grid-template-columns: 1fr; } }
.aboutus-copy { max-width: 760px; }
.aboutus-photo-wrap { text-align: right; margin-right: -70px; }
@media (max-width: 900px) { .aboutus-photo-wrap { margin-right: 0; } }
.aboutus-photo {
  width: 100%;
  max-width: 440px;
  border-radius: var(--radius-md);
  object-fit: cover;
  box-shadow: var(--shadow-md);
  border: 6px solid var(--white);
}
@media (max-width: 900px) { .aboutus-photo-wrap { margin-top: 30px; text-align: center; } }
.aboutus-inline-clip {
  display: inline-flex;
  align-items: flex-end;
  gap: 2px;
  vertical-align: middle;
  margin: 0 3px 0 4px;
}
.aboutus-inline-clip img { height: 2.5em; width: auto; }
.bang { font-family: var(--font-display); font-weight: 900; font-size: 1.9em; color: var(--cream-2); vertical-align: middle; }

/* ---------- Final CTA ---------- */
.final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.final-cta h2 {
  font-size: clamp(0.55rem, 2.6vw, 1.9rem);
  max-width: none;
  margin: 0;
  white-space: nowrap;
  line-height: 1.15;
}

/* ---------- Contact / footer ---------- */
.contact-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.contact-copy { flex: 1 1 300px; max-width: 370px; }
.contact-copy h2 { color: var(--maroon); }
.contact-copy a { font-weight: 700; text-decoration: underline; }
.contact-logo {
  flex: 0 1 720px;
  width: 100%;
  max-width: 720px;
  margin-right: 0;
}
@media (max-width: 900px) {
  .contact-logo { margin: 0 auto; max-width: 340px; }
}
.footer-bottom-row {
  max-width: var(--container);
  margin: 0 auto;
  padding: 24px 28px 10px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
}
.footer-bottom-spacer { flex: 1 1 300px; max-width: 370px; }
.footer-bottom {
  flex: 0 1 720px;
  max-width: 720px;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(43,33,27,0.6);
}
@media (max-width: 900px) {
  .footer-bottom-row { flex-direction: column; padding-top: 12px; gap: 4px; }
  .footer-bottom-spacer { display: none; }
  .footer-bottom { max-width: none; }
}

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in-view { opacity: 1; transform: translateY(0); }
