/* ==========================================================================
   MC HANDYMAN PLUS — BI-DIRECTIONAL SCROLL-DRIVEN ENTRANCE & EXIT ANIMATIONS
   Colors:
   --navy-deep: #071924     (Midnight navy base)
   --navy-mid: #0E2A3C      (Rich dark card tone)
   --teal-emerald: #0D5C63  (Jewel teal accent)
   --coral-vibrant: #FF5A36 (Popping CTA coral)
   --amber-gold: #F59E0B    (Star gold rating)
   --sand-champagne: #F6F1EA(Warm sand background)
   --white: #FFFFFF         (Pure white)
   --charcoal: #1A2129      (Body text)
   ========================================================================== */

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

:root {
  --navy-deep: #071924;
  --navy-mid: #0E2A3C;
  --teal-emerald: #0D5C63;
  --teal-light: #147A83;
  --coral-vibrant: #FF5A36;
  --coral-hover: #E04826;
  --amber-gold: #F59E0B;
  --sand-champagne: #F6F1EA;
  --sand-dark: #E6DDD2;
  --white: #FFFFFF;
  --charcoal: #1A2129;
  --charcoal-light: #4B5663;
  --palm-green: #10B981;
  --border-color: #E2E8F0;
  --glow-coral: rgba(255, 90, 54, 0.35);
  --glow-teal: rgba(13, 92, 99, 0.25);
  --shadow-sm: 0 4px 10px rgba(7, 25, 36, 0.05);
  --shadow-md: 0 12px 28px rgba(7, 25, 36, 0.09);
  --shadow-lg: 0 24px 50px rgba(7, 25, 36, 0.16);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-pill: 100px;
  --font-display: 'Fraunces', Georgia, serif;
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --transition-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --transition-smooth: cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-family: var(--font-sans);
  color: var(--charcoal);
  background-color: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body {
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

::selection {
  background-color: var(--coral-vibrant);
  color: var(--white);
}

/* BI-DIRECTIONAL SCROLL-DRIVEN ENTRANCE & EXIT ANIMATIONS */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(50px) scale(0.94);
  filter: blur(6px);
  will-change: opacity, transform, filter;
  transition: opacity 0.7s var(--transition-smooth),
              transform 0.7s var(--transition-smooth),
              filter 0.7s var(--transition-smooth);
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0px);
}

/* Exit State when element moves above viewport */
.reveal-on-scroll.exit-above {
  opacity: 0;
  transform: translateY(-50px) scale(0.94);
  filter: blur(6px);
}

/* Typography */
h1, h2, h3, h4, .font-display {
  font-family: var(--font-display);
  color: var(--navy-deep);
  line-height: 1.18;
  font-weight: 700;
  letter-spacing: -0.02em;
}

p {
  color: var(--charcoal-light);
  font-size: 1.05rem;
  line-height: 1.7;
}

a {
  color: var(--teal-emerald);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--coral-vibrant);
}

.container {
  width: 100%;
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 1.75rem;
}

.section-padding {
  padding: 6.5rem 0;
}

.bg-sand {
  background-color: var(--sand-champagne);
}

.bg-white {
  background-color: var(--white);
}

.bg-navy-gradient {
  background: radial-gradient(ellipse at 80% 0%, #0E4E56 0%, var(--navy-deep) 70%);
  color: var(--white);
  position: relative;
}

.bg-navy-gradient h1, .bg-navy-gradient h2, .bg-navy-gradient h3 {
  color: var(--white);
}

.bg-navy-gradient p {
  color: #CBD5E1;
}

/* SINGLE UNCLUTTERED HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 120px;
  position: relative;
}

.logo-lockup {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  user-select: none;
  text-decoration: none;
}

.header-logo-image {
  height: 104px;
  width: 104px;
  object-fit: contain;
  mix-blend-mode: multiply;
  border-radius: 0;
  box-shadow: none;
  filter: none;
  transition: transform 0.35s var(--transition-spring);
}

.logo-lockup:hover .header-logo-image {
  transform: scale(1.08);
}

.logo-text-group {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.65rem;
  color: var(--navy-deep);
  line-height: 1;
  letter-spacing: -0.02em;
}

.logo-subtitle {
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: 0.685rem;
  color: var(--coral-vibrant);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-top: 4px;
}

.header-right-group {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 800;
  color: var(--navy-deep);
  font-size: 0.95rem;
}

.header-phone svg {
  color: var(--coral-vibrant);
}

/* DROPDOWN MENU TOGGLE BUTTON */
.dropdown-trigger-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--sand-champagne);
  color: var(--navy-deep);
  border: 1.5px solid var(--sand-dark);
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.65rem 1.25rem;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: all 0.3s ease;
}

.dropdown-trigger-btn:hover,
.dropdown-trigger-btn.active {
  background-color: var(--navy-deep);
  color: var(--white);
  border-color: var(--navy-deep);
}

.dropdown-trigger-btn svg {
  transition: transform 0.3s ease;
}

.dropdown-trigger-btn.active svg {
  transform: rotate(180deg);
}

/* FLOATING DROPDOWN MENU PANEL */
.dropdown-menu-panel {
  display: none;
  position: absolute;
  top: 88px;
  right: 1.75rem;
  width: 320px;
  background-color: rgba(7, 25, 36, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 90, 54, 0.3);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  padding: 1.5rem;
  z-index: 1100;
  flex-direction: column;
  gap: 0.5rem;
  animation: dropdownFade 0.3s var(--transition-smooth);
}

.dropdown-menu-panel.open {
  display: flex;
}

@keyframes dropdownFade {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

.dropdown-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.dropdown-nav-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #E2E8F0;
  font-weight: 600;
  font-size: 1.05rem;
  padding: 0.65rem 0.85rem;
  border-radius: var(--radius-sm);
  transition: all 0.25s ease;
}

.dropdown-nav-list a:hover,
.dropdown-nav-list a.active {
  background-color: rgba(255, 90, 54, 0.15);
  color: var(--coral-vibrant);
  padding-left: 1.1rem;
}

.dropdown-divider {
  height: 1px;
  background-color: rgba(255, 255, 255, 0.12);
  margin: 0.5rem 0;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius-pill);
  transition: all 0.35s var(--transition-spring);
  cursor: pointer;
  border: 2px solid transparent;
  text-align: center;
  white-space: nowrap;
}

.btn-coral-pop {
  background: linear-gradient(135deg, var(--coral-vibrant) 0%, #FF785A 100%);
  color: var(--white);
  box-shadow: 0 8px 25px var(--glow-coral);
}

.btn-coral-pop:hover {
  background: linear-gradient(135deg, #E04826 0%, var(--coral-vibrant) 100%);
  color: var(--white);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 14px 35px rgba(255, 90, 54, 0.45);
}

.btn-navy-pop {
  background-color: var(--navy-deep);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(7, 25, 36, 0.2);
}

.btn-navy-pop:hover {
  background-color: var(--navy-mid);
  color: var(--white);
  transform: translateY(-3px);
}

.btn-outline-white {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.4);
  color: var(--white);
  backdrop-filter: blur(8px);
}

.btn-outline-white:hover {
  background-color: var(--white);
  color: var(--navy-deep);
  border-color: var(--white);
  transform: translateY(-3px);
}

.btn-sm {
  padding: 0.6rem 1.25rem;
  font-size: 0.875rem;
}

.btn-lg {
  padding: 1.15rem 2.4rem;
  font-size: 1.1rem;
}

/* HERO SECTION */
.hero-vibrant {
  padding: 5.5rem 0 6.5rem 0;
  position: relative;
  overflow: hidden;
}

.hero-vibrant-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

.pop-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.825rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--coral-vibrant);
  background-color: rgba(255, 90, 54, 0.1);
  border: 1px solid rgba(255, 90, 54, 0.25);
  padding: 0.45rem 1.15rem;
  border-radius: var(--radius-pill);
  margin-bottom: 1.25rem;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: var(--coral-vibrant);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(255, 90, 54, 0.7);
  animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 90, 54, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(255, 90, 54, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 90, 54, 0); }
}

.hero-title {
  font-size: 3.5rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: var(--white);
  letter-spacing: -0.03em;
}

.text-gradient-coral {
  background: linear-gradient(135deg, #FF8A65 0%, var(--coral-vibrant) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subhead {
  font-size: 1.25rem;
  color: #CBD5E1;
  margin-bottom: 2.25rem;
  max-width: 580px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.hero-trust-strip {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  flex-wrap: wrap;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: #E2E8F0;
}

.hero-trust-item svg {
  color: var(--coral-vibrant);
}

.hero-image-stage {
  position: relative;
}

.hero-image-box {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.4);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.hero-image-box img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  display: block;
}

.floating-glass-badge {
  position: absolute;
  bottom: 2rem;
  left: -2rem;
  background: rgba(7, 25, 36, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 90, 54, 0.3);
  padding: 1.15rem 1.6rem;
  border-radius: var(--radius-md);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  gap: 1.15rem;
}

.badge-stat {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--coral-vibrant);
  line-height: 1;
}

.badge-text {
  font-size: 0.85rem;
  color: var(--white);
  font-weight: 600;
  line-height: 1.3;
}

/* VALUE SPOTLIGHT SLIDE */
.value-spotlight-slide {
  background: linear-gradient(135deg, var(--navy-deep) 0%, #0E2A3C 100%);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 4.5rem 3.5rem;
  box-shadow: 0 30px 70px rgba(7, 25, 36, 0.25);
  border: 1.5px solid rgba(255, 90, 54, 0.3);
  position: relative;
  overflow: hidden;
}

.value-spotlight-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3.5rem auto;
}

.value-spotlight-header h2 {
  font-size: 2.85rem;
  color: var(--white);
  margin-top: 0.5rem;
  margin-bottom: 1.25rem;
}

.value-pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.value-pillar-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  padding: 2.25rem 1.75rem;
  transition: all 0.35s var(--transition-spring);
}

.value-pillar-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-8px);
  border-color: var(--coral-vibrant);
}

.pillar-icon-box {
  width: 52px;
  height: 52px;
  background-color: var(--coral-vibrant);
  color: var(--white);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  box-shadow: 0 8px 20px rgba(255, 90, 54, 0.4);
}

.value-pillar-card h3 {
  font-size: 1.35rem;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.value-pillar-card p {
  color: #CBD5E1;
  font-size: 0.975rem;
}

/* 6 SERVICE CARDS GRID */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.card-pop {
  background-color: var(--white);
  border-radius: var(--radius-md);
  padding: 2.25rem 2rem;
  border: 1.5px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: all 0.35s var(--transition-spring);
  display: flex;
  flex-direction: column;
}

.card-pop:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(13, 92, 99, 0.12);
  border-color: var(--coral-vibrant);
}

.card-pop-icon {
  width: 54px;
  height: 54px;
  background-color: rgba(13, 92, 99, 0.08);
  color: var(--teal-emerald);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: all 0.3s ease;
}

.card-pop:hover .card-pop-icon {
  background-color: var(--coral-vibrant);
  color: var(--white);
}

.card-pop h3 {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
}

.card-pop p {
  font-size: 0.975rem;
  margin-bottom: 1.5rem;
}

.card-pop-link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 700;
  font-size: 0.925rem;
  color: var(--teal-emerald);
}

.card-pop:hover .card-pop-link {
  color: var(--coral-vibrant);
}

/* RESTORATION SPOTLIGHT SECTION */
.spotlight-card-vibrant {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy-mid) 100%);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 3.5rem;
  box-shadow: 0 25px 60px rgba(7, 25, 36, 0.3);
  border: 1px solid rgba(255, 90, 54, 0.2);
}

.spotlight-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3.5rem;
  align-items: center;
}

/* BEFORE / AFTER SLIDER */
.ba-container {
  position: relative;
  width: 100%;
  height: 380px;
  border-radius: var(--radius-md);
  overflow: hidden;
  user-select: none;
  box-shadow: var(--shadow-lg);
  touch-action: pan-y;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.ba-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ba-before-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  overflow: hidden;
  z-index: 2;
  border-right: 2px solid var(--coral-vibrant);
}

.ba-before-wrapper .ba-image {
  width: var(--container-width, 100%);
  max-width: none;
}

.ba-slider-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  background-color: var(--coral-vibrant);
  z-index: 3;
  cursor: ew-resize;
  transform: translateX(-50%);
}

.ba-slider-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  background-color: var(--coral-vibrant);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px rgba(255, 90, 54, 0.6);
  font-size: 1.1rem;
  font-weight: 800;
}

.ba-label {
  position: absolute;
  bottom: 1rem;
  background-color: rgba(7, 25, 36, 0.9);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-sm);
  z-index: 4;
}

.ba-label-before { left: 1rem; }
.ba-label-after { right: 1rem; }

/* FEATURED WORK GALLERY GRID */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.gallery-item-pop {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 300px;
  box-shadow: var(--shadow-md);
}

.gallery-item-pop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--transition-smooth);
}

.gallery-item-pop:hover img {
  transform: scale(1.08);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7, 25, 36, 0.92) 0%, rgba(7, 25, 36, 0.2) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.75rem;
  color: var(--white);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.gallery-item-pop:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay h4 {
  color: var(--white);
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}

.gallery-overlay span {
  font-size: 0.85rem;
  color: #CBD5E1;
  font-weight: 600;
}

/* TESTIMONIAL CARDS */
.review-card-pop {
  background-color: var(--white);
  border-radius: var(--radius-md);
  padding: 2.25rem 2rem;
  border: 1.5px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: all 0.3s ease;
}

.stars-glow {
  color: var(--amber-gold);
  display: flex;
  gap: 0.25rem;
  font-size: 1.15rem;
}

.review-quote {
  font-style: italic;
  color: var(--charcoal);
  font-size: 1.05rem;
  line-height: 1.65;
}

.review-author {
  margin-top: auto;
  font-weight: 800;
  color: var(--navy-deep);
  font-size: 0.925rem;
}

.review-location {
  font-size: 0.85rem;
  color: var(--teal-emerald);
  font-weight: 600;
}

/* FOOTER SECTION */
.site-footer {
  background-color: var(--navy-deep);
  color: var(--white);
  padding-top: 4.5rem;
  padding-bottom: 2rem;
  border-top: 4px solid var(--coral-vibrant);
  margin-top: auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3.5rem;
  margin-bottom: 3.5rem;
}

.footer-brand p {
  color: #94A3B8;
  margin-top: 1rem;
  margin-bottom: 1.5rem;
  font-size: 0.925rem;
}

.footer-heading {
  color: var(--white);
  font-size: 1.05rem;
  margin-bottom: 1.25rem;
  font-family: var(--font-sans);
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-links a {
  color: #CBD5E1;
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--coral-vibrant);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
  color: #94A3B8;
}

/* STICKY MOBILE BAR */
.sticky-mobile-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background-color: var(--navy-deep);
  padding: 0.75rem 1rem;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.sticky-mobile-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

/* RESPONSIVE MEDIA QUERIES */
@media (max-width: 1024px) {
  .hero-vibrant-grid, .spotlight-grid, .footer-grid {
    grid-template-columns: 1fr;
  }
  .grid-3, .value-pillars-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .header-right-group .header-phone {
    display: none;
  }
  .dropdown-menu-panel {
    right: 1rem;
    left: 1rem;
    width: auto;
  }
  .sticky-mobile-bar {
    display: block;
  }
  body {
    padding-bottom: 70px;
  }
  .grid-2, .grid-3, .gallery-grid, .value-pillars-grid {
    grid-template-columns: 1fr;
  }
  .hero-title {
    font-size: 2.3rem;
  }
  .value-spotlight-slide {
    padding: 2.5rem 1.5rem;
  }
  .value-spotlight-header h2 {
    font-size: 2.1rem;
  }
}
