:root {
  --blue-royal: #0A4EDB;
  --blue-deep: #0B2F6B;

  --gold: #D4AF37;
  --gold-light: #F1D27A;

  --ink: #0F172A;

  --font-title: "Playfair Display", serif;
  --font-body: "Poppins", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  background: #000;
  color: #fff;
}

/* =====================================================
   Components
   ===================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  border: 1px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: transform .08s ease, box-shadow .2s ease, background .2s ease, border .2s ease;
}

.btn:active {
  transform: translateY(1px);
}

.btn-gold {
  background: linear-gradient(180deg, var(--gold-light), var(--gold));
  color: #2a220a;
  border: 1px solid rgba(184, 150, 46, 0.55);
  box-shadow: 0 16px 40px rgba(212, 175, 55, 0.22);
}

/* Ghost (seu estilo) */
.btn-ghost {
  background: rgba(122, 122, 122, 0.3);
  border: 1px solid rgba(161, 161, 161, 0.4);
  color: rgba(255, 255, 255, 0.92);
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s ease, transform .8s cubic-bezier(.2, .7, .2, 1);
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Mobile menu base (hidden on desktop) */
.menuBtn,
.mobileMenu {
  display: none;
}

/* =====================================================
   Home / Impact (index)
   ===================================================== */

.impact {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.impactVideo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}

.impactOverlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 600px at 20% 10%, rgba(241, 210, 122, 0.14), transparent 60%),
    radial-gradient(800px 600px at 80% 20%, rgba(10, 78, 219, 0.14), transparent 60%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.65));
  backdrop-filter: blur(2px);
}

.impactHeader {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: 18px;
  z-index: 5;
  display: flex;
  justify-content: center;
  align-items: center;
}

.impactNav {
  display: flex;
  gap: 22px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(10px);
}

.impactNav a {
  color: rgba(255, 255, 255, 0.90);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  padding: 8px 10px;
  border-radius: 999px;
  transition: background .2s ease, transform .08s ease;
}

.impactNav a:hover {
  background: rgba(255, 255, 255, 0.10);
}

.impactNav a.active {
  background: linear-gradient(180deg, rgba(241, 210, 122, 0.26), rgba(212, 175, 55, 0.18));
  border: 1px solid rgba(241, 210, 122, 0.22);
}

.impactCenter {
  position: relative;
  z-index: 4;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
  text-align: center;
}

.brandLockup {
  max-width: 680px;
  padding: 18px;
}

.brandLogo {
  width: 110px;
  height: 110px;
  object-fit: contain;
  margin: 0 auto 16px;
  filter: drop-shadow(0 18px 40px rgba(0, 0, 0, 0.55));
}

.brandTitle {
  font-family: var(--font-title);
  font-size: clamp(44px, 5.4vw, 74px);
  line-height: 1.02;
  margin: 0;
  letter-spacing: .3px;
  text-shadow: 0 16px 40px rgba(0, 0, 0, 0.6);
}

.brandSubtitle {
  margin: 10px 0 0;
  font-size: 16px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
  text-shadow: 0 12px 30px rgba(0, 0, 0, 0.55);
}

.impactCtas {
  margin-top: 22px;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* Scroll hint */
.scrollHint {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 6;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  opacity: 0.75;
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease;
}

.scrollHint.is-hidden {
  opacity: 0;
  transform: translateX(-50%) translateY(8px);
}

.scrollHint span {
  font-size: 11px;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.scrollHint .arrow {
  width: 18px;
  height: 18px;
  border-right: 2px solid rgba(241, 210, 122, 0.9);
  border-bottom: 2px solid rgba(241, 210, 122, 0.9);
  transform: rotate(45deg);
  animation: scrollBounce 1.6s infinite;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.6));
}

@keyframes scrollBounce {
  0% {
    transform: rotate(45deg) translate(0, 0);
    opacity: .6;
  }

  50% {
    transform: rotate(45deg) translate(6px, 6px);
    opacity: 1;
  }

  100% {
    transform: rotate(45deg) translate(0, 0);
    opacity: .6;
  }
}

/* =====================================================
   Mission (index)
   ===================================================== */

.mission {
  position: relative;
  padding: 120px 24px;
  background:
    radial-gradient(900px 600px at 20% 0%, rgba(241, 210, 122, 0.10), transparent 60%),
    radial-gradient(800px 600px at 80% 20%, rgba(10, 78, 219, 0.10), transparent 60%),
    linear-gradient(180deg, #0b0f16, #0f172a);
  color: #fff;
}

.missionContainer {
  max-width: 920px;
  margin: 0 auto;
}

.missionInner {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 40px 28px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(6px);
}

.missionAccent {
  width: 120px;
  height: 6px;
  border-radius: 999px;
  margin: 0 auto 18px;
  background: linear-gradient(90deg,
      rgba(241, 210, 122, 0),
      rgba(241, 210, 122, 0.95),
      rgba(241, 210, 122, 0));
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.18);
  position: relative;
}

.missionAccent::after {
  content: "";
  position: absolute;
  inset: -10px -30px;
  background: radial-gradient(circle at 50% 50%, rgba(241, 210, 122, 0.25), transparent 60%);
  filter: blur(6px);
  animation: accentGlow 2.8s ease-in-out infinite;
  pointer-events: none;
}

@keyframes accentGlow {

  0%,
  100% {
    opacity: .55;
    transform: translateY(0);
  }

  50% {
    opacity: 1;
    transform: translateY(-2px);
  }
}

.mission h2 {
  font-family: var(--font-title);
  font-size: clamp(32px, 4vw, 48px);
  margin: 0 0 18px;
  letter-spacing: .3px;
}

.missionLead {
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 18px;
  color: rgba(241, 210, 122, 0.95);
}

.missionText {
  font-size: 17px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  max-width: 680px;
  margin: 0 auto;
}

/* Optional shine once */
.missionInner::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: linear-gradient(120deg,
      transparent 40%,
      rgba(255, 255, 255, 0.08) 50%,
      transparent 60%);
  transform: translateX(-40%);
  opacity: 0;
  pointer-events: none;
}

.missionInner.is-visible::before {
  animation: cardShine 1.1s ease 0.15s 1;
}

@keyframes cardShine {
  0% {
    transform: translateX(-40%);
    opacity: 0;
  }

  20% {
    opacity: 1;
  }

  100% {
    transform: translateX(40%);
    opacity: 0;
  }
}

/* =====================================================
   Shared Dark Pages
   ===================================================== */

.pageDark {
  background: linear-gradient(180deg, #070a10, #0b1220);
  color: #fff;
}

/* Header */
.pageHeader {
  position: sticky;
  top: 0;
  z-index: 10;
  padding: 14px 18px;
  background: rgba(0, 0, 0, 0.35);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.pageHeaderInner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  position: relative;
}

.pageBrand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  font-weight: 700;
  letter-spacing: .2px;
}

.pageBrand img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  filter: drop-shadow(0 14px 30px rgba(0, 0, 0, 0.55));
}

.pageNav {
  display: flex;
  gap: 18px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.pageNav a {
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  padding: 8px 10px;
  border-radius: 999px;
}

.pageNav a:hover {
  background: rgba(255, 255, 255, 0.08);
}

.pageNav a.active {
  background: linear-gradient(180deg, rgba(241, 210, 122, 0.26), rgba(212, 175, 55, 0.16));
  border: 1px solid rgba(241, 210, 122, 0.18);
}

/* Page hero (shared) */
.servicesHero,
.contactHero {
  padding: 86px 20px 40px;
  position: relative;
}

.servicesHero::before,
.contactHero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 600px at 20% 10%, rgba(241, 210, 122, 0.14), transparent 60%),
    radial-gradient(900px 700px at 80% 20%, rgba(10, 78, 219, 0.12), transparent 60%),
    radial-gradient(700px 700px at 60% 80%, rgba(242, 193, 204, 0.10), transparent 60%);
  pointer-events: none;
}

.servicesHeroInner,
.contactHeroInner {
  position: relative;
  z-index: 1;
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}

.kickerGold {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  letter-spacing: .32em;
  text-transform: uppercase;
  font-size: 11px;
  color: rgba(241, 210, 122, 0.95);
  border: 1px solid rgba(241, 210, 122, 0.20);
  background: rgba(241, 210, 122, 0.08);
}

.pageTitle {
  font-family: var(--font-title);
  font-size: clamp(38px, 5vw, 62px);
  line-height: 1.06;
  margin: 14px 0 10px;
  text-shadow: 0 16px 40px rgba(0, 0, 0, 0.6);
}

.pageSub {
  margin: 0 auto;
  max-width: 62ch;
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
  line-height: 1.8;
}

/* Footer */
.pageFooter {
  padding: 28px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.35);
}

.pageFooterInner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  color: rgba(255, 255, 255, 0.70);
  font-size: 13px;
}

.pageFooterLinks {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.pageFooterLinks a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
}

.pageFooterLinks a:hover {
  text-decoration: underline;
}

.footerSocial {
  color: rgba(255, 255, 255, 0.78);
  transition: color 0.2s;
  display: flex;
  align-items: center;
}

.footerSocial:hover {
  color: #fff;
}

/* =====================================================
   Services / About Layout
   ===================================================== */

.servicesSection {
  padding: 28px 20px 110px;
}

.servicesContainer {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  gap: 16px;
}

.serviceCardPremium,
.serviceCardSimple {
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.35);
  padding: 22px;
  position: relative;
  overflow: hidden;
}

.serviceCardPremium::before,
.serviceCardSimple::before {
  content: "";
  position: absolute;
  inset: -60px;
  background:
    radial-gradient(260px 260px at 20% 20%, rgba(241, 210, 122, 0.12), transparent 60%),
    radial-gradient(320px 320px at 80% 30%, rgba(10, 78, 219, 0.10), transparent 60%);
  pointer-events: none;
}

.serviceTop {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  position: relative;
}

.serviceTop h2,
.simpleTop h2 {
  margin: 0;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: .2px;
}

.serviceTime {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 13.5px;
}

.serviceBadge {
  font-size: 12px;
  font-weight: 700;
  color: rgba(15, 23, 42, 0.92);
  padding: 8px 10px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--gold-light), var(--gold));
  border: 1px solid rgba(184, 150, 46, 0.55);
  white-space: nowrap;
  box-shadow: 0 16px 40px rgba(212, 175, 55, 0.20);
}

.serviceDesc {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.8;
  position: relative;
}

.serviceGrid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 14px;
  margin-top: 18px;
  position: relative;
}

/* helper (se quiser forçar 2 col em alguns lugares) */
.serviceGrid.twoCol {
  grid-template-columns: 1fr 1fr;
}

.serviceList h3,
.servicePricing h3 {
  margin: 0 0 10px;
  font-size: 13px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(241, 210, 122, 0.9);
}

.serviceList ul {
  margin: 0;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.9;
}

.servicePricing {
  border-radius: 22px;
  padding: 14px;
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.serviceBtn {
  width: 100%;
  margin-top: 12px;
}

/* Pricing tabs */
.priceTabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 12px;
}

.priceTabs .tab {
  appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.84);
  font-weight: 600;
  font-size: 12px;
  padding: 10px 10px;
  border-radius: 999px;
  cursor: pointer;
  transition: transform .08s ease, background .2s ease, border .2s ease, box-shadow .2s ease;
  letter-spacing: .02em;
}

.priceTabs .tab:hover {
  background: rgba(255, 255, 255, 0.09);
}

.priceTabs .tab:active {
  transform: translateY(1px);
}

.priceTabs .tab.active {
  background: linear-gradient(180deg, rgba(241, 210, 122, 0.35), rgba(212, 175, 55, 0.18));
  border: 1px solid rgba(241, 210, 122, 0.22);
  color: rgb(241, 209, 122);
  box-shadow: 0 14px 34px rgba(212, 175, 55, 0.16);
}

.pricePanel {
  margin-top: 12px;
  border-radius: 18px;
  padding: 14px;
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

.priceBig {
  font-size: 32px;
  font-weight: 900;
  letter-spacing: .2px;
  color: rgba(241, 210, 122, 0.96);
}

.priceSmall {
  margin-top: 6px;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.72);
}

.priceSmall .priceSize {
  color: rgba(255, 255, 255, 0.88);
  font-weight: 700;
}

/* Simple cards */
.simpleTop {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  position: relative;
}

.simplePrice {
  font-weight: 800;
  color: rgba(241, 210, 122, 0.95);
  font-size: 18px;
  white-space: nowrap;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(241, 210, 122, 0.12);
  border: 1px solid rgba(241, 210, 122, 0.18);
  box-shadow: 0 14px 34px rgba(212, 175, 55, 0.14);
}

.pricingDisclaimer {
  margin: 14px 0 0;
  padding: 10px 14px;
  font-size: 11.5px;
  color: rgba(241, 210, 122, 0.88);
  line-height: 1.6;
  text-align: center;
  font-style: italic;
  border-radius: 12px;
  background: rgba(241, 210, 122, 0.08);
  border: 1px solid rgba(241, 210, 122, 0.18);
}

.microNote {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.70);
  line-height: 1.75;
}

/* Premium note style inside cards */
.serviceList .microNote {
  margin-top: 12px;
  padding: 10px 12px;
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* Pet hair note at the bottom of each service card */
.petNote {
  margin: 24px 0 0;
  padding: 14px 18px;
  border-radius: 16px;
  background: rgba(241, 210, 122, 0.07);
  border: 1px solid rgba(241, 210, 122, 0.20);
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.85rem;
  line-height: 1.75;
  display: flex;
  align-items: center;
  gap: 14px;
  text-align: left;
}

.petNoteIcon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.petNote p {
  margin: 0;
}

/* Bottom CTA (Services + Gallery) */
.servicesFooterCta {
  border-radius: 28px;
  padding: 24px 22px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.35);
  text-align: center;
}

.servicesFooterCta h3 {
  margin: 0 0 10px;
  font-size: 20px;
  font-weight: 800;
}

.servicesFooterCta p {
  margin: 0 auto 14px;
  max-width: 62ch;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.8;
}

.aboutPhoto {
  position: relative;
  margin-top: 12px;
  border-radius: 22px;
  min-height: 260px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.35);
}

/* Image */
.aboutPhoto img {
  position: absolute;
  inset: 0;
  margin: auto;
  height: 90%;
  filter: saturate(1.05) contrast(1.02);
  transform: scale(1.02);
}

/* =====================================================
   Gallery page (migrado do gallery.html)
   ===================================================== */

.gallerySection {
  padding: 16px 20px 110px;
}

.galleryContainer {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  gap: 16px;
}

.galleryControls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.galleryHint {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
  font-size: 14px;
  margin: 0;
}

.galleryGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.gItem {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.35);
  min-height: 200px;
  cursor: pointer;
  transform: translateZ(0);
}

/* Use images if provided */
.gItem img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: scale(1.02);
  filter: saturate(1.05);
}

/* Placeholder look (when no img) */
.gPlaceholder {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(260px 200px at 20% 30%, rgba(241, 210, 122, 0.12), transparent 60%),
    radial-gradient(320px 240px at 80% 20%, rgba(10, 78, 219, 0.10), transparent 60%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
}

.gLabel {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  color: rgba(255, 255, 255, 0.85);
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.gTag {
  color: rgba(241, 210, 122, 0.95);
  font-weight: 800;
  letter-spacing: .18em;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(10px);
}

.lightbox.is-open {
  display: flex;
}

.lightboxInner {
  width: min(980px, 100%);
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.55);
  position: relative;
}

.lightboxMedia {
  width: 100%;
  aspect-ratio: 16/10;
  background:
    radial-gradient(340px 260px at 20% 30%, rgba(241, 210, 122, 0.16), transparent 60%),
    radial-gradient(420px 320px at 80% 20%, rgba(10, 78, 219, 0.12), transparent 60%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightboxMedia img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.lightboxBar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
}

.lbTitle {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

.lbPill {
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.78);
}

.lbClose {
  appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.10);
  color: rgba(255, 255, 255, 0.88);
  font-weight: 800;
  border-radius: 999px;
  padding: 10px 12px;
  cursor: pointer;
}

.lbClose:hover {
  background: rgba(255, 255, 255, 0.14);
}

/* =====================================================
   Contact page
   ===================================================== */

.contactSection {
  padding: 16px 20px 110px;
}

.contactContainer {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contactCardGlass {
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.35);
  padding: 22px;
  position: relative;
  overflow: hidden;
}

.contactCardGlass::before {
  content: "";
  position: absolute;
  inset: -60px;
  background:
    radial-gradient(260px 260px at 20% 20%, rgba(241, 210, 122, 0.12), transparent 60%),
    radial-gradient(320px 320px at 80% 30%, rgba(10, 78, 219, 0.10), transparent 60%);
  pointer-events: none;
}

.contactCardGlass h2 {
  margin: 0;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: .2px;
  position: relative;
}

.contactMuted {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.8;
  position: relative;
}

/* Location selector tabs */
.locationTabs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-top: 14px;
  position: relative;
}

.locationTabs .tab {
  appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.84);
  font-weight: 800;
  font-size: 13px;
  padding: 10px 10px;
  border-radius: 999px;
  cursor: pointer;
  transition: transform .08s ease, background .2s ease, border .2s ease, box-shadow .2s ease;
  letter-spacing: .02em;
  font-family: var(--font-body);
}

.locationTabs .tab:hover {
  background: rgba(255, 255, 255, 0.09);
}

.locationTabs .tab:active {
  transform: translateY(1px);
}

.locationTabs .tab.active {
  background: linear-gradient(180deg, rgba(241, 210, 122, 0.35), rgba(212, 175, 55, 0.18));
  border: 1px solid rgba(241, 210, 122, 0.22);
  color: rgb(241, 209, 122);
  box-shadow: 0 14px 34px rgba(212, 175, 55, 0.16);
}

.contactInfoList {
  margin-top: 14px;
  display: grid;
  gap: 10px;
  position: relative;
}

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

.infoRow {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 12px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.infoRow span {
  color: rgba(255, 255, 255, 0.74);
  font-size: 13.5px;
}

.infoRow strong {
  color: #fff;
  font-weight: 700;
  font-size: 13.5px;
  text-align: right;
  line-height: 1.35;
}

.contactButtons {
  margin-top: 14px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  position: relative;
}

.hoursNote {
  margin-top: 16px;
  padding: 14px;
  border-radius: 18px;
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
}

.hoursTitle {
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(241, 210, 122, 0.9);
  font-weight: 800;
}

.hoursText {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.75;
  font-size: 13.5px;
}

/* Form */
.contactForm {
  margin-top: 14px;
  display: grid;
  gap: 12px;
  position: relative;
}

.contactForm label {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.80);
}

.contactForm input,
.contactForm textarea,
.contactForm select {
  width: 100%;
  padding: 12px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  outline: none;
  font-family: var(--font-body);
}

.contactForm textarea {
  min-height: 120px;
  resize: vertical;
}

.contactForm input::placeholder,
.contactForm textarea::placeholder {
  color: rgba(255, 255, 255, 0.55);
}

/* Fix select dropdown readability */
.contactForm select {
  color-scheme: dark;
}

.contactForm select option {
  background: #0b1220;
  color: #fff;
}

/* Form layout helpers */
.formRow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.field {
  display: grid;
  gap: 8px;
}

.formActions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 6px;
}

.tinyNote {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 12px;
  line-height: 1.6;
}

/* =====================================================
   Responsive + Mobile menu behavior
   ===================================================== */

@media (max-width: 860px) {

  /* Hide desktop navs */
  .impactNav,
  .pageNav {
    display: none;
  }

  .impactHeader {
    justify-content: space-between;
  }

  /* Burger button */
  .menuBtn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: 1px solid rgba(184, 150, 46, 0.55);
    background: linear-gradient(180deg, var(--gold-light), var(--gold));
    box-shadow: 0 16px 40px rgba(212, 175, 55, 0.25);
    cursor: pointer;
  }

  .burger {
    width: 22px;
    height: 16px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .burger i {
    height: 2px;
    width: 100%;
    border-radius: 999px;
    background: #2a220a;
    transition: transform .28s cubic-bezier(.2, .7, .2, 1), opacity .2s ease;
  }

  .menuBtn.is-open .burger i:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menuBtn.is-open .burger i:nth-child(2) {
    opacity: 0;
  }

  .menuBtn.is-open .burger i:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  /* Drawer */
  .mobileMenu {
    display: block;
    position: absolute;
    top: 72px;
    left: 18px;
    right: 18px;
    padding: 10px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(229, 231, 235, 0.9);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.18);
    backdrop-filter: blur(10px);

    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-8px) scale(0.98);
    transition: max-height .35s ease, opacity .22s ease, transform .28s cubic-bezier(.2, .7, .2, 1);
  }

  .mobileMenu.is-open {
    max-height: 360px;
    opacity: 1;
    transform: translateY(0) scale(1);
  }

  .mobileMenu a {
    display: block;
    padding: 12px;
    border-radius: 12px;
    color: rgba(15, 23, 42, 0.92);
    font-weight: 700;
    text-decoration: none;
  }

  .mobileMenu a:hover {
    background: rgba(10, 78, 219, 0.08);
  }

  .mobileMenu a.active {
    background: rgba(241, 210, 122, 0.38);
    border: 1px solid rgba(184, 150, 46, 0.28);
  }

  /* Hero spacing */
  .servicesHero,
  .contactHero {
    padding-top: 72px;
  }

  /* Services layout */
  .serviceGrid {
    grid-template-columns: 1fr;
  }

  .serviceGrid.twoCol {
    grid-template-columns: 1fr;
  }

  .serviceBadge {
    display: none;
  }

  /* Contact layout */
  .contactContainer {
    grid-template-columns: 1fr;
  }

  .formRow {
    grid-template-columns: 1fr;
  }

  /* Gallery */
  .galleryGrid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gItem {
    min-height: 190px;
  }

  .lightboxMedia {
    aspect-ratio: 4/3;
  }

  /* Better menu placement under sticky header */
  .pageHeader .mobileMenu {
    top: 68px;
  }
}

@media (max-width: 520px) {
  .brandLogo {
    width: 90px;
    height: 90px;
  }

  .impactCtas .btn {
    width: 100%;
  }

  /* Pricing tabs stack */
  .priceTabs {
    grid-template-columns: 1fr;
  }

  /* Mission spacing */
  .mission {
    padding: 90px 18px;
  }

  .missionInner {
    padding: 34px 18px;
    border-radius: 22px;
  }

  /* Simple cards */
  .serviceCardSimple {
    padding: 18px;
    border-radius: 24px;
  }

  .simpleTop {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .simplePrice {
    font-size: 16px;
  }

  /* Contact cards */
  .infoRow {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .infoRow strong {
    text-align: left;
    word-break: break-word;
  }

  .contactButtons .btn,
  .formActions .btn {
    width: 100%;
    justify-content: center;
  }

  /* Gallery */
  .galleryGrid {
    grid-template-columns: 1fr;
  }

  .gItem {
    min-height: 210px;
  }
}

/* =====================================================
   i18n — FOUC Prevention
   ===================================================== */

.i18n-loading [data-i18n],
.i18n-loading [data-i18n-html] {
  visibility: hidden;
}

/* =====================================================
   Language Switcher
   ===================================================== */

.langSwitcher {
  display: inline-flex;
  gap: 6px;
  align-items: center;
}

.langBtn {
  appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.78);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  padding: 6px 10px;
  border-radius: 999px;
  cursor: pointer;
  transition: background .2s ease, border .2s ease, box-shadow .2s ease;
  white-space: nowrap;
  letter-spacing: .02em;
}

.langBtn:hover {
  background: rgba(255, 255, 255, 0.14);
}

.langBtn.active {
  background: linear-gradient(180deg, rgba(241, 210, 122, 0.35), rgba(212, 175, 55, 0.18));
  border: 1px solid rgba(241, 210, 122, 0.22);
  color: rgb(241, 209, 122);
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.14);
}

/* Mobile menu: style switcher for dark-on-light background */
.mobileMenu .langSwitcher {
  padding: 8px 12px 4px;
  justify-content: center;
}

.mobileMenu .langBtn {
  background: rgba(15, 23, 42, 0.08);
  border-color: rgba(15, 23, 42, 0.15);
  color: rgba(15, 23, 42, 0.78);
}

.mobileMenu .langBtn:hover {
  background: rgba(15, 23, 42, 0.12);
}

.mobileMenu .langBtn.active {
  background: linear-gradient(180deg, rgba(212, 175, 55, 0.35), rgba(212, 175, 55, 0.20));
  border-color: rgba(184, 150, 46, 0.35);
  color: rgba(120, 90, 10, 0.95);
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.16);
}
