@charset "UTF-8";
:root {
  --gold: #a98f5f;
  --gold-light: #c8ab74;
  --gold-pale: #d8bd85;
  --ink: #1c1c1c;
  --ink-soft: #43403b;
  --ink-muted: #5c5852;
  --grey: #8a847c;
  --cream: #faf8f4;
  --line: #eeebe6;
  --line-warm: #e5e0d8;
  --dark: #14120f;
  --serif: 'Cormorant Garamond', serif;
  --sans: 'Instrument Sans', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #fff;
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--ink) !important;
  text-decoration: none;
}

a:hover:not(.btn-jb, .btn-gold) {
  color: var(--gold) !important;
  text-decoration: none;
}

::-moz-selection {
  background: #ede5d4;
}

::selection {
  background: #ede5d4;
}

.container {
  max-width: 1280px;
}

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 500;
  margin-top: 0 !important;
}

.eyebrow {
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.section-title {
  font-size: calc(34px + 1vw);
  line-height: 1.12;
  margin-bottom: 18px;
  margin-top: 0 !important;
}

.lead-muted {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-muted);
}

.lead-narrow {
  max-width: 62ch;
}

.text-gold {
  color: var(--gold);
}

/* wspólne elementy powtarzane w kilku modułach */
.gold-frame {
  position: absolute;
  top: 14px;
  right: 14px;
  bottom: 14px;
  left: 14px;
  border: 1px solid rgba(200, 171, 116, 0.55);
  pointer-events: none;
}

.icon-ring {
  width: 46px;
  height: 46px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  background: #fff;
  flex-shrink: 0;
  animation: pulseRing 2.4s ease-out infinite;
  transition: background 0.3s ease, color 0.3s ease;
}

.social-circle {
  width: 48px;
  height: 48px;
  border: 1px solid #d9d2c5;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #6b665e !important;
  background: #fff;
  transition: border-color 0.25s ease, color 0.25s ease;
}

.social-circle:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.social-circle + .social-circle {
  margin-left: 14px;
}

/* animacje globalne */
@keyframes pulseRing {
  0% {
    box-shadow: 0 0 0 0 rgba(169, 143, 95, 0.45);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(169, 143, 95, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(169, 143, 95, 0);
  }
}
@keyframes dropIn {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes logosScroll {
  to {
    transform: translateX(calc(-50% - 11px));
  }
}
@keyframes mmIn {
  from {
    opacity: 0;
    transform: translateX(-14px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes mmDot {
  0%, 100% {
    transform: scale(0.65);
    opacity: 0.55;
  }
  50% {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes hbL1 {
  0%, 100% {
    width: 34px;
  }
  50% {
    width: 25px;
  }
}
@keyframes hbL2 {
  0%, 100% {
    width: 22px;
  }
  50% {
    width: 34px;
  }
}
@keyframes hbL3 {
  0%, 100% {
    width: 28px;
  }
  50% {
    width: 19px;
  }
}
/* ===== 00b PRZYCISKI ===== */
.btn-jb {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  padding: 17px 34px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background 0.25s ease, color 0.25s ease;
  border-radius: 0;
  line-height: 1.5;
}

.btn-jb .frame {
  position: absolute;
  top: 4px;
  right: 4px;
  bottom: 4px;
  left: 4px;
  border: 1px dashed rgba(169, 143, 95, 0.5);
  pointer-events: none;
}

.btn-jb:hover {
  background: var(--gold);
  color: #fff !important;
}

.btn-jb .arr {
  display: inline-block;
  transition: transform 0.3s ease;
}

.btn-jb:hover .arr {
  transform: translateX(5px);
}

.btn-jb-sm {
  padding: 16px 30px;
  font-size: 12.5px;
}

.btn-gold {
  background: var(--gold-light);
  color: var(--dark);
  padding: 16px 32px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  transition: background 0.25s ease;
  border-radius: 0;
}

.btn-gold:hover {
  background: var(--gold-pale);
  color: var(--dark);
}

.btn-outline-light-jb {
  border: 1px solid rgba(255, 255, 255, 0.55);
  color: #fff;
  padding: 16px 32px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  transition: background 0.25s ease, border-color 0.25s ease;
  border-radius: 0;
  line-height: 1.5;
}

.btn-outline-light-jb:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.85);
  color: #fff !important;
}

.mb-5 {
  margin-bottom: 48rem !important;
}

.mb-4 {
  margin-bottom: 24rem !important;
}

.mb-3 {
  margin-bottom: 16rem !important;
}

.mt-5 {
  margin-top: 48rem !important;
}

.mr-3 {
  margin-right: 16rem !important;
}

@media (min-width: 992px) {
  .mb-lg-0 {
    margin-bottom: 0 !important;
  }
}
.nawigacja-group {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1030;
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.nawigacja-group .nav-inner {
  padding: 0 40px 0 230px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.nawigacja-group .logo-plate {
  position: absolute;
  top: 0;
  left: 40px;
  z-index: 3;
  background: #fff;
  padding: 16px 34px 20px;
  border: 1px solid var(--line);
  border-top: none;
  box-shadow: 0 20px 40px rgba(28, 28, 28, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
}

.nawigacja-group .logo-plate:hover {
  box-shadow: 0 24px 48px rgba(28, 28, 28, 0.2);
}

.nawigacja-group .logo-plate img {
  height: 136px;
  width: auto;
  display: block;
}

.nawigacja-group .nav-wordmark {
  margin-right: auto;
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.24em;
  color: var(--ink);
  white-space: nowrap;
}

.nawigacja-group .nav-wordmark .gold {
  color: var(--gold);
}

.nawigacja-group .nav-desktop {
  display: flex;
  align-items: center;
  align-self: stretch;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.nawigacja-group .nav-link-jb {
  position: relative;
  padding: 10px 16px;
  transition: color 0.25s ease;
}

.nawigacja-group .nav-link-jb:hover {
  color: var(--gold);
}

.nawigacja-group .nav-link-jb::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 4px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s ease;
}

.nawigacja-group .nav-link-jb:hover::after {
  transform: scaleX(1);
}

.nawigacja-group .nav-drop {
  position: relative;
}

.nawigacja-group a {
  font-size: unset;
}

.nawigacja-group .nav-drop .caret {
  transition: transform 0.25s ease;
  transform: translateY(1px);
}

.nawigacja-group .nav-drop:hover .caret {
  transform: rotate(180deg) translateY(-1px);
}

.nawigacja-group .nav-drop-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  padding-top: 10px;
}

.nawigacja-group .nav-drop:hover .nav-drop-menu,
.nawigacja-group .nav-drop:focus-within .nav-drop-menu {
  display: block;
}

.nawigacja-group .nav-drop-inner {
  background: #fff;
  border: 1px solid var(--line);
  border-top: 2px solid var(--gold);
  box-shadow: 0 24px 56px rgba(28, 28, 28, 0.12);
  min-width: 320px;
  padding: 12px 0;
  display: flex;
  flex-direction: column;
  text-transform: none;
  letter-spacing: 0;
  font-size: 15px;
  font-weight: 400;
  animation: dropIn 0.22s ease;
}

.nawigacja-group .nav-drop-head {
  padding: 8px 26px 12px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid #f3f0ea;
  margin-bottom: 6px;
}

.nawigacja-group .nav-drop-link {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 12px 26px;
  transition: background 0.2s ease, color 0.2s ease, padding-left 0.2s ease;
  color: var(--ink);
}

.nawigacja-group .nav-drop-link:hover {
  background: var(--cream);
  color: var(--gold);
  padding-left: 32px;
}

.nawigacja-group .nav-drop-link .arrow {
  font-size: 17px;
  color: #c9b98f;
  line-height: 1;
  margin-left: 16px;
}

.nawigacja-group .nav-phone {
  margin-left: 18px;
  display: inline-flex;
  align-items: center;
  align-self: stretch;
  padding-left: 34px;
  border-left: 1px solid var(--line-warm);
  letter-spacing: normal;
  text-transform: none;
}

.nawigacja-group .nav-phone:hover .icon-ring {
  background: var(--gold);
  color: #fff;
}

.nawigacja-group .nav-phone-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
}

.nawigacja-group .nav-phone-num {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.04em;
  font-variant-numeric: tabular-nums;
  color: var(--ink);
}

/* hamburger */
.nawigacja-group .nav-burger {
  display: none;
  flex-direction: column;
  align-items: flex-end;
  background: none;
  border: none;
  cursor: pointer;
  padding: 12px 5px;
}

.nawigacja-group .nav-burger .ln {
  display: block;
  height: 1.5px;
  background: var(--ink);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.nawigacja-group .nav-burger .ln + .ln {
  margin-top: 7px;
}

.nawigacja-group .nav-burger .l1 {
  width: 34px;
  animation: hbL1 3s ease-in-out infinite;
}

.nawigacja-group .nav-burger .l2 {
  width: 22px;
  background: var(--gold);
  animation: hbL2 3s ease-in-out 0.35s infinite;
}

.nawigacja-group .nav-burger .l3 {
  width: 28px;
  animation: hbL3 3s ease-in-out 0.7s infinite;
}

.nawigacja-group .nav-burger:hover .ln,
.nawigacja-group .nav-burger.open .ln {
  animation: none;
}

.nawigacja-group .nav-burger:hover .ln {
  width: 34px;
  background: var(--gold);
}

.nawigacja-group .nav-burger.open .l1 {
  width: 34px;
  background: var(--gold);
  transform: translateY(8.5px) rotate(45deg);
}

.nawigacja-group .nav-burger.open .l2 {
  opacity: 0;
  transform: translateX(10px);
}

.nawigacja-group .nav-burger.open .l3 {
  width: 34px;
  background: var(--gold);
  transform: translateY(-8.5px) rotate(-45deg);
}

/* menu mobilne */
.nawigacja-group .mm-panel {
  display: none;
  background: #fff;
  border-top: 1px solid var(--line);
  box-shadow: 0 24px 48px rgba(28, 28, 28, 0.12);
  flex-direction: column;
  padding: 10px 0 18px;
  animation: dropIn 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  max-height: calc(100vh - 60px);
  overflow: auto;
}

.nawigacja-group .mm-panel.open {
  display: flex;
}

.nawigacja-group .mm-head {
  padding: 12px 24px 10px;
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--gold);
}

.nawigacja-group .mm-link {
  position: relative;
  display: flex;
  align-items: center;
  padding: 12px 24px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  opacity: 0;
  animation: mmIn 0.55s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  transition: color 0.25s ease, padding-left 0.3s ease, background 0.25s ease;
}
.nawigacja-group .mm-link:last-of-type {
  margin-top: 12px;
}

.nawigacja-group .mm-link::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  margin-right: 12px;
  animation: mmDot 2.8s ease-in-out infinite;
  animation-delay: inherit;
}

.nawigacja-group .mm-link:hover,
.nawigacja-group .mm-link:active {
  color: var(--gold);
  padding-left: 32px;
  background: var(--cream);
}

.nawigacja-group .mm-link:hover::before,
.nawigacja-group .mm-link:active::before {
  animation: none;
  transform: scale(1.35);
  opacity: 1;
}

.nawigacja-group .mm-panel .mm-link:nth-of-type(2) {
  animation-delay: 0.04s;
}

.nawigacja-group .mm-panel .mm-link:nth-of-type(3) {
  animation-delay: 0.08s;
}

.nawigacja-group .mm-panel .mm-link:nth-of-type(4) {
  animation-delay: 0.12s;
}

.nawigacja-group .mm-panel .mm-link:nth-of-type(5) {
  animation-delay: 0.16s;
}

.nawigacja-group .mm-panel .mm-link:nth-of-type(6) {
  animation-delay: 0.2s;
}

.nawigacja-group .mm-panel .mm-link:nth-of-type(7) {
  animation-delay: 0.26s;
}

.nawigacja-group .mm-panel .mm-link:nth-of-type(8) {
  animation-delay: 0.3s;
}

.nawigacja-group .mm-panel .mm-link:nth-of-type(9) {
  animation-delay: 0.34s;
}

.nawigacja-group .mm-panel .mm-link:nth-of-type(10) {
  animation-delay: 0.38s;
}

.nawigacja-group .mm-divider {
  height: 1px;
  background: var(--line);
  margin: 10px 24px;
}

.nawigacja-group .mm-cta {
  margin-top: 24px;
  background: var(--gold);
  color: #fff;
  padding: 17px 28px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
  display: block;
  opacity: 0;
  animation: mmIn 0.55s cubic-bezier(0.22, 1, 0.36, 1) 0.44s forwards;
  transition: background 0.25s ease;
}

.nawigacja-group .mm-cta:hover {
  background: #b89d6c;
  color: #fff;
}

.nawigacja-group .mm-social {
  margin-top: 26px;
  display: flex;
  justify-content: center;
}

.nawigacja-group .mm-social .social-circle {
  width: 60px;
  height: 60px;
}

@media (max-width: 1150px) {
  .nawigacja-group .nav-inner {
    padding: 0 16px 0 118px;
    height: 64px;
  }
  .nawigacja-group .nav-wordmark {
    font-size: 15px;
    letter-spacing: 0.18em;
    transition: margin-left 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .nawigacja-group .nav-wordmark.open {
    margin-left: 60px;
  }
  .nawigacja-group .nav-desktop {
    display: none;
  }
  .nawigacja-group .nav-burger {
    display: inline-flex;
  }
  .nawigacja-group .logo-plate {
    left: 12px;
    padding: 8px 16px 10px;
    transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
    transform-origin: top left;
  }
  .nawigacja-group .logo-plate img {
    height: 84px;
  }
  .nawigacja-group .logo-plate.open {
    transform: scale(1.5);
  }
  .nawigacja-group .mm-panel.open {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    bottom: 0;
    max-height: none;
    padding: 16px 24px 24px;
    align-items: center;
    justify-content: flex-start;
  }
  .nawigacja-group .mm-panel.open > * {
    width: 340px;
    max-width: 100%;
  }
  .nawigacja-group .mm-panel.open > :first-child {
    margin-top: auto;
  }
  .nawigacja-group .mm-panel.open .mm-social {
    margin-bottom: auto;
  }
}
.stopka-group {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.75);
}

.stopka-group .footer-grid {
  padding: 48px 0 40px;
}

.stopka-group .footer-head {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.stopka-group .footer-link {
  display: block;
  color: var(--ink-soft) !important;
  font-size: 14px;
  margin-bottom: 12px;
}

.stopka-group .footer-link:hover {
  color: var(--gold);
}

.stopka-group .footer-link svg {
  margin-right: 10px;
}

.stopka-group .footer-bottom {
  border-top: 1px solid var(--line);
}

.stopka-group .footer-bottom-inner {
  padding: 20px 0;
  font-size: 12.5px;
  color: var(--grey);
}

.stopka-group .footer-bottom-inner a {
  font-size: 12.5px !important;
}

@media (max-width: 900px) {
  .stopka-group .footer-grid {
    padding: 40px 0 32px;
  }
}