:root {
  --cream: #faf7f2;
  --warm: #f3ece0;
  --gold: #b8965a;
  --gold-dark: #8a6830;
  --gold-light: #f0e4cc;
  --text: #1e1810;
  --text-mid: #5a4a38;
  --text-light: #9a8a78;
  --white: #ffffff;
  --border: #e0d0bc;
  --black: #0a0806;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Jost", "Helvetica Neue", Arial, sans-serif;
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
}
h1,
h2,
h3,
h4,
.serif {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(250, 247, 242, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav-logo {
  text-decoration: none;
}
.nav-logo-main {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 20px;
  font-weight: 500;
  color: var(--text);
  letter-spacing: 0.5px;
  display: block;
}
.nav-logo-sub {
  font-size: 9px;
  letter-spacing: 3px;
  color: var(--gold);
  text-transform: uppercase;
  margin-top: 1px;
  display: block;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
}
.nav-menu > li {
  position: relative;
}
.nav-menu > li > a {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-mid);
  text-decoration: none;
  padding: 8px 14px;
  display: block;
  transition: color 0.2s;
}
.nav-menu > li > a:hover {
  color: var(--gold);
}
.nav-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  border: 1px solid var(--border);
  min-width: 240px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  z-index: 200;
}
.nav-dropdown a {
  display: block;
  padding: 11px 18px;
  font-size: 12px;
  color: var(--text-mid);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  transition: all 0.15s;
}
.nav-dropdown a:last-child {
  border: none;
}
.nav-dropdown a:hover {
  background: var(--cream);
  color: var(--gold);
  padding-left: 24px;
}
.nav-menu li:hover .nav-dropdown {
  display: block;
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-social {
  display: flex;
  gap: 8px;
}
.nav-social a {
  color: var(--text-mid);
  font-size: 19px;
  text-decoration: none;
  transition: color 0.2s;
}
.nav-social a:hover {
  color: var(--gold);
}
.nav-cta {
  background: var(--gold);
  color: var(--white) !important;
  padding: 10px 20px;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s;
  border: none;
  cursor: pointer;
  font-family: "Jost", "Helvetica Neue", Arial, sans-serif;
}
.nav-cta:hover {
  background: var(--gold-dark);
}
.nav-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 26px;
  color: var(--text);
  padding: 4px;
}

.breadcrumb {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
  margin-top: 72px;
}
.breadcrumb-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  font-size: 12px;
  color: var(--text-light);
}
.breadcrumb a {
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.2s;
}
.breadcrumb a:hover {
  color: var(--gold);
}
.breadcrumb span {
  color: var(--gold);
  margin: 0 8px;
}

.page-hero {
  background: var(--text);
  padding: 80px 0 60px;
  margin-top: 72px;
}
.page-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}
.page-hero-eyebrow {
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.page-hero-eyebrow::before {
  content: "";
  display: block;
  width: 28px;
  height: 1px;
  background: var(--gold);
}
.page-hero h1 {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 52px;
  font-weight: 300;
  color: white;
  line-height: 1.15;
  margin-bottom: 16px;
}
.page-hero h1 em {
  font-style: italic;
  color: var(--gold);
}
.page-hero-desc {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
  max-width: 560px;
  font-weight: 300;
}

.section {
  padding: 88px 0;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}
.sec-eyebrow {
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.sec-eyebrow::before {
  content: "";
  display: block;
  width: 28px;
  height: 1px;
  background: var(--gold);
}
.sec-title {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 48px;
  font-weight: 300;
  color: var(--text);
  line-height: 1.15;
}
.sec-title em {
  font-style: italic;
  color: var(--gold-dark);
}
.sec-lead {
  font-size: 15px;
  line-height: 1.85;
  color: var(--text-mid);
  max-width: 560px;
  margin-top: 18px;
  font-weight: 300;
}

.btn {
  display: inline-block;
  padding: 14px 28px;
  font-family: "Jost", "Helvetica Neue", Arial, sans-serif;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
}
.btn-gold {
  background: var(--gold);
  color: white;
}
.btn-gold:hover {
  background: var(--gold-dark);
}
.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.btn-outline-white {
  background: transparent;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.btn-outline-white:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.band {
  background: var(--gold);
  padding: 22px 0;
}
.band-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.band-item {
  display: flex;
  align-items: center;
  gap: 9px;
  color: white;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.band-item i {
  font-size: 15px;
  opacity: 0.75;
}
.band-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
}
.svc-card {
  background: var(--white);
  padding: 32px 24px;
  text-decoration: none;
  display: block;
  transition: background 0.2s;
}
.svc-card:hover {
  background: var(--cream);
}
.svc-card-num {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 38px;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 14px;
}
.svc-card-name {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 18px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 7px;
  line-height: 1.3;
}
.svc-card-desc {
  font-size: 12px;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 14px;
  font-weight: 300;
}
.svc-card-price {
  font-size: 13px;
  color: var(--gold-dark);
  font-weight: 500;
}
.svc-card-link {
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 10px;
  display: block;
}

.price-cat {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--text);
  padding: 28px 0 10px;
  border-bottom: 2px solid var(--border);
  margin-bottom: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}
.price-cat i {
  color: var(--gold);
  font-size: 17px;
}
.price-table {
  width: 100%;
  border-collapse: collapse;
}
.price-table tr {
  border-bottom: 1px solid var(--border);
}
.price-table tr:last-child {
  border: none;
}
.price-table td {
  padding: 13px 0;
  font-size: 14px;
  vertical-align: top;
}
.price-table td:first-child {
  color: var(--text);
  padding-right: 20px;
}
.price-table td:nth-child(2) {
  color: var(--text-light);
  font-size: 12px;
  width: 110px;
}
.price-table td:last-child {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 20px;
  color: var(--gold-dark);
  text-align: right;
  white-space: nowrap;
}
.price-free {
  color: #5a9a70 !important;
}

.faq-list {
  margin-top: 8px;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-q {
  padding: 18px 0;
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 19px;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  user-select: none;
}
.faq-q::after {
  content: "+";
  font-family: "Jost", "Helvetica Neue", Arial, sans-serif;
  font-size: 20px;
  color: var(--gold);
  flex-shrink: 0;
}
.faq-item.open .faq-q::after {
  content: "−";
}
.faq-a {
  display: none;
  padding: 0 0 18px;
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.85;
  font-weight: 300;
}
.faq-item.open .faq-a {
  display: block;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.split-img img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: center top;
}
.split-img-tall img {
  height: 600px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.rev-card {
  background: var(--white);
  padding: 30px 26px;
  border: 1px solid var(--border);
}
.rev-stars {
  color: var(--gold);
  font-size: 13px;
  letter-spacing: 3px;
  margin-bottom: 12px;
}
.rev-text {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 17px;
  font-style: italic;
  font-weight: 300;
  color: var(--text);
  line-height: 1.65;
  margin-bottom: 18px;
}
.rev-who {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-light);
}
.rev-src {
  color: var(--gold);
}

.cta-band {
  background: var(--text);
  padding: 72px 0;
}
.cta-band-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
}
.cta-band h2 {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 42px;
  font-weight: 300;
  color: white;
  line-height: 1.2;
}
.cta-band h2 em {
  font-style: italic;
  color: var(--gold);
}
.cta-band-btns {
  display: flex;
  gap: 12px;
  flex-direction: column;
  align-items: flex-end;
}

.form-box {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 40px;
}
.form-title {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 6px;
}
.form-sub {
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 24px;
}
.form-row {
  margin-bottom: 14px;
}
.form-label {
  display: block;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 6px;
}
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background: var(--cream);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 11px 14px;
  font-family: "Jost", "Helvetica Neue", Arial, sans-serif;
  font-size: 13px;
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--gold);
}
.form-textarea {
  resize: vertical;
  min-height: 90px;
}
.form-note {
  font-size: 11px;
  color: var(--text-light);
  margin-bottom: 16px;
  line-height: 1.6;
}

footer {
  background: var(--black);
  padding: 52px 0 28px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand-name {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 20px;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 6px;
}
.footer-brand-sub {
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--gold);
  text-transform: uppercase;
}
.footer-brand-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.28);
  line-height: 1.7;
  margin-top: 14px;
  font-weight: 300;
}
.footer-col-title {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.22);
  margin-bottom: 14px;
}
.footer-col a {
  display: block;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.38);
  text-decoration: none;
  margin-bottom: 9px;
  transition: color 0.2s;
}
.footer-col a:hover {
  color: var(--gold);
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.18);
  letter-spacing: 0.5px;
}
.footer-social {
  display: flex;
  gap: 14px;
}
.footer-social a {
  color: rgba(255, 255, 255, 0.22);
  font-size: 19px;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-social a:hover {
  color: var(--gold);
}

.fi {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.fi.v {
  opacity: 1;
  transform: translateY(0);
}
.fi.d1 {
  transition-delay: 0.1s;
}
.fi.d2 {
  transition-delay: 0.2s;
}
.fi.d3 {
  transition-delay: 0.3s;
}

@media (max-width: 768px) {
  /* ── NAV ── */
  /* backdrop-filter makes <nav> a containing block for its fixed children,
     which collapsed the full-screen mobile menu to a 1px sliver. Drop it on
     phones; the nav background is near-opaque, so the blur is not missed. */
  nav {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  .nav-inner {
    padding: 0 14px;
    height: 60px;
  }
  .nav-logo-main {
    font-size: 17px;
  }
  .nav-menu {
    display: none;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    flex-direction: column;
    padding: 0;
    overflow-y: auto;
    z-index: 999;
    border-top: 1px solid var(--border);
  }
  .nav-menu.open {
    display: flex;
  }
  .nav-menu > li {
    border-bottom: 1px solid var(--border);
  }
  .nav-menu > li > a {
    padding: 14px 18px;
    font-size: 13px;
    display: block;
    color: var(--text);
    letter-spacing: 0.5px;
  }
  .nav-dropdown {
    display: block !important;
    position: static !important;
    box-shadow: none !important;
    border: none !important;
    background: var(--cream) !important;
    min-width: unset !important;
  }
  .nav-dropdown a {
    padding: 10px 18px 10px 30px !important;
    font-size: 12px !important;
    border-bottom: 1px solid var(--border) !important;
    color: var(--text-mid) !important;
  }
  .nav-dropdown a:last-child {
    border-bottom: none !important;
  }
  .nav-hamburger {
    display: block;
  }
  .nav-social {
    display: none;
  }
  .nav-cta {
    padding: 8px 12px;
    font-size: 10px;
    letter-spacing: 1px;
    white-space: nowrap;
  }

  /* ── HERO (strona główna) ── */
  .hero-section {
    grid-template-columns: 1fr !important;
    min-height: auto !important;
  }
  .hero-img {
    height: 55vw;
    order: -1;
  }
  .hero-text {
    padding: 76px 18px 44px !important;
  }
  .hero-section h1 {
    font-size: 36px !important;
    line-height: 1.15 !important;
  }
  .hero-section .hero-btns {
    flex-wrap: wrap;
  }
  .hero-section .hero-stats {
    gap: 20px;
    flex-wrap: wrap;
  }

  /* ── PAGE HERO (podstrony) ── */
  .page-hero {
    padding: 44px 0 32px;
    margin-top: 60px;
  }
  .page-hero-inner {
    padding: 0 18px;
  }
  .page-hero h1 {
    font-size: 32px !important;
    line-height: 1.2;
  }
  .page-hero-desc {
    font-size: 13px;
  }

  /* ── BREADCRUMB ── */
  .breadcrumb-inner {
    padding: 0 18px;
  }

  /* ── CONTAINER ── */
  .container {
    padding: 0 18px;
  }

  /* ── SECTIONS ── */
  .section {
    padding: 52px 0;
  }

  /* ── TYPOGRAPHY ── */
  .sec-title {
    font-size: 30px !important;
  }
  .sec-lead {
    font-size: 14px;
  }

  /* ── GRIDS → single column ── */
  .split {
    grid-template-columns: 1fr !important;
    gap: 28px;
  }
  .split-img img,
  .split-img-tall img {
    height: 55vw !important;
  }

  /* Siatka usług — 2 kolumny na telefon */
  .services-grid {
    grid-template-columns: 1fr 1fr !important;
  }
  .svc-card {
    padding: 20px 16px;
  }
  .svc-card-num {
    font-size: 28px;
  }
  .svc-card-name {
    font-size: 15px;
  }

  /* Opinie — 1 kolumna */
  .reviews-grid {
    grid-template-columns: 1fr !important;
    gap: 14px;
  }

  /* Cennik — 1 kolumna */
  .cennik-grid {
    grid-template-columns: 1fr !important;
    gap: 0;
  }
  .price-cat {
    font-size: 18px;
    padding: 20px 0 8px;
  }
  .price-table td {
    font-size: 13px;
  }
  .price-table td:last-child {
    font-size: 17px !important;
  }

  /* FAQ — 1 kolumna */
  .faq-grid-wrapper > div:first-child + div {
    margin-top: 32px;
  }

  /* CTA band */
  .cta-band {
    padding: 48px 0;
  }
  .cta-band-inner {
    grid-template-columns: 1fr !important;
    gap: 20px;
    padding: 0 18px;
  }
  .cta-band h2 {
    font-size: 28px !important;
  }
  .cta-band-btns {
    flex-direction: column;
    align-items: stretch;
  }
  .cta-band-btns .btn {
    text-align: center;
    width: 100%;
  }

  /* Band (złoty pasek) */
  .band-inner {
    gap: 14px;
    padding: 0 18px;
    justify-content: flex-start;
  }
  .band-dot {
    display: none;
  }
  .band-item {
    font-size: 10px;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 20px;
  }
  .footer-inner {
    padding: 0 18px;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .footer-brand-desc {
    display: none;
  }

  /* Galeria */
  .galeria-grid {
    grid-template-columns: 1fr 1fr !important;
    grid-template-rows: auto !important;
  }
  .galeria-tall {
    grid-row: span 1 !important;
  }

  /* Formularz */
  .form-box {
    padding: 24px 18px;
  }
  .form-title {
    font-size: 22px;
  }

  /* Cookie banner */
  #cookie-banner .cookie-inner {
    flex-direction: column;
    gap: 12px;
  }
  #cookie-banner {
    padding: 16px 18px;
  }

  /* Inline grids collapse on phones. Classes, not style-attribute matching. */
  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr !important;
  }
  .grid-4 {
    grid-template-columns: 1fr 1fr !important;
  }
}

/* Icons — Tabler outline SVGs, masked so each takes the current text
   colour and scales with font-size, exactly like the old icon font did. */
.ti {
  display: inline-block;
  width: 1em;
  height: 1em;
  flex-shrink: 0;
  vertical-align: -0.125em;
  background-color: currentColor;
  -webkit-mask: var(--ti) no-repeat center / contain;
  mask: var(--ti) no-repeat center / contain;
}
.ti-bolt {
  --ti: url("../icons/bolt.svg");
}
.ti-brand-facebook {
  --ti: url("../icons/brand-facebook.svg");
}
.ti-brand-instagram {
  --ti: url("../icons/brand-instagram.svg");
}
.ti-calendar {
  --ti: url("../icons/calendar.svg");
}
.ti-camera {
  --ti: url("../icons/camera.svg");
}
.ti-certificate {
  --ti: url("../icons/certificate.svg");
}
.ti-check {
  --ti: url("../icons/check.svg");
}
.ti-circle-dotted {
  --ti: url("../icons/circle-dotted.svg");
}
.ti-clock {
  --ti: url("../icons/clock.svg");
}
.ti-device-desktop {
  --ti: url("../icons/device-desktop.svg");
}
.ti-droplet {
  --ti: url("../icons/droplet.svg");
}
.ti-leaf {
  --ti: url("../icons/leaf.svg");
}
.ti-map-pin {
  --ti: url("../icons/map-pin.svg");
}
.ti-menu-2 {
  --ti: url("../icons/menu-2.svg");
}
.ti-needle {
  --ti: url("../icons/needle.svg");
}
.ti-package {
  --ti: url("../icons/package.svg");
}
.ti-phone {
  --ti: url("../icons/phone.svg");
}
.ti-sparkles {
  --ti: url("../icons/sparkles.svg");
}
.ti-stethoscope {
  --ti: url("../icons/stethoscope.svg");
}
.ti-tag {
  --ti: url("../icons/tag.svg");
}
.ti-wave-sine {
  --ti: url("../icons/wave-sine.svg");
}
