

:root {
  --g0: #0A1A12;
  --g1: #122018;
  --g2: #1A2E20;
  --g3: #2D6A4F;
  --g4: #40916C;
  --g5: #74C69D;
  --gold: #C9A84C;
  --gold-l: #E8D5A3;
  --gold-p: #FBF5E6;
  --sand: #FAF6F0;
  --sand2: #F0E8DC;
  --sand3: #E2D4C4;
  --orange: #D4622A;
  --orange-l: #E8895A;
  --cream: #FDFAF6;
  --ink: #0A0A0A;
  --text: #1E1E1E;
  --muted: #7A6E66;
  --stone: #C4B4A2;
  --white: #FFFFFF;
  --r-sm: 6px;
  --r: 14px;
  --r-lg: 24px;
  --r-xl: 50px;
  --sh-sm: 0 2px 12px rgba(0,0,0,.07);
  --sh-md: 0 8px 32px rgba(0,0,0,.12);
  --sh-lg: 0 24px 64px rgba(0,0,0,.16);
  --display: 'DM Serif Display', Georgia, serif;
  --serif:   'Bodoni Moda', Georgia, serif;
  --body:    'DM Sans', system-ui, sans-serif;
  --nav-h: 72px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: var(--body);
  background: var(--g0);
  color: var(--text);
  overflow-x: hidden;
  cursor: none;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { font-family: var(--body); cursor: none; }
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--g0); }
::-webkit-scrollbar-thumb { background: var(--g3); border-radius: 10px; }

#cursor { position: fixed; top: 0; left: 0; z-index: 99999; pointer-events: none; mix-blend-mode: difference; }
#cursor-dot {
  position: absolute; width: 8px; height: 8px; border-radius: 50%;
  background: var(--cream);
  transform: translate(-50%,-50%);
  transition: transform .08s;
}
#cursor-ring {
  position: absolute; width: 36px; height: 36px; border-radius: 50%;
  border: 1.5px solid rgba(250,246,240,.45);
  transform: translate(-50%,-50%);
  transition: width .35s cubic-bezier(.4,0,.2,1),
              height .35s cubic-bezier(.4,0,.2,1),
              opacity .35s;
}
body.cur-hover #cursor-ring { width: 58px; height: 58px; opacity: .55; }
body.cur-hidden #cursor-dot,
body.cur-hidden #cursor-ring { opacity: 0; }
@media (pointer:coarse) { #cursor { display: none; } body { cursor: auto; } button, a { cursor: pointer; } }

#bgCanvas {
  position: fixed; inset: 0; z-index: 0;
  pointer-events: none; opacity: .5;
}

.t-hero {
  font-family: var(--display);
  font-size: clamp(3.2rem, 8vw, 7.5rem);
  font-weight: 400; line-height: 1.0; letter-spacing: -.025em;
}
.t-xl {
  font-family: var(--display);
  font-size: clamp(2rem, 4.5vw, 3.8rem);
  font-weight: 400; line-height: 1.08;
  color: var(--text);
}
.t-xl.dark { color: var(--cream); }
.t-lg {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 500; line-height: 1.25;
}
.eyebrow {
  display: block;
  font-size: .68rem; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
}

.btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 14px 32px; border-radius: var(--r-xl);
  font-family: var(--body); font-size: .77rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  border: none; white-space: nowrap;
  transition: background .3s, transform .25s, box-shadow .25s;
  cursor: none; position: relative; overflow: hidden;
}
.btn svg { flex-shrink: 0; }
.btn-primary { background: var(--g3); color: var(--cream); box-shadow: 0 4px 20px rgba(45,106,79,.3); }
.btn-primary:hover { background: var(--g4); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(45,106,79,.42); }
.btn-gold { background: linear-gradient(135deg,var(--gold),#b8923e); color: #fff; box-shadow: 0 4px 20px rgba(201,168,76,.32); }
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(201,168,76,.45); }
.btn-ghost { background: transparent; color: var(--cream); border: 1.5px solid rgba(250,246,240,.22); }
.btn-ghost:hover { border-color: var(--cream); background: rgba(250,246,240,.07); }
.btn-outline-dark { background: transparent; color: var(--text); border: 1.5px solid var(--sand3); }
.btn-outline-dark:hover { border-color: var(--g3); color: var(--g3); }
.btn-lg { padding: 17px 44px; font-size: .82rem; }

#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  height: var(--nav-h); padding: 0 5%;
  display: flex; align-items: center; justify-content: space-between;
  transition: all .4s ease;
}
#nav.scrolled {
  background: rgba(10,26,18,.93);
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 1px 0 rgba(255,255,255,.06);
  height: 62px;
}
.nav-logo { display: flex; align-items: center; gap: 12px; }
.logo-img { height: 36px; width: auto; }
.nav-logo-fallback { display: flex; align-items: center; gap: 10px; }
.nav-logo-mark {
  width: 36px; height: 36px; border-radius: 9px;
  background: var(--g3); display: flex; align-items: center; justify-content: center;
}
.nav-logo-name { font-family: var(--display); font-size: 1.25rem; color: var(--cream); letter-spacing: .02em; }
.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-link {
  font-size: .73rem; font-weight: 500; letter-spacing: .08em; text-transform: uppercase;
  color: rgba(250,246,240,.5); transition: color .25s; position: relative;
}
.nav-link::after {
  content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 1px;
  background: var(--gold); transition: width .3s;
}
.nav-link:hover { color: var(--cream); }
.nav-link:hover::after { width: 100%; }
.nav-cta { display: flex; gap: 10px; align-items: center; }
#navToggle { display: none; background: none; border: none; padding: 8px; color: var(--cream); }

#mobileMenu {
  display: none;
  position: fixed; top: 0; left: 0; right: 0; bottom: 0; z-index: 600;
  background: var(--g0);
  padding: calc(var(--nav-h) + 24px) 7% 40px;
  flex-direction: column; gap: 0; overflow-y: auto;
  opacity: 0;
  transition: opacity .22s ease;
  /* جلوگیری از layout shift */
  pointer-events: none;
  visibility: hidden;
}
#mobileMenu.open {
  display: flex;
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}
.mob-link {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 0; border-bottom: 1px solid rgba(255,255,255,.06);
  font-family: var(--display); font-size: 1.9rem; color: rgba(250,246,240,.7);
  transition: color .2s;
}
.mob-link svg { width: 18px; height: 18px; opacity: .4; }
.mob-link:hover { color: var(--cream); }
.mob-cta-group { margin-top: 36px; display: flex; flex-direction: column; gap: 12px; }
.mob-social { margin-top: auto; padding-top: 32px; display: flex; gap: 14px; }
.mob-social-btn {
  padding: 10px 18px; border-radius: var(--r-xl);
  border: 1px solid rgba(250,246,240,.14);
  font-size: .72rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  color: rgba(250,246,240,.5); transition: all .25s;
}
.mob-social-btn:hover { border-color: var(--g4); color: var(--g4); }

#hero {
  position: relative; min-height: 100svh;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: calc(var(--nav-h) + 48px) 5% 90px;
  overflow: hidden; z-index: 1;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(160deg, var(--g0) 0%, var(--g1) 55%, #1A2E1F 100%);
}
.hero-bg img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: .3; mix-blend-mode: luminosity;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg,rgba(10,26,18,.1) 0%,rgba(10,26,18,.45) 55%,rgba(10,26,18,.88) 100%);
  contain: layout style;
}
.hero-content { position: relative; z-index: 2; max-width: 860px; }
.hero-eyebrow {
  display: flex; align-items: center; gap: 14px; margin-bottom: 28px;
}
.hero-eyebrow-line { width: 30px; height: 1px; background: var(--orange); }
.hero-eyebrow span {
  font-size: .68rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase;
  color: var(--orange-l);
}
.hero-title { color: var(--cream); margin-bottom: 28px; }
.hero-title em {
  font-style: italic; color: transparent;
  background: linear-gradient(135deg, var(--gold-l), var(--gold));
  -webkit-background-clip: text; background-clip: text;
}
.hero-sub {
  color: rgba(250,246,240,.58); font-size: 1.05rem; font-weight: 300;
  line-height: 1.78; max-width: 520px; margin-bottom: 44px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 56px; }
.hero-scroll-hint {
  display: inline-flex; align-items: center; gap: 14px;
  color: rgba(250,246,240,.3); font-size: .68rem; letter-spacing: .16em; text-transform: uppercase;
}
.hero-scroll-line {
  width: 44px; height: 1px; background: rgba(250,246,240,.15);
  position: relative; overflow: hidden;
}
.hero-scroll-line::after {
  content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
  background: var(--gold); animation: scrollAnim 2.4s ease infinite;
}
@keyframes scrollAnim { 0%{left:-100%} 100%{left:100%} }

.hero-cards {
  position: absolute; right: 6%; bottom: 100px; z-index: 2;
  display: flex; flex-direction: column; gap: 14px; align-items: flex-end;
}
.hero-card {
  background: rgba(250,246,240,.07);
  border: 1px solid rgba(250,246,240,.11);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  border-radius: var(--r); padding: 16px 22px; min-width: 200px;
  animation: floatCard 5s ease-in-out infinite;
}
.hero-card:nth-child(2) { animation-delay: 1.6s; }
@keyframes floatCard { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }
.hero-card-label {
  font-size: .63rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  color: rgba(250,246,240,.38); margin-bottom: 5px;
}
.hero-card-val { font-family: var(--display); font-size: 1.7rem; color: var(--cream); }
.hero-card-val span { font-size: .85rem; color: var(--gold); font-family: var(--body); font-weight: 500; }

.section { padding: 100px 5%; position: relative; z-index: 1; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-header { margin-bottom: 64px; }
.section-header.center { text-align: center; }
.divider { width: 48px; height: 2px; background: linear-gradient(90deg,var(--g3),var(--gold)); border-radius: 10px; margin-top: 20px; }
.divider.center { margin: 20px auto 0; }
.text-center { text-align: center; }
.bg-dark { background: var(--g0); }
.bg-sand { background: var(--sand); }
.bg-cream { background: var(--cream); }

#services { background: var(--g0); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px,1fr)); gap: 2px; }
.svc-card {
  background: var(--g1); position: relative; overflow: hidden;
  transition: background .35s;
}
.svc-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg,rgba(45,106,79,.1),rgba(201,168,76,.05));
  opacity: 0; transition: opacity .35s;
}
.svc-card:hover { background: var(--g2); }
.svc-card:hover::before { opacity: 1; }
.svc-card-img {
  position: relative; height: 230px; overflow: hidden; background: var(--g2);
}
.svc-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .55s cubic-bezier(.4,0,.2,1);
  display: block;
}
.svc-card:hover .svc-card-img img { transform: scale(1.07); }
.svc-img-ph {
  position: absolute; inset: 0;
  display: none;
  flex-direction: column; align-items: center; justify-content: center; gap: 10px;
  background: var(--g2);
}
.svc-img-ph svg { width: 32px; height: 32px; stroke: rgba(250,246,240,.18); }
.svc-img-ph p { font-size: .68rem; color: rgba(250,246,240,.3); letter-spacing: .1em; text-transform: uppercase; }
.svc-card-body { padding: 30px 30px 34px; }
.svc-card-name { font-family: var(--display); font-size: 1.55rem; color: var(--cream); margin-bottom: 10px; }
.svc-card-desc { font-size: .84rem; color: rgba(250,246,240,.44); line-height: 1.65; margin-bottom: 20px; }
.svc-prices { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.price-pill {
  padding: 4px 13px; border-radius: 30px;
  border: 1px solid rgba(201,168,76,.22);
  font-size: .72rem; font-weight: 600; color: var(--gold-l);
}
.price-pill .pl { color: rgba(250,246,240,.32); font-weight: 400; margin-right: 4px; }
.svc-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .72rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  color: var(--g5); transition: gap .25s, color .2s;
  background: none; border: none; padding: 0; font-family: var(--body);
}
.svc-card:hover .svc-link { gap: 14px; color: var(--gold-l); }

#gallery { background: var(--sand); }
.gallery-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  grid-auto-rows: 260px; gap: 10px;
}
.gallery-item { border-radius: var(--r-sm); overflow: hidden; background: var(--sand2); position: relative; }
.gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery-item:nth-child(5) { grid-column: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.4,0,.2,1); display: block; }
.gallery-item:hover img { transform: scale(1.07); }
.gal-ph {
  position: absolute; inset: 0; display: none;
  flex-direction: column; align-items: center; justify-content: center; gap: 10px;
  background: var(--sand2);
}
.gal-ph svg { width: 28px; height: 28px; stroke: var(--stone); }
.gal-ph p { font-size: .68rem; color: var(--stone); letter-spacing: .1em; text-transform: uppercase; }
.gal-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg,transparent 40%,rgba(10,26,18,.75) 100%);
  opacity: 0; transition: opacity .3s;
  display: flex; align-items: flex-end; padding: 16px;
}
.gallery-item:hover .gal-overlay { opacity: 1; }
.gal-overlay span { font-size: .72rem; font-weight: 600; color: rgba(250,246,240,.82); letter-spacing: .06em; }

#pricing { background: var(--cream); }
.pricing-tabs { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 44px; }
.pricing-tab {
  padding: 9px 22px; border-radius: var(--r-xl);
  border: 1.5px solid var(--sand3); background: white;
  font-size: .73rem; font-weight: 600; letter-spacing: .07em; text-transform: uppercase;
  color: var(--muted); transition: all .25s; cursor: none;
}
.pricing-tab.active, .pricing-tab:hover { background: var(--g3); color: white; border-color: var(--g3); }
.pricing-panel { 
  display: none; 
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.pricing-panel.active { 
  display: block; 
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  animation: fadeUp .3s ease; 
}
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(210px,1fr)); gap: 16px; }
.price-card {
  background: white; border-radius: var(--r);
  border: 1.5px solid var(--sand2); padding: 26px 24px;
  position: relative; overflow: hidden; transition: all .28s;
}
.price-card::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg,var(--g3),var(--gold));
  transform: scaleX(0); transform-origin: left; transition: transform .35s;
}
.price-card:hover { box-shadow: var(--sh-md); transform: translateY(-3px); }
.price-card:hover::after { transform: scaleX(1); }
.price-card-name { font-family: var(--serif); font-size: 1.05rem; color: var(--ink); margin-bottom: 6px; }
.price-card-desc { font-size: .76rem; color: var(--muted); margin-bottom: 16px; line-height: 1.55; }
.price-card-amount { font-family: var(--display); font-size: 2rem; color: var(--g3); font-weight: 400; }
.price-card-amount sub { font-size: .8rem; color: var(--muted); font-family: var(--body); font-weight: 400; vertical-align: baseline; }

#faq { background: var(--g0); }
.faq-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 2px; }
.faq-item { border-radius: var(--r-sm); overflow: hidden; background: var(--g1); }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 21px 26px; background: none; border: none; text-align: left;
  font-family: var(--body); font-size: .9rem; font-weight: 500; color: var(--cream);
  cursor: none; transition: background .2s;
}
.faq-q:hover { background: var(--g2); }
.faq-icon {
  width: 28px; height: 28px; border-radius: 50%;
  border: 1.5px solid rgba(250,246,240,.14);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  transition: transform .3s, border-color .3s;
}
.faq-icon svg { width: 12px; height: 12px; transition: stroke .3s; }
.faq-item.open .faq-icon { transform: rotate(45deg); border-color: var(--gold); }
.faq-item.open .faq-icon svg { stroke: var(--gold) !important; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .38s ease, padding .25s; }
.faq-item.open .faq-a { max-height: 180px; }
.faq-a p { padding: 0 26px 20px; font-size: .85rem; color: rgba(250,246,240,.48); line-height: 1.72; }
.faq-a a { color: var(--g5); text-decoration: underline; text-underline-offset: 3px; }

#footer { background: var(--ink); padding: 72px 5% 32px; position: relative; z-index: 1; }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 1.8fr 1fr 1fr; gap: 48px; margin-bottom: 60px; }
.footer-logo { display: flex; align-items: center;  margin-bottom: 18px; }
.footer-logo > * + * { margin-left: 10px; }
.footer-brand-desc { font-size: .82rem; color: rgba(250, 246, 240, 0.75) !important; line-height: 1.78; margin-bottom: 24px; }
.footer-social { display: flex; flex-direction: row; align-items: center; flex-wrap: nowrap; gap: 10px; }
.footer-soc-btn {
  width: 38px; height: 38px; border-radius: 9px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center; transition: all .25s;
}
.footer-soc-btn:hover { background: var(--g3); border-color: var(--g3); transform: translateY(-2px); }
.footer-soc-btn svg { width: 16px; height: 16px; stroke: rgba(250,246,240,.55); transition: stroke .2s; }
.footer-soc-btn:hover svg { stroke: white; }
.footer-col-title { font-size: .65rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--gold-l); margin-bottom: 18px; }
.footer-links { display: flex; flex-direction: column;  }
.footer-links > * + * { margin-top: 12px; }
.footer-link { font-size: .82rem; color: rgba(250, 246, 240, 0.85) !important; transition: color .2s; }
.footer-link:hover { color: rgba(250,246,240,.82); }
.footer-bottom { padding-top: 24px; border-top: 1px solid rgba(255,255,255,.07); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap;  }
.footer-bottom > * { margin: 6px; }
.footer-copy { font-size: .74rem; color: rgba(250, 246, 240, 0.7) !important; }
.footer-bottom-links { display: flex;  }
.footer-bottom-links > * + * { margin-left: 20px; }
.footer-bottom-link { font-size: .74rem; color: rgba(250,246,240,.22); transition: color .2s; }
.footer-bottom-link:hover { color: rgba(250,246,240,.6); }

#stickyCta {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 400;
  background: rgba(10,26,18,.96); backdrop-filter: blur(20px);
  padding: 14px 20px; border-top: 1px solid rgba(255,255,255,.07);
}
#stickyCta a {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  background: var(--g3); color: white; border-radius: var(--r-xl); padding: 14px;
  font-size: .8rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; width: 100%;
}

#toast {
  position: fixed; bottom: 90px; left: 50%; transform: translateX(-50%) translateY(20px);
  background: var(--g3); color: white; padding: 12px 26px; border-radius: 50px;
  font-size: .8rem; font-weight: 500; z-index: 9999; opacity: 0;
  transition: all .3s; pointer-events: none; white-space: nowrap;
  box-shadow: 0 4px 20px rgba(45,106,79,.4);
}
#toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

@keyframes fadeUp { from{opacity:0;transform:translateY(16px)} to{opacity:1;transform:translateY(0)} }
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.r-d1 { transition-delay: .1s; }
.r-d2 { transition-delay: .2s; }
.r-d3 { transition-delay: .3s; }

@media (max-width: 1100px) {
  .hero-cards { display: none; }
  .gallery-grid { grid-template-columns: repeat(3,1fr); }
  .gallery-item:nth-child(1) { grid-column: span 1; grid-row: span 1; }
  .gallery-item:nth-child(5) { grid-column: span 1; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  :root { --nav-h: 62px; }
  .nav-links, .nav-cta { display: none; }
  #navToggle { display: flex; }
  #stickyCta { display: block; }
  body { padding-bottom: 72px; }
  .logo-img { height: 28px; }
  .gallery-grid { grid-template-columns: repeat(3,1fr); grid-auto-rows: 160px; }
  .footer-top { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .section { padding: 72px 5%; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .pricing-grid { grid-template-columns: repeat(auto-fill, minmax(160px,1fr)); }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: repeat(2,1fr); grid-auto-rows: 150px; }
  .pricing-tabs { gap: 4px; }
  .pricing-tab { padding: 8px 14px; }
}
@media (prefers-reduced-motion: reduce) {
  .reveal, .btn, .hero-card, .hero-scroll-line::after, .price-card { animation: none !important; transition: none !important; }
}

.map-section {
  padding: 0;
  margin: 0;
  line-height: 0;
}
.map-label-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--green, #2D6A4F);
  color: rgba(255,255,255,0.75);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 10px 28px;
  line-height: 1;
}
.map-label-bar svg { opacity: .8; flex-shrink: 0; }
.map-frame-wrap {
  width: 100%;
  height: 300px;
  overflow: hidden;
  position: relative;
}
.map-frame {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  filter: saturate(0.9) contrast(1.05);
}
@media (max-width: 768px) {
  .map-frame-wrap { height: 260px; }
  .map-label-bar { padding: 9px 18px; }
}

.pricing-skeleton {
  padding: 20px;
}

.skeleton-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 30px;
}

.skeleton-tab {
  width: 120px;
  height: 40px;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: 8px;
}

.skeleton-tab.active {
  background: linear-gradient(90deg, #2D6A4F 25%, #1b4332 50%, #2D6A4F 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}

.skeleton-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.skeleton-card {
  height: 150px;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: 12px;
}

.gallery-skeleton {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
}

.skeleton-gallery-item {
  aspect-ratio: 1;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: 12px;
}

@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.map-label-bar {
  color: #2D2D2D !important;
  background: rgba(255,255,255,0.95);
}

.footer-brand-desc {
  color: rgba(250, 246, 240, 0.9) !important;
}

.footer-bottom-link {
  color: rgba(250, 246, 240, 0.85) !important;
}

.footer-link {
  color: rgba(250, 246, 240, 0.9) !important;
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

.skeleton-tab,
.skeleton-card,
.skeleton-gallery-item {
  background: linear-gradient(
    90deg,
    #f0f0f0 0%,
    #e0e0e0 50%,
    #f0f0f0 100%
  );
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: 8px;

  will-change: transform;
}

#nav::before,
#nav::after,
header::before,
header::after {
  display: none !important;
  content: none !important;
}

body::before {
  display: none !important;
}

.pricing-skeleton,
.gallery-skeleton {
  padding: 20px;
}
.pricing-skeleton.hidden,
.gallery-skeleton.hidden {
  display: none;
}

.pricing-wrapper {
  position: relative;
}

.btn,
.svc-card,
.price-card,
.gallery-item {
  will-change: transform;
}