:root {
  --bg: #0b0b0c;
  --bg-2: #0f1012;
  --card: rgba(255,255,255,0.06);
  --card-2: rgba(255,255,255,0.08);
  --text: rgba(255,255,255,0.92);
  --muted: rgba(255,255,255,0.70);
  --muted-2: rgba(255,255,255,0.55);
  --accent: #f58a07;
  --accent-2: #ffb24a;
  --stroke: rgba(255,255,255,0.12);
  --shadow: 0 18px 60px rgba(0,0,0,0.55);
  --radius: 18px;
  --radius-lg: 26px;
  --container: 1120px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Manrope", ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: radial-gradient(1200px 700px at 15% 10%, rgba(245,138,7,0.18), transparent 60%),
              radial-gradient(900px 600px at 80% 40%, rgba(255,178,74,0.10), transparent 55%),
              var(--bg);
  color: var(--text);
  line-height: 1.45;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
a:hover { opacity: 0.92; }

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
  background: rgba(11,11,12,0.58);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 210px;
}
.brand-logo {
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}
.brand-name {
  font-weight: 800;
  letter-spacing: 0.2px;
}
.brand-sub {
  font-size: 12px;
  color: var(--muted-2);
  margin-top: 1px;
}

.nav {
  display: flex;
  gap: 18px;
  align-items: center;
}
.nav a {
  font-size: 14px;
  color: var(--muted);
  padding: 8px 10px;
  border-radius: 12px;
}
.nav a:hover {
  color: var(--text);
  background: rgba(255,255,255,0.06);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid var(--stroke);
  background: rgba(255,255,255,0.06);
  color: var(--text);
  padding: 10px 14px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 14px;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}
.btn:hover {
  transform: translateY(-1px);
  background: rgba(255,255,255,0.09);
  border-color: rgba(255,255,255,0.16);
}
.btn:active { transform: translateY(0); }

.btn-primary {
  background: linear-gradient(135deg, rgba(245,138,7,0.92), rgba(255,178,74,0.88));
  border-color: rgba(255,178,74,0.55);
  color: #151515;
}
.btn-primary:hover {
  background: linear-gradient(135deg, rgba(245,138,7,0.98), rgba(255,178,74,0.94));
}
.btn-ghost {
  background: rgba(255,255,255,0.03);
}

.btn-lg {
  padding: 12px 18px;
  border-radius: 16px;
  font-size: 15px;
}

.icon-btn {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid var(--stroke);
  background: rgba(255,255,255,0.05);
  color: var(--text);
  cursor: pointer;
}

.icon-bars {
  width: 18px; height: 12px;
  display: inline-block;
  position: relative;
}
.icon-bars::before,
.icon-bars::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
}
.icon-bars::before { top: 0; }
.icon-bars::after { bottom: 0; }
.icon-bars { background: var(--text); height: 2px; border-radius: 2px; }

.hide-mobile { display: inline-flex; }
.show-mobile { display: none; }

.mobile-menu {
  display: none;
  border-top: 1px solid rgba(255,255,255,0.08);
  background: rgba(11,11,12,0.92);
}
.mobile-menu-inner {
  padding: 14px 0 18px;
  display: grid;
  gap: 12px;
}
.mobile-menu-inner > a {
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}
.mobile-ctas {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.mobile-menu[data-open="true"] { display: block; }

.hero {
  position: relative;
  overflow: hidden;
  padding: 44px 0 26px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  opacity: 0.32;
  filter: saturate(1.08) contrast(1.05);
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
}
.hero::before {
  content:"";
  position: absolute;
  inset: 0;
  background: radial-gradient(1000px 520px at 15% 10%, rgba(245,138,7,0.30), transparent 60%),
              radial-gradient(900px 520px at 80% 10%, rgba(255,178,74,0.18), transparent 55%),
              linear-gradient(to bottom, rgba(11,11,12,0.25), rgba(11,11,12,0.92));
}
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 22px;
  align-items: start;
}
.hero-card {
  background: rgba(0,0,0,0.28);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius-lg);
  padding: 26px;
  box-shadow: var(--shadow);
}
.badge {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(245,138,7,0.16);
  border: 1px solid rgba(255,178,74,0.22);
  color: var(--text);
  font-weight: 800;
  font-size: 13px;
}
.hero h1 {
  margin: 14px 0 8px;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.05;
  letter-spacing: -0.6px;
}
.accent { color: var(--accent-2); }
.hero-sub {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 16px;
  max-width: 62ch;
}
.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 14px 0 18px;
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 10px;
}
.meta-item {
  padding: 12px 12px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.04);
  border-radius: 16px;
}
.meta-k {
  display: block;
  font-size: 12px;
  color: var(--muted-2);
}
.meta-v {
  display: block;
  margin-top: 4px;
  font-weight: 700;
  font-size: 13px;
  color: var(--text);
}

.hero-side {
  display: grid;
  gap: 14px;
}
.hero-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: var(--shadow);
}
.hero-photo img {
  width: 100%;
  height: 340px;
  object-fit: cover;
}
.mini-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.mini-card {
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.04);
  padding: 14px;
}
.mini-title {
  font-weight: 800;
  margin-bottom: 6px;
}
.mini-desc {
  color: var(--muted);
  font-size: 13px;
}

.section {
  padding: 58px 0;
}
.section-alt {
  background: linear-gradient(to bottom, rgba(255,255,255,0.02), rgba(255,255,255,0.00));
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.section-head {
  margin-bottom: 22px;
}
.section-head h2 {
  margin: 0;
  font-size: 28px;
  letter-spacing: -0.2px;
}
.section-head p {
  margin: 8px 0 0;
  color: var(--muted);
}

.grid {
  display: grid;
  gap: 14px;
}
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.card {
  background: var(--card);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: 0 16px 45px rgba(0,0,0,0.25);
}
.card h3 {
  margin: 0 0 8px;
  font-size: 16px;
  letter-spacing: -0.1px;
}
.card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.service {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.service-icon {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  background: rgba(245,138,7,0.15);
  border: 1px solid rgba(255,178,74,0.22);
  position: relative;
  flex: 0 0 auto;
}
.service-icon::after {
  content:"";
  position: absolute;
  inset: 13px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(245,138,7,0.70), rgba(255,178,74,0.65));
}

.callout {
  margin-top: 18px;
  padding: 16px 16px;
  border-radius: 22px;
  border: 1px solid rgba(255,178,74,0.26);
  background: rgba(245,138,7,0.10);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 12px;
}
.gallery-item {
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.03);
  padding: 0;
  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  outline: none;
}
.gallery-item:hover {
  transform: translateY(-1px);
  border-color: rgba(255,255,255,0.18);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.gallery-item:nth-child(1) { grid-column: span 4; height: 320px; }
.gallery-item:nth-child(2) { grid-column: span 4; height: 320px; }
.gallery-item:nth-child(3) { grid-column: span 4; height: 320px; }
.gallery-item:nth-child(4) { grid-column: span 7; height: 360px; }
.gallery-item:nth-child(5) { grid-column: span 5; height: 360px; }

.lightbox {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 100;
}
.lightbox[data-open="true"] { display: block; }
.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.78);
  backdrop-filter: blur(10px);
}
.lightbox-figure {
  position: relative;
  width: min(920px, calc(100% - 24px));
  margin: 72px auto 24px;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(0,0,0,0.45);
  box-shadow: var(--shadow);
}
.lightbox-img {
  width: 100%;
  height: auto;
  display: block;
}
.lightbox-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(0,0,0,0.35);
  color: white;
  font-size: 22px;
  cursor: pointer;
}

.reviews {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.review {
  border-radius: var(--radius);
  padding: 18px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.04);
}
.review-stars {
  color: var(--accent-2);
  letter-spacing: 1px;
  font-weight: 900;
}
.review-text {
  margin: 10px 0 10px;
  color: var(--text);
}
.review-meta {
  display: flex;
  gap: 10px;
  align-items: center;
  color: var(--muted-2);
  font-size: 13px;
}
.review-name { font-weight: 800; color: var(--muted); }
.review-dot { opacity: 0.6; }

.center { text-align: center; margin-top: 18px; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 14px;
  align-items: stretch;
}
.contact-card h3 { margin-top: 0; }
.contact-list {
  display: grid;
  gap: 10px;
  margin: 12px 0 14px;
}
.contact-row {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.03);
}
.contact-k { color: var(--muted-2); font-size: 13px; }
.contact-v { font-weight: 800; }

.contact-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: var(--shadow);
  position: relative;
}
.map-wrap:not([data-map-enabled="true"]) iframe {
  display: none;
}
.map-wrap[data-map-enabled="true"] .map-consent {
  display: none;
}

.map-consent {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px;
  text-align: center;
  background: rgba(0,0,0,0.38);
}

.map-consent-text {
  margin: 0;
  color: var(--muted);
  max-width: 46ch;
}
.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
  display: block;
  filter: invert(0.92) hue-rotate(180deg) saturate(0.85) brightness(0.82) contrast(1.12);
}

.final-cta {
  padding: 54px 0;
  background: radial-gradient(900px 500px at 30% 30%, rgba(245,138,7,0.24), transparent 60%),
              radial-gradient(700px 420px at 75% 30%, rgba(255,178,74,0.16), transparent 55%),
              rgba(255,255,255,0.02);
  border-top: 1px solid rgba(255,255,255,0.06);
}
.final-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 22px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,178,74,0.20);
  background: rgba(0,0,0,0.25);
}
.final-cta h2 {
  margin: 0 0 6px;
  font-size: 26px;
}
.final-cta p {
  margin: 0;
  color: var(--muted);
}

.site-footer {
  padding: 22px 0 26px;
  border-top: 1px solid rgba(255,255,255,0.08);
  background: rgba(0,0,0,0.22);
}

.footer-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
}

.footer-copyright {
  margin: 0;
  color: var(--muted-2);
  font-size: 13px;
}

.footer-divider {
  width: min(520px, 100%);
  height: 1px;
  background: rgba(255,255,255,0.10);
}

.footer-credit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.footer-logo {
  width: 100px;
  height: auto;
  object-fit: contain;
}

.footer-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  text-align: center;
}

.footer-madeby {
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
}

.footer-vat {
  color: var(--muted-2);
  font-size: 11px;
}

/* cookie banner */
.cookie-banner {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 120;
}

.cookie-inner {
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  padding: 14px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(11,11,12,0.92);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
}

.cookie-text {
  display: grid;
  gap: 6px;
  max-width: 62ch;
}

.cookie-desc {
  color: var(--muted);
  font-size: 13px;
}

.cookie-desc a {
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.footer-inner {
  display: grid;
  gap: 12px;
}
.footer-brand {
  display: flex;
  gap: 12px;
  align-items: center;
}
.footer-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
}

.footer-copyright {
  margin: 0;
  color: var(--muted-2);
  font-size: 13px;
}

.footer-divider {
  width: min(520px, 100%);
  height: 1px;
  background: rgba(255,255,255,0.10);
}

.footer-credit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.footer-logo {
  width: 100px;
  height: auto;
  object-fit: contain;
}

.footer-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  text-align: center;
}

.footer-madeby {
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
}

.footer-vat {
  color: var(--muted-2);
  font-size: 11px;
}

/* cookie banner */
.cookie-banner {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 120;
}

.cookie-inner {
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  padding: 14px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(11,11,12,0.92);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
}

.cookie-text {
  display: grid;
  gap: 6px;
  max-width: 62ch;
}

.cookie-desc {
  color: var(--muted);
  font-size: 13px;
}

.cookie-desc a {
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

@media (max-width: 980px) {
  .cookie-inner { flex-direction: column; align-items: stretch; }
  .cookie-actions { justify-content: stretch; }
  .cookie-actions .btn { width: 100%; }
}

/* map consent overlay */
.map-wrap {
  position: relative;
}

.map-consent {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px;
  text-align: center;
  background: rgba(0,0,0,0.38);
}

.map-consent-text {
  margin: 0;
  color: var(--muted);
  max-width: 46ch;
}

.map-wrap[data-map-enabled="true"] .map-consent {
  display: none;
}
.footer-name { font-weight: 900; }
.footer-sub { color: var(--muted-2); font-size: 13px; }
.footer-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 14px;
}
.footer-copy {
  color: var(--muted-2);
  font-size: 13px;
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}
.footer-dot { opacity: 0.6; }

.fab {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 80;
  display: inline-flex;
  gap: 10px;
  align-items: center;
  padding: 12px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(245,138,7,0.92), rgba(255,178,74,0.88));
  border: 1px solid rgba(255,178,74,0.55);
  color: #171717;
  font-weight: 900;
  box-shadow: 0 18px 55px rgba(0,0,0,0.55);
}
.fab-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(0,0,0,0.35);
}

.tiny { font-size: 12px; }
.muted { color: var(--muted-2); }

/* reveal animation */
[data-reveal] {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .55s ease, transform .55s ease;
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .nav { display: none; }
  .hide-mobile { display: none; }
  .show-mobile { display: inline-flex; }
  .hero-inner {
    grid-template-columns: 1fr;
  }
  .hero-photo img { height: 260px; }
  .hero-meta { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .reviews { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .gallery-item:nth-child(1),
  .gallery-item:nth-child(2),
  .gallery-item:nth-child(3),
  .gallery-item:nth-child(4),
  .gallery-item:nth-child(5) {
    grid-column: span 12;
    height: 260px;
  }
  .mini-cards { grid-template-columns: 1fr; }
  .final-cta-inner { flex-direction: column; align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  [data-reveal] { transition: none; }
  .btn { transition: none; }
}
