:root {
  --burgundy: #5D001D;
  --burgundy-dark: #3f0014;
  --gold: #B59040;
  --gold-light: #d9bd7a;
  --gold-bright: #E7C05B;
  --gold-cta: linear-gradient(135deg, #F2CE6A 0%, #D9A93F 55%, #C6942F 100%);
  --ivory: #FAF1EC;
  --text: #2A1015;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  background: var(--ivory);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

/* Images never overflow their container (mobile safety net; no effect on the
   current desktop layout since nothing overflows there today) */
img { max-width: 100%; }

/* Keep anchored scrolling clear of the sticky header */
html { scroll-padding-top: 84px; }

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

h1, h2, h3, .brand {
  font-family: 'Playfair Display', serif;
}

a { text-decoration: none; color: inherit; }

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250,241,236,0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(93,0,29,0.1);
  transition: box-shadow 0.25s ease;
}

header.scrolled { box-shadow: 0 4px 24px rgba(93,0,29,0.1); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}

.brand {
  display: flex;
  align-items: center;
}

.brand img {
  height: 46px;
  width: auto;
  display: block;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 28px;
}

nav a {
  position: relative;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text);
  transition: color 0.2s;
  padding-bottom: 4px;
}

nav a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.25s ease;
}

nav a:hover, nav a.active { color: var(--burgundy); }
nav a:hover::after, nav a.active::after { width: 100%; }

.nav-cta {
  background: var(--burgundy);
  color: var(--ivory) !important;
  padding: 10px 22px;
  border-radius: 30px;
  font-weight: 600;
  box-shadow: 0 6px 18px rgba(93,0,29,0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s;
}

.nav-cta:hover { background: var(--burgundy-dark); transform: translateY(-2px); box-shadow: 0 10px 22px rgba(93,0,29,0.32); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--burgundy);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Hero */
.hero {
  position: relative;
  background: linear-gradient(160deg, var(--burgundy) 0%, #7a0026 55%, var(--burgundy-dark) 100%);
  color: var(--ivory);
  padding: 110px 24px 100px;
  text-align: center;
  overflow: hidden;
  isolation: isolate;
}

.hero::before, .hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  z-index: -1;
}

.hero::before {
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(181,144,64,0.35), transparent 70%);
  top: -160px; right: -100px;
}

.hero::after {
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(255,255,255,0.08), transparent 70%);
  bottom: -140px; left: -80px;
}

.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 600;
  margin-bottom: 18px;
}

.hero h1 {
  font-size: 3.2rem;
  margin-bottom: 18px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.2);
}

.hero p {
  max-width: 620px;
  margin: 0 auto 32px;
  font-size: 1.1rem;
  color: #f2dede;
}

.hero-ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 30px;
  font-weight: 600;
  transition: transform 0.15s, background 0.2s;
}

.btn-gold {
  background: var(--gold-cta);
  color: #4a0016 !important;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(231,192,91,0.35), 0 2px 6px rgba(0,0,0,0.18);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(231,192,91,0.5), 0 3px 8px rgba(0,0,0,0.2);
  filter: brightness(1.04);
}

.btn-outline {
  border: 2px solid var(--ivory);
  color: var(--ivory) !important;
}

.btn-outline:hover { background: rgba(255,255,255,0.1); }

/* Stats */
.stats {
  position: relative;
  background: linear-gradient(135deg, var(--burgundy) 0%, #7a0026 55%, var(--burgundy-dark) 100%);
  padding: 60px 24px;
  overflow: hidden;
  isolation: isolate;
}

/* soft gold glow to lift the burgundy band */
.stats::before {
  content: '';
  position: absolute;
  top: -120px; right: -80px;
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(181,144,64,0.28), transparent 70%);
  z-index: -1;
}

.stats-eyebrow {
  display: block;
  text-align: center;
  color: var(--gold-light);
  font-size: 0.78rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 12px;
}

.stats-heading {
  text-align: center;
  color: var(--ivory);
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 6px;
}

.stats-heading span { color: var(--gold-bright); }

.stats-divider {
  width: 64px; height: 3px;
  margin: 14px auto 40px;
  background: linear-gradient(90deg, transparent, var(--gold-bright), transparent);
  border-radius: 3px;
}

.stats .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.stat {
  padding: 8px 12px;
  border-left: 1px solid rgba(255,255,255,0.14);
}

.stat:first-child { border-left: none; }

.stat h3 {
  font-size: clamp(2rem, 4vw, 2.9rem);
  color: var(--gold-bright);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.5px;
}

.stat-star { font-size: 0.62em; margin-left: 3px; vertical-align: 0.12em; }

.stat p {
  font-size: 0.92rem;
  color: #f2dede;
  font-weight: 500;
  margin-top: 6px;
}

@media (max-width: 680px) {
  .stats .container { grid-template-columns: repeat(2, 1fr); gap: 30px 16px; }
  .stat, .stat:nth-child(odd) { border-left: none; }
}

/* Trust badge (Times Group logo) */
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.95);
  border-radius: 14px;
  padding: 10px 18px;
  box-shadow: 0 8px 24px rgba(93,0,29,0.15);
  margin-top: 28px;
}

.trust-badge img { height: 28px; width: auto; display: block; }
.trust-badge span { font-size: 0.8rem; color: var(--text); font-weight: 500; }

/* Sections */
section.page-section {
  padding: 80px 24px;
}

.section-title {
  text-align: center;
  margin-bottom: 12px;
  font-size: 2.2rem;
  color: var(--burgundy);
}

.section-sub {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 48px;
  color: #6b4a52;
}

/* Cards grid */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
}

.card {
  background: #fff;
  border-radius: 16px;
  padding: 36px 24px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(93,0,29,0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(93,0,29,0.14);
}

.card-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--burgundy), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-icon svg { width: 26px; height: 26px; stroke: var(--ivory); fill: none; }

.card h3 { color: var(--burgundy); margin-bottom: 10px; }
.card p { color: #6b4a52; font-size: 0.95rem; }

/* Testimonials */
.testimonial-card {
  background: #fff;
  border-radius: 16px;
  padding: 28px 26px;
  box-shadow: 0 4px 20px rgba(93,0,29,0.06);
  position: relative;
}

.testimonial-stars { color: var(--gold); letter-spacing: 2px; margin-bottom: 12px; font-size: 0.95rem; }
.testimonial-card p.quote { color: var(--text); font-size: 0.95rem; margin-bottom: 16px; font-style: italic; }
.testimonial-name { font-weight: 600; color: var(--burgundy); font-size: 0.9rem; }
.testimonial-source { color: #a98a90; font-size: 0.8rem; }

/* Overall Google rating badge above the reviews wall */
.reviews-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 0 auto 40px;
  flex-wrap: wrap;
}

.reviews-rating .rr-score { font-family: 'Playfair Display', serif; font-size: 2.4rem; font-weight: 700; color: var(--burgundy); line-height: 1; }
.reviews-rating .rr-stars { color: var(--gold); letter-spacing: 2px; font-size: 1.1rem; }
.reviews-rating .rr-sub { color: #6b4a52; font-size: 0.85rem; }

/* Uniform 2×3 grid of review cards */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 16px;
  padding: 26px 24px;
  box-shadow: 0 4px 20px rgba(93,0,29,0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.review-card:hover { transform: translateY(-4px); box-shadow: 0 14px 28px rgba(93,0,29,0.12); }

.review-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.review-top .testimonial-stars { margin-bottom: 0; }

.review-service {
  background: rgba(181,144,64,0.12);
  color: var(--burgundy);
  border: 1px solid rgba(181,144,64,0.35);
  border-radius: 20px;
  padding: 4px 12px;
  font-size: 0.72rem;
  font-weight: 600;
  white-space: nowrap;
}

.review-card p.quote {
  font-style: normal;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 6px;
}

.review-more {
  align-self: flex-start;
  background: none;
  border: none;
  padding: 0;
  margin-bottom: 16px;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold);
}

.review-more:hover { color: var(--burgundy); text-decoration: underline; }
.review-card .tc-foot { margin-top: auto; }

/* Full-review pop-up */
.review-modal { position: fixed; inset: 0; z-index: 500; display: flex; align-items: center; justify-content: center; padding: 24px; }
.review-modal[hidden] { display: none; }

.review-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(42,16,21,0.6);
  backdrop-filter: blur(3px);
}

.review-modal-box {
  position: relative;
  background: #fff;
  border-radius: 16px;
  padding: 32px 28px 28px;
  max-width: 560px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 24px 60px rgba(0,0,0,0.3);
}

.review-modal-box p.quote { font-style: normal; line-height: 1.7; color: var(--text); font-size: 0.95rem; margin: 4px 0 18px; }

.review-modal-close {
  position: absolute;
  top: 12px; right: 14px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.7rem;
  line-height: 1;
  color: #a98a90;
  padding: 4px;
}

.review-modal-close:hover { color: var(--burgundy); }

.tc-foot { display: flex; align-items: center; gap: 12px; margin-top: 4px; }

.tc-avatar {
  width: 40px; height: 40px;
  flex-shrink: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--burgundy), var(--gold));
  color: var(--ivory);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.05rem;
}

.tc-source-row { display: flex; align-items: center; gap: 5px; }
.tc-source-row svg { width: 13px; height: 13px; }

@media (max-width: 900px) { .reviews-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .reviews-grid { grid-template-columns: 1fr; gap: 18px; } }

/* ===== Photo & video slideshow (home) ===== */
.carousel {
  position: relative;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 56px;
}

.carousel-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 8px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.carousel-track::-webkit-scrollbar { display: none; }

.carousel-slide {
  position: relative;
  flex: 0 0 auto;
  width: min(76vw, 340px);
  height: 300px;
  border-radius: 12px;
  overflow: hidden;
  scroll-snap-align: center;
  box-shadow: 0 4px 20px rgba(93,0,29,0.08);
  background: #2A1015;
  margin: 0;
}

.carousel-slide img,
.carousel-slide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.carousel-slide video { object-fit: contain; }

.carousel-caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 28px 14px 12px;
  background: linear-gradient(to top, rgba(42,16,21,0.85), transparent);
  color: var(--ivory);
  font-size: 0.85rem;
  font-weight: 600;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 42px; height: 42px;
  border-radius: 50%;
  border: none;
  background: var(--burgundy);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 16px rgba(93,0,29,0.3);
  transition: background 0.2s ease, transform 0.18s ease;
}

.carousel-arrow svg { width: 20px; height: 20px; stroke: var(--ivory); fill: none; }
.carousel-arrow:hover { background: var(--burgundy-dark); transform: translateY(-50%) scale(1.06); }
.carousel-prev { left: 6px; }
.carousel-next { right: 6px; }

@media (max-width: 600px) {
  .carousel { padding: 0 16px; }
  .carousel-arrow { display: none; } /* swipe on touch screens */
  .carousel-slide { height: 260px; }
}

/* Team */
.team-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(93,0,29,0.06);
  text-align: center;
  padding-bottom: 20px;
}

.team-photo {
  height: 220px;
  background: linear-gradient(135deg, var(--burgundy), var(--gold));
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%; /* keep faces in frame when the portrait is cropped */
  display: block;
}

.team-card h3 { margin-top: 16px; color: var(--burgundy); }
.team-card .role { color: var(--gold); font-weight: 600; font-size: 0.9rem; margin-bottom: 6px; }
.team-card p { font-size: 0.9rem; color: #6b4a52; padding: 0 16px; }

.team-avatar {
  width: 96px; height: 96px;
  margin: 28px auto 0;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--burgundy), var(--gold));
  display: flex; align-items: center; justify-content: center;
  color: var(--ivory);
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
}

/* ===== Inner-page hero (About/Offers/Gallery/Contact) ===== */
.hero-split.page-hero { padding-top: 20px; align-items: center; }
.hero-split.page-hero .hero-media img { height: 400px; object-position: center 30%; }
.hero-split.page-hero h1 { font-size: 2.4rem; }

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.gallery-item {
  height: 220px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(93,0,29,0.15), rgba(181,144,64,0.25));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--burgundy);
  font-size: 0.85rem;
  font-weight: 600;
  text-align: center;
  padding: 12px;
}

.gallery-photo {
  position: relative;
  height: 260px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(93,0,29,0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.gallery-photo:hover { transform: translateY(-4px); box-shadow: 0 14px 28px rgba(93,0,29,0.16); }
.gallery-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }

.gallery-caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 28px 14px 12px;
  background: linear-gradient(to top, rgba(42,16,21,0.85), transparent);
  color: var(--ivory);
  font-size: 0.85rem;
  font-weight: 600;
}

/* Offers */
.offer-card {
  background: var(--burgundy);
  color: var(--ivory);
  border-radius: 16px;
  padding: 36px 28px;
}

.offer-card h3 { color: var(--gold); margin-bottom: 10px; }
.offer-card p { color: #f2dede; font-size: 0.95rem; }

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.contact-info h3 { color: var(--burgundy); margin-bottom: 6px; }
.contact-info p { margin-bottom: 22px; color: #6b4a52; }

.map-placeholder {
  background: #fff;
  border-radius: 16px;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6b4a52;
  box-shadow: 0 4px 20px rgba(93,0,29,0.06);
}

.map-embed {
  width: 100%;
  height: 320px;
  border: 0;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(93,0,29,0.06);
}

/* CTA band */
.cta-band {
  background: var(--gold);
  text-align: center;
  padding: 64px 24px;
}

.cta-band h2 { color: var(--burgundy); margin-bottom: 20px; font-size: 2rem; }

/* Footer */
footer {
  background: var(--burgundy);
  color: var(--ivory);
  padding: 48px 24px 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto 32px;
}

.footer-grid h4 { color: var(--gold); margin-bottom: 14px; font-size: 1rem; }
.footer-grid p, .footer-grid a { color: #e8c9cf; font-size: 0.9rem; display: block; margin-bottom: 8px; }

.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 20px;
  font-size: 0.85rem;
  color: #cfa2ab;
}

/* ===== Floating WhatsApp click-to-chat button (all screen sizes) ===== */
.wa-float {
  position: fixed;
  right: 20px;
  bottom: 24px;
  z-index: 300;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(37,211,102,0.45), 0 3px 8px rgba(0,0,0,0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.wa-float svg {
  width: 30px;
  height: 30px;
  fill: #fff;
  display: block;
}

.wa-float:hover {
  transform: translateY(-3px) scale(1.06);
  box-shadow: 0 10px 26px rgba(37,211,102,0.55), 0 4px 10px rgba(0,0,0,0.2);
}

/* gentle pulse to draw the eye without being annoying */
.wa-float::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(37,211,102,0.55);
  animation: wa-pulse 2.6s ease-out infinite;
  pointer-events: none;
}

@keyframes wa-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(37,211,102,0.45); }
  60%  { box-shadow: 0 0 0 14px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

@media (prefers-reduced-motion: reduce) {
  .wa-float::after { animation: none; }
}

/* Sticky mobile CTA bar */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 200;
  background: var(--ivory);
  border-top: 1px solid rgba(93,0,29,0.12);
  box-shadow: 0 -6px 20px rgba(93,0,29,0.1);
  padding: 10px 16px;
  gap: 10px;
}

.mobile-cta-bar a {
  flex: 1;
  text-align: center;
  padding: 12px 10px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.9rem;
}

.mobile-cta-bar .mcb-book { background: var(--burgundy); color: var(--ivory); }
.mobile-cta-bar .mcb-call { background: var(--gold); color: var(--burgundy); }
.mobile-cta-bar .mcb-wa { background: #fff; color: var(--burgundy); border: 1px solid rgba(93,0,29,0.2); }

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .brand img { height: 34px; }

  nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--ivory);
    border-bottom: 1px solid rgba(93,0,29,0.1);
    box-shadow: 0 12px 24px rgba(93,0,29,0.08);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  nav.open { max-height: 320px; }

  nav ul {
    flex-direction: column;
    gap: 0;
    padding: 8px 24px 16px;
  }

  nav ul li { border-top: 1px solid rgba(93,0,29,0.06); }
  nav a { display: block; padding: 14px 0; }
  nav a::after { display: none; }

  .nav-cta { display: none; }

  .hero { padding: 90px 20px 70px; }
  .hero h1 { font-size: 2.1rem; }
  .contact-grid { grid-template-columns: 1fr; }

  body { padding-bottom: 68px; }
  .mobile-cta-bar { display: flex; }

  /* keep the WhatsApp float clear of the sticky CTA bar */
  .wa-float { right: 14px; bottom: 82px; width: 52px; height: 52px; }
  .wa-float svg { width: 28px; height: 28px; }
}

/* ===== Hero split (photo + copy) ===== */
.hero-split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
  text-align: left;
  padding-top: 40px;
}

.hero-split .eyebrow { display: block; }

.hero-underline {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 140px;
  margin: 18px 0 22px;
}

.hero-underline::before, .hero-underline::after {
  content: '';
  flex: 1;
  height: 2px;
  background: var(--gold-light);
}

.hero-underline span { color: var(--gold-light); font-size: 0.9rem; }

.hero-media {
  position: relative;
}

/* Feather the hero photo into the burgundy background instead of a hard
   rounded-rectangle card — the image dissolves at its edges for a smooth blend. */
.hero-media img, .hero-media .img-ph {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center 28%;
  -webkit-mask-image: radial-gradient(ellipse 80% 84% at 55% 42%, #000 44%, rgba(0,0,0,0) 82%);
          mask-image: radial-gradient(ellipse 80% 84% at 55% 42%, #000 44%, rgba(0,0,0,0) 82%);
}

/* Placeholder for real photography - swap <div class="img-ph"> for an <img> once photos are ready */
.img-ph {
  background: linear-gradient(135deg, rgba(93,0,29,0.92), rgba(122,0,38,0.85) 45%, rgba(181,144,64,0.55));
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: rgba(250,241,236,0.85);
  font-size: 0.8rem;
  font-weight: 500;
  padding: 16px;
  line-height: 1.4;
}

.hero-ctas.left { justify-content: flex-start; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ivory) !important;
  font-weight: 600;
  padding: 14px 6px;
}

.btn-ghost .play-circle {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 2px solid var(--ivory);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s ease;
}

.btn-ghost:hover .play-circle { background: rgba(255,255,255,0.15); }
.btn-ghost svg { width: 14px; height: 14px; fill: var(--ivory); }

/* ===== Service cards with photo ===== */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}

.service-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(93,0,29,0.06);
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover { transform: translateY(-6px); box-shadow: 0 16px 32px rgba(93,0,29,0.14); }

.service-photo {
  position: relative;
  height: 190px;
}

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

.service-icon-badge {
  position: absolute;
  bottom: -22px;
  left: 50%;
  transform: translateX(-50%);
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--burgundy);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 16px rgba(93,0,29,0.3);
  border: 3px solid #fff;
}

.service-icon-badge svg { width: 20px; height: 20px; stroke: var(--ivory); fill: none; }

.service-card h3 { color: var(--burgundy); margin: 34px 0 8px; font-size: 1.2rem; }
.service-card p { color: #6b4a52; font-size: 0.88rem; padding: 0 18px 24px; }

.service-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  padding: 4px 18px 26px;
}

.service-list li {
  background: rgba(181,144,64,0.12);
  color: var(--burgundy);
  border: 1px solid rgba(181,144,64,0.35);
  border-radius: 20px;
  padding: 5px 13px;
  font-size: 0.78rem;
  font-weight: 500;
  transition: background 0.2s ease, color 0.2s ease;
}

.service-card:hover .service-list li { background: rgba(181,144,64,0.2); }

/* ===== Services page: spotlight creatives ===== */
.spotlight-list {
  display: flex;
  flex-direction: column;
  gap: 56px;
}

.spotlight-head {
  max-width: 720px;
  margin: 0 auto 20px;
  text-align: center;
}

.spotlight-head h3 {
  color: var(--burgundy);
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.spotlight-head p { color: #6b4a52; font-size: 0.95rem; }

.spotlight-item > a { display: block; }

.spotlight-item img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
  box-shadow: 0 8px 28px rgba(93,0,29,0.12);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.spotlight-item a:hover img {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(93,0,29,0.2);
}

/* ===== Services page: category tiles ===== */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.cat-tile {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 22px 16px;
  background: #fff;
  border: 1px solid rgba(181,144,64,0.35);
  border-radius: 14px;
  color: var(--burgundy);
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: 0 4px 16px rgba(93,0,29,0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.cat-tile:hover {
  background: var(--burgundy);
  color: var(--ivory);
  transform: translateY(-3px);
  box-shadow: 0 12px 26px rgba(93,0,29,0.18);
}

@media (max-width: 768px) {
  .cat-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .cat-tile { padding: 16px 12px; font-size: 0.88rem; }
  .spotlight-list { gap: 40px; }
  .spotlight-head h3 { font-size: 1.3rem; }
}

/* ===== Guide articles ===== */
.guide-article { max-width: 760px; margin: 0 auto; }

.guide-breadcrumb { font-size: 0.82rem; color: #a98a90; margin-bottom: 18px; }
.guide-breadcrumb a { color: var(--burgundy); font-weight: 500; }
.guide-breadcrumb a:hover { text-decoration: underline; }

.guide-article h1 { color: var(--burgundy); font-size: clamp(1.8rem, 3.4vw, 2.5rem); line-height: 1.2; margin-bottom: 14px; }
.guide-article h2 { color: var(--burgundy); font-size: 1.4rem; margin: 38px 0 12px; }
.guide-article p, .guide-article li { color: #4a3238; font-size: 0.97rem; line-height: 1.75; margin-bottom: 14px; }
.guide-article ul, .guide-article ol { padding-left: 22px; margin-bottom: 16px; }
.guide-article li { margin-bottom: 6px; }
.guide-article a { color: var(--burgundy); font-weight: 500; text-decoration: underline; text-decoration-color: rgba(181,144,64,0.5); }
.guide-article a:hover { text-decoration-color: var(--burgundy); }
.guide-article img.guide-visual { width: 100%; height: auto; border-radius: 14px; box-shadow: 0 8px 24px rgba(93,0,29,0.1); margin: 8px 0 20px; }

.guide-lead { font-size: 1.05rem !important; color: var(--text) !important; }

/* Quick-facts box — scannable summary for readers, snippets & AI answers */
.guide-facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1px;
  background: rgba(181,144,64,0.35);
  border: 1px solid rgba(181,144,64,0.35);
  border-radius: 14px;
  overflow: hidden;
  margin: 22px 0 26px;
}

.guide-facts > div { background: #fff; padding: 14px 16px; }
.guide-facts .gf-label { font-size: 0.72rem; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold); font-weight: 600; display: block; }
.guide-facts .gf-value { font-size: 0.95rem; color: var(--burgundy); font-weight: 600; }

.guide-article blockquote {
  border-left: 3px solid var(--gold);
  background: #fff;
  border-radius: 0 14px 14px 0;
  padding: 18px 22px;
  margin: 22px 0;
  box-shadow: 0 4px 16px rgba(93,0,29,0.06);
}

.guide-article blockquote p { font-style: italic; margin-bottom: 6px; }
.guide-article blockquote footer { font-size: 0.82rem; color: #a98a90; }

.guide-faq details {
  background: #fff;
  border: 1px solid rgba(181,144,64,0.3);
  border-radius: 12px;
  padding: 14px 18px;
  margin-bottom: 10px;
}

.guide-faq summary { cursor: pointer; font-weight: 600; color: var(--burgundy); font-size: 0.95rem; }
.guide-faq details p { margin: 10px 0 2px; }

.guide-cta {
  background: linear-gradient(120deg, var(--burgundy), var(--burgundy-dark));
  border-radius: 16px;
  padding: 28px;
  text-align: center;
  color: var(--ivory);
  margin: 34px 0 10px;
}

.guide-cta p { color: #f2dede !important; margin-bottom: 16px !important; }
.guide-cta .gc-title { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 700; color: var(--ivory); margin-bottom: 6px; }

.guide-related { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 14px; margin-top: 14px; }
.guide-related a {
  display: block;
  background: #fff;
  border: 1px solid rgba(181,144,64,0.3);
  border-radius: 12px;
  padding: 16px 18px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--burgundy);
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.guide-related a:hover { transform: translateY(-3px); box-shadow: 0 10px 22px rgba(93,0,29,0.12); }
.guide-related a span { display: block; font-weight: 400; font-size: 0.8rem; color: #6b4a52; margin-top: 4px; }

/* ===== Offer banner ===== */
.offer-banner {
  position: relative;
  background: linear-gradient(120deg, var(--burgundy), var(--burgundy-dark));
  border-radius: 20px;
  padding: 32px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  overflow: hidden;
  color: var(--ivory);
}

.offer-banner .offer-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  border: 2px solid var(--gold-light);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.offer-banner .offer-icon svg { width: 24px; height: 24px; stroke: var(--gold-light); fill: none; }

.offer-banner .offer-text { flex: 1; min-width: 220px; }
.offer-banner .offer-label { color: var(--gold-light); font-style: italic; font-size: 0.95rem; }
.offer-banner .offer-title { font-size: 1.4rem; font-weight: 700; margin: 4px 0; }
.offer-banner .offer-sub { color: #f2dede; font-size: 0.9rem; }

/* ===== Why choose us ===== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 28px 20px;
}

.why-item {
  text-align: center;
  padding: 24px 18px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(93,0,29,0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.why-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 30px rgba(93,0,29,0.12);
}

.why-icon {
  width: 56px; height: 56px;
  margin: 0 auto 16px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  background: rgba(181,144,64,0.08);
  display: flex; align-items: center; justify-content: center;
}

.why-icon svg { width: 24px; height: 24px; stroke: var(--burgundy); fill: none; }

.why-item h3 { color: var(--burgundy); font-size: 1rem; margin-bottom: 6px; }
.why-item p { color: #6b4a52; font-size: 0.85rem; }

/* ===== Testimonial split ===== */
.testimonial-split {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 0;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(93,0,29,0.08);
}

.testimonial-media img, .testimonial-media .img-ph { width: 100%; height: 100%; object-fit: cover; display: block; min-height: 280px; }

.testimonial-content { padding: 40px; }

/* ===== Pre-footer CTA band ===== */
.precta-band {
  background: var(--ivory);
  border-top: 1px solid rgba(93,0,29,0.1);
  border-bottom: 1px solid rgba(93,0,29,0.1);
  padding: 22px 24px;
}

.precta-band .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.precta-left { display: flex; align-items: center; gap: 16px; }

.precta-icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--burgundy);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.precta-icon svg { width: 20px; height: 20px; stroke: var(--ivory); fill: none; }
.precta-left p { color: #6b4a52; font-size: 0.9rem; line-height: 1.5; }
.precta-left strong { color: var(--burgundy); font-size: 1rem; }

/* ===== Footer v2 ===== */
.footer-logo { height: 54px; width: auto; margin-bottom: 16px; opacity: 0.95; }

.footer-social { display: flex; gap: 10px; margin-top: 6px; }

.footer-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s ease;
}

.footer-social a:hover { background: var(--gold); }
.footer-social svg { width: 16px; height: 16px; stroke: var(--ivory); fill: none; }

@media (max-width: 768px) {
  .hero-split { grid-template-columns: 1fr; text-align: center; padding-top: 40px; }
  .hero-split .hero-copy { order: 2; }
  .hero-split .hero-media { order: 1; }
  .hero-split .trust-badge { margin-left: auto; margin-right: auto; }
  .hero-underline { margin-left: auto; margin-right: auto; }
  .precta-band .container { flex-direction: column; text-align: center; }
  .testimonial-split { grid-template-columns: 1fr; }
  .testimonial-split .testimonial-media { display: none; }
  .offer-banner { text-align: center; justify-content: center; }
}

/* ===== Home hero — light, full-bleed photo feathered into the background ===== */
.hero-home {
  position: relative;
  background: linear-gradient(90deg, #FCF6F1 0%, #FAF1EC 42%, #F5E7DE 100%);
  overflow: hidden;
  isolation: isolate;
}

/* faint botanical glow behind the copy */
.hero-home::before {
  content: '';
  position: absolute;
  left: -70px; top: 50%;
  width: 360px; height: 360px;
  transform: translateY(-50%);
  background: radial-gradient(circle, rgba(181,144,64,0.10), transparent 68%);
  z-index: 0;
}

.hero-home-media {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 54%;
  z-index: 0;
}

.hero-home-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 66% 38%;
  /* dissolve the left edge of the photo into the cream background */
  -webkit-mask-image: linear-gradient(to right, rgba(0,0,0,0) 0%, #000 34%);
          mask-image: linear-gradient(to right, rgba(0,0,0,0) 0%, #000 34%);
}

.hero-home-inner {
  position: relative;
  z-index: 1;
  min-height: 580px;
  display: flex;
  align-items: center;
  padding: 72px 24px;
}

.hero-home-copy { max-width: 560px; }

.hero-home-copy h1 {
  color: var(--text);
  font-size: clamp(2rem, 3.6vw, 3rem);
  line-height: 1.15;
  font-weight: 700;
  margin-bottom: 6px;
}

.hero-home-copy h1 span { color: var(--burgundy); }

.hero-divider {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 330px;
  max-width: 78%;
  margin: 22px 0 24px;
}

.hero-divider::before, .hero-divider::after {
  content: '';
  flex: 1;
  height: 2px;
  background: var(--gold);
  opacity: 0.75;
}

.hero-divider .lotus { color: var(--gold); font-size: 1.15rem; line-height: 1; }

.hero-home-copy p {
  color: #6b5157;
  font-size: 1.05rem;
  max-width: 400px;
  margin-bottom: 34px;
}

.hero-home-ctas {
  display: flex;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
}

.btn-burgundy {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--burgundy);
  color: var(--ivory) !important;
  padding: 16px 30px;
  border-radius: 40px;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  box-shadow: 0 12px 28px rgba(93,0,29,0.26);
  transition: transform 0.18s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.btn-burgundy svg { width: 18px; height: 18px; stroke: currentColor; fill: none; }
.btn-burgundy:hover { background: var(--burgundy-dark); transform: translateY(-2px); box-shadow: 0 16px 32px rgba(93,0,29,0.32); }

.btn-watch {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--burgundy) !important;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.btn-watch .play-circle {
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 2px solid var(--burgundy);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s ease;
}

.btn-watch .play-circle svg { width: 14px; height: 14px; fill: var(--burgundy); margin-left: 2px; }
.btn-watch:hover .play-circle { background: rgba(93,0,29,0.08); }

/* highlighted hashtag in the hero copy */
.hero-home-copy p strong { color: var(--burgundy); font-weight: 600; white-space: nowrap; }

/* Instagram & YouTube icons next to the hero CTA */
.hero-social { display: inline-flex; align-items: center; gap: 12px; }

.hero-social-link {
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 2px solid var(--burgundy);
  display: inline-flex; align-items: center; justify-content: center;
  transition: background 0.2s ease, transform 0.18s ease;
}

.hero-social-link svg { width: 20px; height: 20px; stroke: var(--burgundy); fill: none; }
.hero-social-link:hover { background: rgba(93,0,29,0.08); transform: translateY(-2px); }

/* ===== Sub-page hero — same feathered full-bleed style as the home hero ===== */
.hero-home.hero-sub .hero-home-inner { min-height: 400px; padding: 48px 24px; }

.hero-home.hero-sub h1 { font-size: clamp(1.9rem, 3.2vw, 2.7rem); }

.hero-sub .eyebrow {
  color: var(--gold);
  margin-bottom: 10px;
}

.hero-sub .hero-divider { margin: 16px 0 18px; width: 260px; }

/* calendar icon on the header book button */
.nav-cta { display: inline-flex; align-items: center; gap: 8px; }
.nav-cta .cta-cal { width: 16px; height: 16px; stroke: currentColor; fill: none; }

@media (max-width: 860px) {
  .hero-home { display: flex; flex-direction: column; }

  .hero-home-media {
    position: relative;
    width: 100%;
    height: 300px;
  }

  .hero-home-media img {
    object-position: 66% 28%;
    -webkit-mask-image: linear-gradient(to bottom, #000 52%, rgba(0,0,0,0) 100%);
            mask-image: linear-gradient(to bottom, #000 52%, rgba(0,0,0,0) 100%);
  }

  .hero-home-inner {
    min-height: 0;
    padding: 6px 24px 56px;
  }

  .hero-home-copy { max-width: 100%; text-align: center; }
  .hero-divider { margin-left: auto; margin-right: auto; }
  .hero-home-copy p { margin-left: auto; margin-right: auto; }
  .hero-home-ctas { justify-content: center; gap: 18px; }
}

/* =========================================================================
   MOBILE VIEW  —  ~80% of traffic is mobile.
   Everything below lives inside max-width media queries, so the desktop /
   laptop layout above 768px stays exactly as designed (the two views are
   intentionally independent). Breakpoints:
     ≤768px  tablets & large phones
     ≤600px  phones (denser grids)
     ≤480px  small phones (typography + spacing fine-tuning)
   ========================================================================= */
@media (max-width: 768px) {
  /* Vertical rhythm — tighter than desktop's 80px sections */
  section.page-section { padding: 52px 20px; }
  .section-title { font-size: 1.8rem; }
  .section-sub { margin-bottom: 34px; font-size: 0.95rem; }
  .container { padding: 0 18px; }

  header .nav-inner { padding: 12px 18px; }

  /* Hide the header's book button on mobile (hamburger + sticky bar cover it).
     Needs this specificity to beat the later base `.nav-cta { display:inline-flex }`
     rule that carries the calendar icon. */
  .nav-inner .nav-cta { display: none; }

  /* Inner-page burgundy hero (About / Offers / Gallery / Contact) */
  .hero { padding: 34px 20px 44px; }
  .hero-split.page-hero { padding-top: 6px; gap: 24px; }
  .hero-split.page-hero h1 { font-size: 2rem; }
  .hero-split.page-hero .hero-media img { height: 300px; }
  .hero p { font-size: 1rem; }

  /* Pre-footer CTA band: its button uses .nav-cta (hidden globally on mobile).
     Re-show it here — the header's nav-cta stays hidden. Make it a full,
     easy-to-tap target. */
  .precta-band .nav-cta {
    display: inline-flex;
    width: 100%;
    max-width: 320px;
    justify-content: center;
    text-align: center;
  }
  .precta-band .container { gap: 16px; }

  /* Offer banner — stack cleanly, full-width tappable button */
  .offer-banner { padding: 26px 22px; gap: 18px; }
  .offer-banner .btn { width: 100%; text-align: center; }

  /* Gallery — 2-up grid reads better than 1 tall column */
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .gallery-photo { height: 200px; }

  /* Contact */
  .contact-grid { gap: 28px; }
  .map-embed { height: 280px; }
}

@media (max-width: 600px) {
  /* Why-choose-us — 2 compact tiles per row on phones */
  .why-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .why-item { padding: 20px 12px; }
  .why-icon { width: 50px; height: 50px; margin-bottom: 12px; }
  .why-item h3 { font-size: 0.92rem; }
  .why-item p { font-size: 0.8rem; }
}

@media (max-width: 480px) {
  section.page-section { padding: 44px 16px; }
  .container { padding: 0 16px; }
  .section-title { font-size: 1.55rem; }
  .brand img { height: 31px; }

  /* Home hero */
  .hero-home-media { height: 240px; }
  .hero-home-copy h1 { font-size: 2.1rem; }
  .hero-home-copy p { font-size: 0.98rem; }
  .hero-home-inner { padding: 4px 20px 42px; }
  .btn-burgundy { padding: 14px 24px; font-size: 0.76rem; }
  .btn-watch { font-size: 0.76rem; }

  /* Inner-page hero */
  .hero-split.page-hero h1 { font-size: 1.7rem; }
  .hero-split.page-hero .hero-media img { height: 240px; }

  /* Stats — keep the 2×2 grid, tighten sizing */
  .stats { padding: 46px 18px; }
  .stats-heading { font-size: 1.3rem; }
  .stats-divider { margin-bottom: 30px; }
  .stat { padding: 6px 8px; }
  .stat h3 { font-size: 1.95rem; }
  .stat p { font-size: 0.82rem; }

  /* Services */
  .service-photo { height: 200px; }
  .service-card h3 { font-size: 1.1rem; }

  /* Reviews */
  .reviews-rating .rr-score { font-size: 2rem; }
  .review-card { padding: 22px 20px; }
  .review-card p.quote { font-size: 0.9rem; }

  /* Gallery */
  .gallery-photo { height: 158px; }
  .gallery-caption { font-size: 0.78rem; padding: 22px 12px 10px; }

  /* Offer banner text */
  .offer-banner .offer-title { font-size: 1.2rem; }

  /* Footer — single centered column */
  .footer-grid { grid-template-columns: 1fr; text-align: center; gap: 26px; }
  .footer-social { justify-content: center; }
  .footer-logo { margin-left: auto; margin-right: auto; }

  /* Sticky mobile CTA bar — comfortable tap sizing */
  .mobile-cta-bar a { padding: 13px 8px; font-size: 0.85rem; }
}
