/* LocalTop – Demo PLUS su misura (WOW)
   One-page static. No tracking. Noindex.
*/

:root {
  --bg: #050B16;
  --surface: rgba(255, 255, 255, 0.06);
  --surface2: rgba(255, 255, 255, 0.10);
  --text: #E5E7EB;
  --muted: rgba(226,232,240,.74);
  --border: rgba(148, 163, 184, .25);
  --shadow: 0 18px 50px rgba(0,0,0,.45);
  --shadow2: 0 12px 34px rgba(0,0,0,.30);
  --teal: #0F766E;
  --teal2: #14B8A6;
  --radius: 18px;
  --radius2: 26px;
  --container: 1120px;
  --headerH: 72px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: radial-gradient(1200px 500px at 12% 0%, rgba(20,184,166,.25), transparent 60%),
              radial-gradient(1000px 500px at 90% 10%, rgba(15,118,110,.18), transparent 65%),
              linear-gradient(180deg, #050B16 0%, #050B16 40%, #040912 100%);
  line-height: 1.55;
}

a { color: inherit; }
a:hover { text-decoration: none; }
p { margin: 0 0 14px; }
h1,h2,h3 { line-height: 1.12; margin: 0 0 12px; }
h2 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }
h3 { font-size: 1.08rem; }

.container {
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: 10px;
  top: -80px;
  padding: 10px 12px;
  background: #111827;
  color: #fff;
  border-radius: 12px;
  z-index: 9999;
}
.skip-link:focus { top: 10px; }

.header {
  position: sticky;
  top: 0;
  z-index: 40;
  height: var(--headerH);
  backdrop-filter: blur(14px);
  background: rgba(5,11,22,.64);
  border-bottom: 1px solid var(--border);
}
.headerInner {
  height: var(--headerH);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  text-decoration: none;
  color: var(--text);
}
.logo {
  width: 44px; height: 44px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(20,184,166,.20), rgba(15,118,110,.10));
  border: 1px solid rgba(20,184,166,.30);
  box-shadow: 0 10px 24px rgba(0,0,0,.25);
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}
.logo svg { width: 26px; height: 26px; }
.brandText { min-width: 0; }
.brandName {
  font-weight: 900;
  letter-spacing: -0.02em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.brandDesc {
  color: var(--muted);
  font-size: .92rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.nav {
  display: none;
  align-items: center;
  gap: 8px;
}
.nav a {
  padding: 10px 10px;
  border-radius: 999px;
  border: 1px solid transparent;
  color: rgba(226,232,240,.92);
  font-weight: 800;
  font-size: .92rem;
  text-decoration: none;
}
.nav a:hover {
  border-color: rgba(148,163,184,.28);
  background: rgba(255,255,255,.06);
}
.nav a[aria-current="true"] {
  background: rgba(20,184,166,.14);
  border-color: rgba(20,184,166,.35);
  color: #E6FFFB;
}

.iconBtn {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(148,163,184,.26);
  background: rgba(255,255,255,.06);
  color: var(--text);
  display: grid;
  place-items: center;
}
.iconBtn:hover { background: rgba(255,255,255,.10); }
.iconBtn svg { width: 22px; height: 22px; }

@media (min-width: 980px) {
  .nav { display: flex; }
  .menuBtn { display: none; }
}

.drawerBackdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.55);
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
  z-index: 60;
}
.drawerBackdrop.open { opacity: 1; pointer-events: auto; }

.drawer {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: min(360px, 92vw);
  background: rgba(5,11,22,.92);
  border-left: 1px solid var(--border);
  backdrop-filter: blur(16px);
  transform: translateX(110%);
  transition: transform .24s ease;
  z-index: 70;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.drawer.open { transform: translateX(0); }
.drawer a {
  text-decoration: none;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(148,163,184,.20);
  background: rgba(255,255,255,.06);
  color: rgba(226,232,240,.95);
  font-weight: 900;
}
.drawer a:hover { background: rgba(255,255,255,.10); }
.drawerHead {
  display:flex; align-items:center; justify-content: space-between; gap:10px;
  padding-bottom: 8px; border-bottom: 1px solid rgba(148,163,184,.18);
}
.drawerTitle { font-weight: 900; letter-spacing: -.02em; }

.main {
  padding: 12px 0 20px;
}
.section {
  padding: 20px 0;
}

.card {
  border-radius: var(--radius2);
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.05));
  box-shadow: var(--shadow2);
}
.cardInner { padding: 18px; }
@media (min-width: 860px) {
  .cardInner { padding: 22px; }
}

.hero {
  position: relative;
  overflow: hidden;
}
.heroGrid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 18px;
  align-items: stretch;
}
@media (max-width: 960px) {
  .heroGrid { grid-template-columns: 1fr; }
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 900;
  font-size: .86rem;
  color: #E6FFFB;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(20,184,166,.35);
  background: rgba(20,184,166,.12);
  box-shadow: 0 10px 26px rgba(0,0,0,.22);
  width: fit-content;
}
.kickerDot {
  width: 8px; height: 8px; border-radius: 999px;
  background: var(--teal2);
  box-shadow: 0 0 0 6px rgba(20,184,166,.14);
}
.heroH1 {
  font-size: clamp(1.9rem, 4.8vw, 3.1rem);
  letter-spacing: -0.03em;
  margin-top: 12px;
}
.heroP { color: rgba(226,232,240,.82); font-size: 1.05rem; max-width: 62ch; }

.ctaRow {
  display:flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(148,163,184,.26);
  background: rgba(255,255,255,.06);
  color: rgba(226,232,240,.96);
  font-weight: 900;
  text-decoration: none;
  min-height: 46px;
}
.btn:hover { background: rgba(255,255,255,.10); }
.btnPrimary {
  background: linear-gradient(135deg, rgba(20,184,166,.95), rgba(15,118,110,.95));
  border-color: rgba(20,184,166,.45);
  color: #031313;
}
.btnPrimary:hover { filter: brightness(.98); }
.btnGhost {
  background: transparent;
}

.pills {
  display:flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}
.pill {
  font-size: .9rem;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid rgba(148,163,184,.22);
  background: rgba(255,255,255,.05);
  color: rgba(226,232,240,.90);
}
.pill strong { font-weight: 900; color: #E6FFFB; }

.heroMedia {
  position: relative;
  border-radius: 22px;
  border: 1px solid rgba(148,163,184,.22);
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 280px;
}
.heroMedia img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display:block;
}
.heroBadge {
  position: absolute;
  left: 14px;
  bottom: 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 18px;
  background: rgba(5,11,22,.72);
  border: 1px solid rgba(148,163,184,.22);
  color: rgba(226,232,240,.95);
  backdrop-filter: blur(10px);
}
.heroBadge strong { font-weight: 950; }

.grid2 {
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
@media (max-width: 820px) {
  .grid2 { grid-template-columns: 1fr; }
}

.miniCard {
  border-radius: var(--radius);
  border: 1px solid rgba(148,163,184,.22);
  background: rgba(255,255,255,.05);
  padding: 14px;
}
.label { color: var(--muted); font-size: .92rem; margin-bottom: 6px; }
.value { font-weight: 900; }
.list { margin: 0; padding-left: 18px; }
.list li { margin: 6px 0; color: rgba(226,232,240,.88); }

.cards3 {
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
@media (max-width: 980px) {
  .cards3 { grid-template-columns: 1fr; }
}
.featureCard {
  border-radius: 22px;
  border: 1px solid rgba(148,163,184,.22);
  background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.04));
  padding: 16px;
  box-shadow: 0 12px 34px rgba(0,0,0,.22);
  position: relative;
  overflow:hidden;
}
.featureTop {
  display:flex; align-items:center; justify-content: space-between; gap: 10px;
  margin-bottom: 10px;
}
.featureIcon {
  width: 44px; height: 44px;
  border-radius: 16px;
  display:grid; place-items:center;
  background: rgba(20,184,166,.12);
  border: 1px solid rgba(20,184,166,.30);
}
.featureIcon svg { width: 22px; height: 22px; }
.featureCard h3 { margin: 0; }
.featureCard p { color: rgba(226,232,240,.80); }

.ratingRow {
  display:grid;
  grid-template-columns: 210px 1fr;
  gap: 14px;
  align-items: center;
}
@media (max-width: 860px) {
  .ratingRow { grid-template-columns: 1fr; }
}
.ratingBox {
  text-align:center;
  border-radius: 22px;
  border: 1px solid rgba(148,163,184,.22);
  background: rgba(255,255,255,.06);
  padding: 14px;
}
.ratingNum { font-size: 2.7rem; font-weight: 950; letter-spacing: -0.03em; }
.stars { letter-spacing: .10em; font-weight: 950; }
.ratingMeta { color: var(--muted); font-weight: 900; margin-top: 6px; }

.reviews {
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 14px;
}
@media (max-width: 980px) {
  .reviews { grid-template-columns: 1fr; }
}
.reviewCard {
  border-radius: 22px;
  border: 1px solid rgba(148,163,184,.22);
  background: rgba(255,255,255,.05);
  padding: 14px;
}
.reviewHead {
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 8px;
}
.avatar {
  width: 36px; height: 36px;
  border-radius: 14px;
  background: rgba(20,184,166,.16);
  border: 1px solid rgba(20,184,166,.30);
  display:grid; place-items:center;
  font-weight: 950;
  color: #E6FFFB;
}
.reviewText { color: rgba(226,232,240,.88); }

.gallery {
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
@media (max-width: 980px) {
  .gallery { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .gallery { grid-template-columns: 1fr; }
}
.gallery img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 22px;
  border: 1px solid rgba(148,163,184,.22);
  background: rgba(255,255,255,.04);
  box-shadow: 0 12px 30px rgba(0,0,0,.22);
  transform: translateZ(0);
}
.gallery img:hover {
  filter: saturate(1.05) contrast(1.02);
}

.tableWrap {
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(148,163,184,.22);
  background: rgba(255,255,255,.05);
}
.priceTable {
  width: 100%;
  border-collapse: collapse;
}
.priceTable th, .priceTable td {
  padding: 12px 12px;
  border-bottom: 1px solid rgba(148,163,184,.18);
  text-align:left;
}
.priceTable th {
  font-weight: 950;
  background: rgba(255,255,255,.06);
}
.priceTable tr:last-child td { border-bottom: none; }

.map iframe,
.map .mapImg {
  width: 100%;
  height: 360px;
  border: 0;
  border-radius: 22px;
  border: 1px solid rgba(148,163,184,.22);
  box-shadow: 0 14px 38px rgba(0,0,0,.22);
}

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

.visually-hidden {
  position: absolute;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
}


.footer {
  border-top: 1px solid var(--border);
  padding: 20px 0;
  color: var(--muted);
  font-size: 0.95rem;
  background: transparent;
}

.footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.footRow {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.footName {
  font-weight: 700;
}

.footLinks {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  white-space: nowrap;
}

.footLinks a { color: var(--muted); }

.socialIcons {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 0;
}

.socialIcon {
  width: 28px;
  height: 28px;
  border: none;
  background: transparent;
  padding: 0;
  display: inline-grid;
  place-items: center;
  color: var(--muted);
}

.socialIcon:hover {
  color: var(--teal);
  text-decoration: none;
}

.socialIcon svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.localtopNote {
  color: var(--muted);
  text-align: center;
  font-size: 0.85rem;
}

@media (max-width: 600px) {
  .footRow {
    flex-direction: column;
  }
}

/* Privacy page: add vertical spacing from header/footer */
.pagePrivacy .main {
  padding: 12px 0 20px;
}

.pagePrivacy .legalWrap {
  margin-top: 0;
  margin-bottom: 0;
}



.mapLink { display: block; }
.mapImg { display: block; width: 100%; object-fit: cover; }
