    :root {
      --bg: #16110d;
      --bg-soft: #211812;
      --panel: rgba(255, 248, 240, 0.055);
      --panel-strong: rgba(255, 248, 240, 0.08);
      --wood: #6f4d35;
      --wood-deep: #3b281c;
      --gold: #c8a06a;
      --gold-soft: #ecd6b4;
      --text: #efe5d8;
      --muted: #c9b7a4;
      --line: rgba(232, 214, 191, 0.12);
      --shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
      --radius: 22px;
      --max: 1220px;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: Arial, Helvetica, sans-serif;
      color: var(--text);
      line-height: 1.65;
      background:
        radial-gradient(circle at top left, rgba(200, 160, 106, 0.09), transparent 28%),
        radial-gradient(circle at top right, rgba(111, 77, 53, 0.16), transparent 30%),
        linear-gradient(180deg, #120d0a 0%, #19120d 32%, #120d0a 100%);
      min-height: 100vh;
    }

    body::before {
      content: "";
      position: fixed;
      inset: 0;
      pointer-events: none;
      background:
        linear-gradient(rgba(255,255,255,0.01), rgba(255,255,255,0.01)),
        repeating-linear-gradient(
          90deg,
          rgba(255,255,255,0.012) 0,
          rgba(255,255,255,0.012) 1px,
          transparent 1px,
          transparent 120px
        );
      opacity: 0.35;
    }

    img {
      max-width: 100%;
      display: block;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    .container {
      width: min(92%, var(--max));
      margin: 0 auto;
    }

    .section {
      padding: 100px 0;
      position: relative;
    }

    .section-title {
      font-family: Georgia, "Times New Roman", serif;
      font-size: clamp(34px, 4vw, 54px);
      line-height: 1.06;
      letter-spacing: 0.2px;
      margin-bottom: 16px;
      color: var(--gold-soft);
    }

    .section-lead {
      max-width: 760px;
      color: var(--muted);
      font-size: 17px;
      margin-bottom: 42px;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 18px;
      padding: 8px 14px;
      border: 1px solid rgba(200, 160, 106, 0.22);
      border-radius: 999px;
      font-size: 12px;
      letter-spacing: 1.6px;
      text-transform: uppercase;
      color: var(--gold-soft);
      background: rgba(255, 248, 240, 0.03);
    }

    .eyebrow::before {
      content: "";
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: linear-gradient(145deg, var(--gold-soft), var(--gold));
      box-shadow: 0 0 18px rgba(200, 160, 106, 0.55);
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 54px;
      padding: 14px 26px;
      border-radius: 999px;
      border: 1px solid transparent;
      font-weight: 700;
      letter-spacing: 0.2px;
      transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
      cursor: pointer;
    }

    .btn-primary {
      background: linear-gradient(145deg, #d8b27c, #aa7a47);
      color: #1b120d;
      box-shadow: 0 12px 28px rgba(200, 160, 106, 0.18);
    }

    .btn-primary:hover {
      transform: translateY(-2px);
    }

    .btn-secondary {
      background: transparent;
      color: var(--text);
      border-color: rgba(232, 214, 191, 0.16);
    }

    .btn-secondary:hover {
      background: rgba(255, 248, 240, 0.05);
      border-color: rgba(232, 214, 191, 0.28);
      transform: translateY(-2px);
    }

    header {
      position: sticky;
      top: 0;
      z-index: 20;
      backdrop-filter: blur(12px);
      background: rgba(15, 10, 8, 0.7);
      border-bottom: 1px solid rgba(232, 214, 191, 0.08);
    }

    .topbar {
      min-height: 82px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 16px;
    }

    .logo-mark {
      width: 190px;
      height: 54px;
      border-radius: 18px;
      border: 1px solid rgba(232, 214, 191, 0.14);
      background:
        linear-gradient(145deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02)),
        linear-gradient(145deg, #5b3c28, #24160f);
      display: grid;
      place-items: center;
      color: var(--gold-soft);
      font-size: 11px;
      font-weight: 700;
      text-align: center;
      line-height: 1.15;
      box-shadow: var(--shadow);
    }

    .logo-text strong {
      display: block;
      font-family: Georgia, "Times New Roman", serif;
      font-size: 18px;
      letter-spacing: 0.5px;
      color: var(--gold-soft);
    }

    .logo-text span {
      color: var(--muted);
      font-size: 13px;
    }

    nav ul {
      display: flex;
      gap: 22px;
      list-style: none;
      flex-wrap: wrap;
    }

    nav a {
      color: var(--muted);
      font-size: 15px;
      transition: color 0.25s ease;
    }

    nav a:hover {
      color: var(--gold-soft);
    }

    .hero {
      padding: 110px 0 80px;
      overflow: hidden;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1.02fr 0.98fr;
      gap: 42px;
      align-items: center;
    }

    .hero h1 {
      font-family: Georgia, "Times New Roman", serif;
      font-size: clamp(44px, 6vw, 78px);
      line-height: 0.98;
      letter-spacing: -0.6px;
      margin-bottom: 22px;
      max-width: 760px;
      color: #f4eadf;
    }

    .hero p {
      max-width: 640px;
      font-size: 18px;
      color: var(--muted);
      margin-bottom: 32px;
    }

    .hero-actions {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
      margin-bottom: 34px;
    }

    .hero-meta {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
      max-width: 760px;
    }

    .meta-card,
    .tile,
    .panel,
    .subpage-card,
    .review-card {
      background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.035));
      border: 1px solid var(--line);
      box-shadow: var(--shadow);
      backdrop-filter: blur(8px);
    }

    .meta-card {
      border-radius: 18px;
      padding: 18px 18px 16px;
    }

    .meta-card strong {
      display: block;
      margin-bottom: 6px;
      color: var(--gold-soft);
      font-size: 15px;
    }

    .meta-card span {
      color: var(--muted);
      font-size: 14px;
    }

    .hero-visual {
      position: relative;
      min-height: 600px;
      border-radius: 30px;
      overflow: hidden;
      border: 1px solid rgba(232, 214, 191, 0.12);
      box-shadow: 0 28px 80px rgba(0, 0, 0, 0.38);
      background:
        linear-gradient(180deg, rgba(14, 10, 7, 0.1), rgba(14, 10, 7, 0.72)),
        url('images/hero.jpg') center/cover no-repeat;
    }

    .hero-visual::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(145deg, rgba(255,255,255,0.05), transparent 35%, transparent 65%, rgba(255,255,255,0.03));
      pointer-events: none;
    }

    .floating-card {
      position: absolute;
      left: 26px;
      right: 26px;
      bottom: 26px;
      padding: 24px;
      border-radius: 22px;
      background: rgba(21, 15, 11, 0.8);
      border: 1px solid rgba(232, 214, 191, 0.14);
      box-shadow: var(--shadow);
    }

    .floating-card strong {
      display: block;
      margin-bottom: 8px;
      color: var(--gold-soft);
      font-size: 17px;
    }

    .floating-card p {
      color: var(--muted);
      margin: 0;
      font-size: 15px;
    }

    .subpages {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 18px;
      margin-top: 38px;
    }

    .subpage-card {
      border-radius: 20px;
      padding: 24px;
    }

    .subpage-card h3,
    .tile h3,
    .panel h3,
    .review-card strong {
      color: var(--gold-soft);
      margin-bottom: 10px;
      font-family: Georgia, "Times New Roman", serif;
      font-size: 24px;
      font-weight: 400;
    }

    .subpage-card p,
    .tile p,
    .panel p,
    .review-card p,
    .contact-list p {
      color: var(--muted);
    }

    .about-grid,
    .contact-grid,
    .signature-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 30px;
      align-items: stretch;
    }

    .panel {
      border-radius: 24px;
      padding: 32px;
    }

    .panel hr {
      border: 0;
      height: 1px;
      background: var(--line);
      margin: 24px 0;
    }

    .image-placeholder,
    .gallery-item {
      border-radius: 24px;
      border: 1px dashed rgba(232, 214, 191, 0.2);
      background:
        linear-gradient(145deg, rgba(255,255,255,0.03), rgba(255,255,255,0.015)),
        linear-gradient(145deg, rgba(111, 77, 53, 0.2), rgba(21, 15, 11, 0.25));
      display: grid;
      place-items: center;
      text-align: center;
      padding: 24px;
      color: var(--muted);
      min-height: 420px;
      box-shadow: var(--shadow);
    }

    .image-placeholder strong,
    .gallery-item strong {
      display: block;
      color: var(--gold-soft);
      font-size: 18px;
      margin-bottom: 8px;
      font-family: Georgia, "Times New Roman", serif;
      font-weight: 400;
    }

    .offer-grid,
    .benefits-grid,
    .reviews-grid,
    .gallery-grid {
      display: grid;
      gap: 22px;
    }

    .offer-grid,
    .benefits-grid,
    .reviews-grid {
      grid-template-columns: repeat(3, 1fr);
    }

    .gallery-grid {
      grid-template-columns: repeat(3, 1fr);
    }

    .tile,
    .review-card {
      border-radius: 22px;
      padding: 28px;
    }

    .tile-number {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 42px;
      height: 42px;
      margin-bottom: 18px;
      border-radius: 50%;
      border: 1px solid rgba(232, 214, 191, 0.16);
      color: var(--gold-soft);
      font-size: 13px;
      letter-spacing: 1px;
    }

    .signature-grid .panel:first-child {
      background:
        radial-gradient(circle at top right, rgba(200,160,106,0.08), transparent 35%),
        linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.035));
    }

    .quote {
      font-size: 18px;
      line-height: 1.7;
      margin-bottom: 18px;
      color: #efe0cf;
      font-style: italic;
    }

    form {
      display: grid;
      gap: 16px;
    }

    input,
    textarea {
      width: 100%;
      padding: 16px 18px;
      border-radius: 16px;
      border: 1px solid rgba(232, 214, 191, 0.11);
      background: rgba(255,255,255,0.045);
      color: var(--text);
      font: inherit;
      outline: none;
      transition: border-color 0.25s ease, background 0.25s ease;
    }

    input::placeholder,
    textarea::placeholder {
      color: #ae9b87;
    }

    input:focus,
    textarea:focus {
      border-color: rgba(200, 160, 106, 0.38);
      background: rgba(255,255,255,0.06);
    }

    textarea {
      min-height: 170px;
      resize: vertical;
    }

    .contact-list {
      display: grid;
      gap: 12px;
      margin-bottom: 24px;
    }

    .contact-list strong {
      color: var(--gold-soft);
    }

    footer {
      padding: 34px 0 54px;
      border-top: 1px solid rgba(232, 214, 191, 0.08);
      background: rgba(8, 6, 5, 0.35);
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 24px;
      align-items: start;
    }

    .footer-grid h3 {
      font-family: Georgia, "Times New Roman", serif;
      font-weight: 400;
      color: var(--gold-soft);
      margin-bottom: 12px;
      font-size: 22px;
    }

    .footer-grid p,
    .footer-grid a,
    .footer-note {
      color: var(--muted);
    }

    .footer-note {
      margin-top: 18px;
      max-width: 340px;
    }

    @media (max-width: 1080px) {
      .hero-grid,
      .about-grid,
      .contact-grid,
      .signature-grid,
      .footer-grid,
      .offer-grid,
      .benefits-grid,
      .reviews-grid,
      .gallery-grid,
      .subpages,
      .hero-meta {
        grid-template-columns: 1fr;
      }

      .hero-visual {
        min-height: 480px;
      }
    }

    @media (max-width: 860px) {
      nav {
        display: none;
      }

      .section {
        padding: 78px 0;
      }

      .hero {
        padding-top: 78px;
      }

      .hero h1 {
        font-size: clamp(38px, 11vw, 58px);
      }
    }
/* ===== Formularz zamówienia / InPost ===== */
.order-wrap {
  max-width: 860px;
  margin: 0 auto;
}

.order-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.035));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
  border-radius: 24px;
  padding: 32px;
}

.order-title {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 3.5vw, 40px);
  line-height: 1.1;
  color: var(--gold-soft);
  margin-bottom: 10px;
}

.order-lead {
  color: var(--muted);
  margin-bottom: 28px;
}

.order-form {
  display: grid;
  gap: 22px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-field {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.form-field-full {
  grid-column: 1 / -1;
}

.form-label {
  font-size: 14px;
  color: var(--gold-soft);
  letter-spacing: 0.2px;
}

.form-help {
  font-size: 13px;
  color: var(--muted);
  margin-top: 4px;
}

.order-form input {
  min-height: 56px;
}

.geo-section {
  grid-column: 1 / -1;
  display: grid;
  gap: 12px;
}

.geo-box {
  width: 100%;
  height: 420px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  z-index: 1;
  border: 1px solid rgba(232, 214, 191, 0.12);
  background:
    linear-gradient(145deg, rgba(255,255,255,0.03), rgba(255,255,255,0.015)),
    linear-gradient(145deg, rgba(111, 77, 53, 0.2), rgba(21, 15, 11, 0.25));
  box-shadow: var(--shadow);
}

.geo-box inpost-geowidget {
  display: block;
  width: 100%;
  height: 100%;
}

.selected-point {
  display: none;
  padding: 16px 18px;
  border-radius: 16px;
  border: 1px solid rgba(200, 160, 106, 0.22);
  background: rgba(255, 248, 240, 0.04);
  color: var(--text);
}

.selected-point.is-visible {
  display: block;
}

.selected-point strong {
  display: block;
  margin-bottom: 6px;
  color: var(--gold-soft);
}

.order-actions {
  grid-column: 1 / -1;
  display: flex;
  justify-content: flex-start;
  margin-top: 18px;
  position: relative;
  z-index: 2;
}

.order-actions .btn {
  min-width: 220px;
}

@media (max-width: 860px) {
  .order-card {
    padding: 22px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .geo-box {
    height: 360px;
  }

  .order-actions .btn {
    width: 100%;
  }
}



/* checkbox faktura */
.checkbox-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.checkbox-row input[type="checkbox"] {
  appearance: auto;
  -webkit-appearance: checkbox;
  width: 20px !important;
  height: 20px !important;
  min-height: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  border-radius: 4px;
  accent-color: var(--gold);
  flex: 0 0 auto;
  display: block;
}

.checkbox-row label {
  margin: 0 !important;
  padding: 0 !important;
  line-height: 1.4;
  color: var(--text);
  cursor: pointer;
}