/* ── TOKENS ── */
:root {
  --bg: #0a0a0a;
  --surface: #111111;
  --surface2: #181818;
  --text: #f5f5f5;
  --muted: rgba(235, 235, 235, 0.95);
  --accent: #ff6a00;
  --accent-h: #ff8533;
  --border: rgba(255, 255, 255, 0.07);
  --r: 16px;
  --nav-h: 72px;
}

/* ── RESET ── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: "DM Sans", system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  display: block;
  max-width: 100%;
}
button {
  font-family: inherit;
  cursor: pointer;
}
ul {
  list-style: none;
}

/* ── NOISE OVERLAY ── */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9990;
  opacity: 0.028;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 128px 128px;
}

/* ── TYPOGRAPHY ── */
.display {
  font-family: "Bebas Neue", sans-serif;
  line-height: 0.95;
  letter-spacing: 0.02em;
}
h1 {
  font-size: clamp(54px, 8vw, 110px);
}
h2.section-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(36px, 5vw, 64px);
  letter-spacing: 0.03em;
  line-height: 1;
  margin-bottom: 14px;
}
.section-lead {
  color: var(--muted);
  font-size: 16px;
  max-width: 500px;
  margin-bottom: 52px;
  line-height: 1.7;
}
.overline {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
  display: block;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar {
  width: 5px;
}
::-webkit-scrollbar-track {
  background: var(--bg);
}
::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: 3px;
}

/* ────────────────────────────────────────────
   HEADER
──────────────────────────────────────────── */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-h);
  z-index: 1000;
  display: flex;
  align-items: center;
  background: rgba(10, 10, 10, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s;
}
.nav {
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo img {
  height: 42px;
}

/* ── LOGO COMPONENT ── */
.mav-logo-wrap {
  position: relative;
  display: inline-block;
  line-height: 0;
}
.mav-logo-tagline {
  position: absolute;
  /* just below A and V, starting from M's left foot */
  top: 78%;
  left: 10%;
  color: #fff;
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  white-space: nowrap;
  line-height: 1;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-links a {
  padding: 8px 14px;
  border-radius: 9px;
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  transition:
    color 0.2s,
    background 0.2s;
}
.nav-links a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
}
.nav-cta {
  margin-left: 8px;
  background: var(--accent) !important;
  color: #fff !important;
  padding: 9px 20px !important;
  border-radius: 999px !important;
  font-weight: 600 !important;
  transition:
    background 0.2s,
    transform 0.2s !important;
}
.nav-cta:hover {
  background: var(--accent-h) !important;
  transform: translateY(-1px);
}

/* hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: 0.3s;
}
.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* mobile nav */
.mobile-nav {
  position: fixed;
  inset: 0;
  top: var(--nav-h);
  background: rgba(10, 10, 10, 0.97);
  backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  z-index: 999;
  transform: translateY(-100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}
.mobile-nav.open {
  transform: translateY(0);
  pointer-events: all;
}
.mobile-nav a {
  font-family: "Bebas Neue", sans-serif;
  font-size: 36px;
  letter-spacing: 0.06em;
  color: var(--muted);
  padding: 10px 40px;
  transition: color 0.2s;
}
.mobile-nav a:hover {
  color: var(--accent);
}

/* ────────────────────────────────────────────
   HERO
──────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding: var(--nav-h) 0 72px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(10, 10, 10, 0.3) 0%,
      rgba(10, 10, 10, 0.75) 50%,
      rgba(10, 10, 10, 0.97) 85%,
      var(--bg) 100%
    ),
    linear-gradient(
      90deg,
      rgba(10, 10, 10, 0.88) 0%,
      rgba(10, 10, 10, 0.5) 45%,
      transparent 70%
    ),
    url("../assets/images/kitchen-bg.jpg") center/cover no-repeat;
}
/* subtle orange vignette */
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 70% 60% at 80% 30%,
    rgba(255, 106, 0, 0.08) 0%,
    transparent 70%
  );
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1360px;
  width: 100%;
  margin: 0 auto;
  padding: 0 40px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(255, 106, 0, 0.3);
  background: rgba(255, 106, 0, 0.08);
  color: var(--accent);
  padding: 7px 16px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  margin-bottom: 28px;
}
.hero-badge::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.4;
    transform: scale(0.7);
  }
}

.hero h1 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(60px, 9vw, 120px);
  letter-spacing: 0.03em;
  line-height: 0.92;
  margin-bottom: 28px;
}
.hero h1 em {
  font-style: normal;
  color: var(--accent);
  display: block;
}
.hero-sub {
  color: var(--muted);
  font-size: clamp(15px, 1.6vw, 18px);
  max-width: 480px;
  line-height: 1.7;
  margin-bottom: 40px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 28px;
  border-radius: 999px;
  border: none;
  font-family: "DM Sans", sans-serif;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition:
    transform 0.2s,
    box-shadow 0.2s,
    background 0.2s,
    opacity 0.2s;
  white-space: nowrap;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn-primary {
  background: var(--accent);
  color: #fff;
}
.btn-primary:hover {
  background: var(--accent-h);
  box-shadow: 0 10px 32px rgba(255, 106, 0, 0.35);
}
.btn-ghost {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
}
.btn-phone {
  background: #25d366;
  color: #fff;
}
.btn-phone:hover {
  filter: brightness(1.12);
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.3);
}
.btn img,
.nav-cta img {
  display: inline-block;
  height: 16px;
  width: auto;
  vertical-align: middle;
  filter: brightness(0) invert(1);
}
.nav-cta img {
  transform: translateY(-1px);
}

.hero-divider {
  margin-top: 64px;
  padding-top: 48px;
  border-top: 1px solid var(--border);
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
}
.hero-stat .num {
  font-family: "Bebas Neue", sans-serif;
  font-size: 48px;
  letter-spacing: 0.04em;
  color: var(--accent);
  display: block;
  line-height: 1;
}
.hero-stat .label {
  color: var(--muted);
  font-size: 13px;
  margin-top: 4px;
}

/* ────────────────────────────────────────────
   SECTION WRAPPER
──────────────────────────────────────────── */
.section {
  max-width: 1360px;
  margin: 0 auto;
  padding: 100px 40px;
}
.section-full {
  padding: 100px 0;
  background: var(--surface);
}
.section-full .section-inner {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ────────────────────────────────────────────
   ABOUT
──────────────────────────────────────────── */
#about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-media {
  position: relative;
}
.about-photo {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: var(--r);
  filter: brightness(0.95);
}
.about-tag {
  position: absolute;
  bottom: 28px;
  left: 28px;
  background: var(--accent);
  color: #fff;
  padding: 16px 22px;
  border-radius: 14px;
  font-family: "Bebas Neue", sans-serif;
  font-size: 22px;
  letter-spacing: 0.06em;
  line-height: 1.1;
  box-shadow: 0 12px 40px rgba(255, 106, 0, 0.4);
}
.about-tag small {
  display: block;
  font-family: "DM Sans", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  opacity: 0.75;
  text-transform: uppercase;
  margin-bottom: 2px;
}

.about-text {
  color: var(--muted);
  line-height: 1.8;
  margin: 18px 0 32px;
  font-size: 16px;
}
.about-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
}
.about-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 15px;
  color: var(--muted);
}
.about-check {
  width: 22px;
  height: 22px;
  min-width: 22px;
  background: rgba(255, 106, 0, 0.12);
  border: 1px solid rgba(255, 106, 0, 0.3);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  margin-top: 1px;
}
.about-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ────────────────────────────────────────────
   SERVICES
──────────────────────────────────────────── */
.section-full#services {
  padding: 100px 0;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 0;
}
.svc {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 32px 28px;
  transition:
    border-color 0.3s,
    transform 0.3s,
    box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}
.svc::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 106, 0, 0.04) 0%,
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.3s;
}
.svc:hover {
  border-color: rgba(255, 106, 0, 0.28);
  transform: translateY(-5px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
}
.svc:hover::before {
  opacity: 1;
}
.svc-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}
.svc-icon {
  font-size: 22px;
  color: var(--accent);
  filter: drop-shadow(0 2px 8px rgba(255, 106, 0, 0.4));
  width: 22px;
  text-align: center;
  flex-shrink: 0;
}
.svc h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 0;
}
.svc p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}
.svc-pill {
  display: inline-block;
  margin-top: 16px;
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(255, 106, 0, 0.1);
  color: var(--accent);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ────────────────────────────────────────────
   BEFORE / AFTER
──────────────────────────────────────────── */
#projects {
}
.ba-container {
  max-width: 960px;
  margin: 0 auto;
}
#before-after-slider {
  width: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid var(--border);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6);
  user-select: none;
  max-height: 70vh;
}
#after-image {
  line-height: 0;
}
#after-image img {
  width: 100%;
  max-height: 70vh;
  object-fit: cover;
  display: block;
}
#before-image {
  position: absolute;
  height: 100%;
  width: 50%;
  top: 0;
  left: 0;
  overflow: hidden;
  z-index: 2;
}
#before-image img {
  display: block;
  height: 100%;
  max-width: none;
  object-fit: cover;
}
#resizer {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  top: 0;
  left: calc(50% - 26px);
  height: 100%;
  width: 52px;
  background: transparent;
  touch-action: pan-y;
  cursor: grab;
}
#resizer:active,
body.ba-dragging,
body.ba-dragging * {
  cursor: grabbing !important;
}
#resizer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 5px;
  height: 100%;
  background: var(--accent);
  filter: drop-shadow(0 0 12px rgba(255, 106, 0, 0.75));
  pointer-events: none;
  z-index: 1;
}
.resizer-handle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 17px;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.45), 0 0 0 5px rgba(255, 106, 0, 0.25);
  cursor: grab;
}
.ba-loader {
  display: none;
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 10;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
}
.ba-loader::after {
  content: '';
  width: 48px;
  height: 48px;
  border: 4px solid rgba(255, 255, 255, 0.2);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: ba-spin 0.7s linear infinite;
}
@keyframes ba-spin {
  to { transform: rotate(360deg); }
}
#before-after-slider.loading .ba-loader {
  display: flex;
}
.ba-label {
  position: absolute;
  bottom: 20px;
  z-index: 6;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(6px);
  padding: 5px 14px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  pointer-events: none;
}
.ba-label.przed {
  left: 20px;
}
.ba-label.po {
  right: 20px;
  color: var(--accent);
}
.ba-hint {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  color: var(--muted);
  font-size: 13px;
  margin-top: 14px;
}
.ba-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
}
.ba-nav-btn {
  font-family: inherit;
  cursor: pointer;
}
.ba-nav-arrow {
  height: 44px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1.5px solid rgba(255, 106, 0, 0.55);
  background: rgba(255, 106, 0, 0.12);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .04em;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 0 0 0 rgba(255, 106, 0, 0);
  transition: border-color .2s, color .2s, background .2s, box-shadow .2s, transform .15s;
}
.ba-nav-arrow:hover {
  border-color: var(--accent);
  background: rgba(255, 106, 0, 0.25);
  color: #fff;
  box-shadow: 0 0 14px rgba(255, 106, 0, 0.35);
  transform: scale(1.04);
}
.ba-nav-random {
  height: 44px;
  padding: 0 22px;
  border-radius: 999px;
  border: none;
  background: var(--accent);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: opacity .2s, transform .15s;
}
.ba-nav-random:hover {
  opacity: .85;
  transform: scale(1.04);
}

/* ────────────────────────────────────────────
   GALLERY
──────────────────────────────────────────── */
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}
.filter-btn {
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--muted);
  font-family: "DM Sans", sans-serif;
  font-size: 13px;
  font-weight: 500;
  transition: 0.2s;
  cursor: pointer;
}
.filter-btn:hover {
  border-color: rgba(255, 106, 0, 0.35);
  color: var(--accent);
}
.filter-btn.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 14px;
}
@keyframes g-shimmer {
  0%   { background-position: -400px 0; }
  100% { background-position:  400px 0; }
}
.g-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  height: 190px;
  cursor: pointer;
  background: var(--surface);
}
.g-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.06) 50%, transparent 100%);
  background-size: 400px 100%;
  animation: g-shimmer 1.4s ease-in-out infinite;
  z-index: 1;
  pointer-events: none;
}
.g-item.loaded::after {
  display: none;
}
.g-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.5s ease, transform 0.4s ease;
}
.g-item.loaded img {
  opacity: 1;
}
.g-item:hover img {
  transform: scale(1.1);
}
.g-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: flex-end;
  padding: 14px;
}
.g-item:hover .g-overlay {
  opacity: 1;
}
.g-tag {
  background: var(--accent);
  color: #fff;
  padding: 3px 11px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ────────────────────────────────────────────
   LIGHTBOX
──────────────────────────────────────────── */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.94);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9998;
  padding: 24px;
}
.lightbox.active {
  display: flex;
}
.lightbox img {
  max-width: 90vw;
  max-height: 88vh;
  border-radius: 14px;
  pointer-events: none;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.8);
}
.lb-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #fff;
  font-size: 18px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.2s;
  z-index: 1;
}
.lb-close:hover {
  background: rgba(255, 255, 255, 0.2);
}
.lb-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #fff;
  font-size: 44px;
  line-height: 1;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.2s;
  z-index: 1;
  user-select: none;
}
.lb-nav:hover {
  background: rgba(255, 255, 255, 0.22);
}
.lb-prev {
  left: 20px;
}
.lb-next {
  right: 20px;
}
@media (max-width: 600px) {
  .lb-nav {
    width: 44px;
    height: 44px;
    font-size: 34px;
  }
  .lb-prev {
    left: 8px;
  }
  .lb-next {
    right: 8px;
  }
}
.lb-counter {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.75);
  font-size: 14px;
  letter-spacing: 0.08em;
  pointer-events: none;
  user-select: none;
}

/* ────────────────────────────────────────────
   CONTACT
──────────────────────────────────────────── */
#contact {
  scroll-margin-top: var(--nav-h);
}
.contact-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 64px 72px;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 72px;
  align-items: start;
}
.contact-info .section-title {
  margin-bottom: 10px;
}
.contact-info p {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 36px;
  line-height: 1.7;
}

.c-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 22px;
}
.c-icon {
  width: 46px;
  height: 46px;
  min-width: 46px;
  background: rgba(255, 106, 0, 0.1);
  border: 1px solid rgba(255, 106, 0, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin-top: 2px;
  color: var(--accent);
}
.btn-primary i,
.btn-phone i,
.nav-cta i,
.cta-phone i {
  color: #fff;
}
.c-text p:first-child {
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 2px;
}
.c-text p:last-child {
  color: var(--muted);
  font-size: 14px;
}
.c-text a {
  color: var(--muted);
  transition: 0.2s;
}
.c-text a:hover {
  color: var(--accent);
}

/* form */
.form-group {
  margin-bottom: 18px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
label.field-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 7px;
  letter-spacing: 0.02em;
}
.req {
  color: var(--accent);
}
input[type="text"],
input[type="tel"],
input[type="email"],
select,
textarea {
  width: 100%;
  padding: 13px 16px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text);
  font-family: "DM Sans", sans-serif;
  font-size: 15px;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
  appearance: none;
  -webkit-appearance: none;
}
input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: rgba(255, 106, 0, 0.45);
  box-shadow: 0 0 0 3px rgba(255, 106, 0, 0.1);
}
select option {
  background: var(--surface);
}
textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.6;
}

.gdpr-group {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  margin: 22px 0 24px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 10px;
}
.gdpr-group input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  margin-top: 2px;
  accent-color: var(--accent);
  cursor: pointer;
}
.gdpr-group label {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
  cursor: pointer;
}
.gdpr-group a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-status {
  display: none;
  margin-top: 14px;
  padding: 13px 18px;
  border-radius: 10px;
  font-size: 14px;
}
.form-status.ok {
  background: rgba(50, 200, 100, 0.08);
  border: 1px solid rgba(50, 200, 100, 0.25);
  color: #4dff9a;
}
.form-status.err {
  background: rgba(255, 60, 60, 0.08);
  border: 1px solid rgba(255, 60, 60, 0.25);
  color: #ff7a7a;
}

/* ────────────────────────────────────────────
   PRIVACY MODAL
──────────────────────────────────────────── */
.modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9997;
  padding: 24px;
}
.modal.active {
  display: flex;
}
.modal-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  max-width: 680px;
  width: 100%;
  max-height: 82vh;
  overflow-y: auto;
  padding: 48px;
  position: relative;
}
.modal-box::-webkit-scrollbar {
  width: 4px;
}
.modal-box::-webkit-scrollbar-thumb {
  background: var(--accent);
}
.modal-box h2 {
  font-size: 24px;
  margin-bottom: 8px;
}
.modal-box .date {
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 28px;
}
.modal-box h3 {
  font-size: 15px;
  font-weight: 700;
  margin: 22px 0 8px;
  color: var(--accent);
}
.modal-box p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}
.modal-close-btn {
  position: absolute;
  top: 18px;
  right: 22px;
  background: rgba(255, 255, 255, 0.08);
  border: none;
  color: var(--text);
  font-size: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.2s;
}
.modal-close-btn:hover {
  background: rgba(255, 255, 255, 0.15);
}

/* ────────────────────────────────────────────
   FOOTER
──────────────────────────────────────────── */
footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 64px 0 40px;
}
.footer-inner {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 48px;
}
.footer-brand img {
  height: 80px;
}
.footer-brand .mav-logo-wrap {
  margin-bottom: 20px;
}
.footer-brand .mav-logo-tagline {
  font-size: 14px;
}
.footer-brand p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
  max-width: 280px;
  margin-bottom: 24px;
}
.footer-col h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 18px;
}
.footer-col a {
  display: block;
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 11px;
  transition: color 0.2s;
}
.footer-col a:hover {
  color: var(--accent);
}
.footer-bottom {
  max-width: 1360px;
  margin: 0 auto;
  padding: 28px 40px 0;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom p,
.footer-bottom a {
  color: var(--muted);
  font-size: 13px;
}
.footer-bottom a:hover {
  color: var(--accent);
}

/* ────────────────────────────────────────────
   FIXED CTA
──────────────────────────────────────────── */
.fixed-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 990;
  align-items: flex-end;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.3s, transform 0.3s;
}
.fixed-cta.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.fixed-cta a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.45);
  transition: 0.2s;
}
.fixed-cta a:hover {
  transform: translateY(-2px);
}
.cta-phone {
  background: var(--accent);
  color: #fff;
}
.cta-wycena {
  background: var(--surface2);
  border: 1px solid var(--border);
  color: var(--text);
}

/* ────────────────────────────────────────────
   REVEAL
──────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}
.reveal.show {
  opacity: 1;
  transform: translateY(0);
}
.reveal-d1 {
  transition-delay: 0.1s;
}
.reveal-d2 {
  transition-delay: 0.2s;
}
.reveal-d3 {
  transition-delay: 0.3s;
}

/* ────────────────────────────────────────────
   RESPONSIVE
──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 860px) {
  :root {
    --nav-h: 62px;
  }
  .nav {
    padding: 0 24px;
  }
  .nav-links {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .nav-logo .mav-logo-tagline {
    font-size: 10px;
    letter-spacing: 0.1em;
  }

  .hero {
    padding: var(--nav-h) 0 60px;
  }
  .hero-inner {
    padding: 0 24px;
  }
  .hero-badge {
    margin-top: 28px;
    background: rgba(255, 106, 0, 0.35);
    border-color: rgba(255, 106, 0, 0.8);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    color: #fff;
  }
  .section {
    padding: 48px 24px;
  }
  .section-full {
    padding: 48px 0;
  }
  .section-full .section-inner {
    padding: 0 24px;
  }
  h2.section-title {
    margin-bottom: 8px;
  }
  .section-lead {
    margin-bottom: 32px;
  }
  .overline {
    margin-bottom: 10px;
  }

  #about {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-photo {
    height: 340px;
  }

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

  .contact-box {
    padding: 24px 20px;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .contact-info {
    margin-bottom: 20px;
  }
  .contact-info .section-title {
    font-size: 28px;
  }
  .contact-info p {
    margin-bottom: 0;
    font-size: 14px;
  }
  .c-detail {
    display: none;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .form-group {
    margin-bottom: 12px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 0 24px;
  }
  footer {
    padding: 48px 0 32px;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    padding: 28px 24px 0;
  }

  .fixed-cta .cta-wycena {
    display: none;
  }
}
@media (max-width: 600px) {
  h1 {
    font-size: 52px;
  }
  .hero-divider {
    gap: 28px;
  }
  .hero-stat .num {
    font-size: 38px;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .g-item {
    height: 150px;
  }
}
