/* === Congenial font === */
@font-face {
  font-family: "Congenial";
  src: url("assets/fonts/Congenial_Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Congenial";
  src: url("assets/fonts/Congenial_Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
:root {
  --bg: #f6efe5;
  --bg-soft: #efe2cf;
  --paper: rgba(255,255,255,0.62);
  --paper-strong: rgba(255,255,255,0.74);
  --text: #201b16;
  --muted: #6f6356;
  --gold: #b99763;
  --gold-deep: #8f6c3c;
  --line: rgba(45, 31, 15, 0.10);
  --shadow: 0 24px 80px rgba(39, 24, 8, 0.10);
  --shadow-soft: 0 18px 56px rgba(39, 24, 8, 0.12);
  --radius-xl: 32px;
  --radius-lg: 22px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(192,159,109,0.16), transparent 30%),
    radial-gradient(circle at 90% 10%, rgba(255,255,255,0.75), transparent 24%),
    linear-gradient(180deg, #f8f2e9 0%, #f2e8da 55%, #f8f3ec 100%);
  font-family: "Inter", system-ui, sans-serif;
  line-height: 1.6;
}

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

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(16px);
  background: rgba(250, 245, 238, 0.72);
  border-bottom: 1px solid rgba(64, 43, 17, 0.08);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 84px;
}

.brand {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-mark {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 0.11em;
}

.brand-tag {
  margin-top: 8px;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--muted);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.site-nav a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #4e4337;
  transition: color .25s ease, opacity .25s ease;
}

.site-nav a:hover { color: var(--gold-deep); }

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 0;
  width: 42px;
  height: 42px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #2a231b;
  margin: 5px auto;
  transition: .3s ease;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.92rem;
  letter-spacing: 0.06em;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
}

.btn:hover { transform: translateY(-1px); }

.btn-gold {
  background: linear-gradient(135deg, #c6a675, #b28b55);
  color: white;
  box-shadow: 0 18px 40px rgba(168, 125, 63, 0.28);
}

.btn-gold:hover { box-shadow: 0 22px 46px rgba(168, 125, 63, 0.34); }

.btn-ghost {
  border-color: rgba(63, 45, 21, 0.16);
  background: rgba(255,255,255,0.38);
  color: var(--text);
}

.btn-ghost.light {
  border-color: rgba(255,255,255,0.24);
  background: rgba(255,255,255,0.08);
  color: #fff;
}

.btn-ghost.dark { background: rgba(22,16,11,0.06); }

.btn-nav {
  min-height: 44px;
  padding: 0 18px;
  background: rgba(185,151,99,0.12);
  border-color: rgba(185,151,99,0.28);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 58px 0 54px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 16% 18%, rgba(193, 153, 101, 0.28), transparent 22%),
    radial-gradient(circle at 83% 18%, rgba(255,255,255,0.28), transparent 18%),
    linear-gradient(135deg, #b48c57 0%, #87623a 40%, #2e241d 100%);
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 24%, rgba(255,255,255,0.08), transparent 24%),
    linear-gradient(90deg, rgba(19,14,10,0.50) 0%, rgba(19,14,10,0.36) 45%, rgba(19,14,10,0.14) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.20), rgba(0,0,0,0.44));
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: center;
  min-height: calc(100vh - 148px);
}

.hero-copy { color: #fff; }

.eyebrow {
  margin: 0 0 18px;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: rgba(255,255,255,0.84);
}

.eyebrow.dark { color: var(--gold-deep); }

.hero-title,
h1, h2, h3 {
  font-family: "Playfair Display", serif;
  line-height: .98;
  letter-spacing: -0.03em;
  margin: 0;
}

.hero-title {
  max-width: 780px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.24);
}

.hero-title-main {
  display: block;
  font-size: clamp(2.8rem, 7.6vw, 5.8rem);
  font-weight: 600;
}

.hero-title-sub {
  display: block;
  margin-top: 12px;
  font-size: clamp(1.02rem, 2.2vw, 1.55rem);
  font-weight: 500;
  color: rgba(255,255,255,0.86);
  letter-spacing: 0.01em;
}

.hero-text {
  max-width: 700px;
  margin: 24px 0 0;
  font-size: 1.08rem;
  color: rgba(255,255,255,0.84);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.hero-actions.center { justify-content: center; }

.hero-notes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.hero-notes div,
.feature-card,
.quote-card,
.cta-box,
.media-card,
.hero-card-frame {
  background: var(--paper);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(60, 43, 23, 0.08);
  box-shadow: var(--shadow);
}

.hero-notes div {
  padding: 18px 18px 16px;
  border-radius: 20px;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 16px 38px rgba(0,0,0,0.12);
}

.hero-notes strong {
  display: block;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  color: #fff;
}

.hero-notes span {
  display: block;
  margin-top: 6px;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.72);
}

.hero-card { position: relative; }

.hero-card-frame {
  position: relative;
  border-radius: 36px;
  padding: 28px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 30px 80px rgba(0,0,0,0.18);
}

.logo-float-wrap { overflow: visible; }

.hero-logo {
  width: 100%;
  border-radius: 26px;
  aspect-ratio: 0.92;
  object-fit: cover;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.22));
}

.logo-float {
  animation: logoFloat 6.2s ease-in-out infinite;
  transform-origin: center center;
  will-change: transform;
}

@keyframes logoFloat {
  0% { transform: translateY(0px) rotate(0deg); }
  25% { transform: translateY(-6px) rotate(-0.5deg); }
  50% { transform: translateY(-10px) rotate(0deg); }
  75% { transform: translateY(-6px) rotate(0.5deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}

.seal {
  position: absolute;
  right: 20px;
  bottom: 20px;
  width: 118px;
  height: 118px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-align: center;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: white;
  background: radial-gradient(circle at 30% 30%, #d8b687, #9b7646);
  box-shadow: 0 14px 30px rgba(124, 91, 39, 0.28);
}

.section { padding: 96px 0; }

.soft-section {
  background: linear-gradient(180deg, rgba(255,255,255,0.34), rgba(255,255,255,0.16));
}

.intro-grid,
.standard-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
}

.media-card {
  border-radius: var(--radius-xl);
  padding: 18px;
}

.media-card img {
  border-radius: 24px;
  width: 100%;
  aspect-ratio: 0.9;
  object-fit: cover;
}

.section-head {
  max-width: 760px;
  margin-bottom: 34px;
}

h2 {
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 600;
}

.intro-copy p,
.standard-copy p,
.feature-card p,
.cta-text {
  font-size: 1.02rem;
  color: #584d41;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.feature-card {
  border-radius: 28px;
  padding: 30px;
}

.feature-no {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 18px;
}

h3 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.standard-list {
  list-style: none;
  padding: 0;
  margin: 26px 0 0;
  display: grid;
  gap: 14px;
}

.standard-list li {
  position: relative;
  padding-left: 28px;
  font-size: 1rem;
  color: #4e4337;
}

.standard-list li::before {
  content: "✦";
  position: absolute;
  left: 0;
  top: -1px;
  color: var(--gold-deep);
}

.quote-card {
  border-radius: 34px;
  padding: 40px;
}

.quote-card p {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
}

.quote-card span {
  display: block;
  margin-top: 20px;
  font-size: 0.84rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

.cta-section {
  padding-top: 40px;
  padding-bottom: 110px;
}

.cta-box {
  border-radius: 36px;
  padding: 52px;
  text-align: center;
  background: var(--paper-strong);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin: 30px 0 18px;
}

.contact-grid div {
  padding: 20px;
  border-radius: 22px;
  background: rgba(255,255,255,0.48);
  border: 1px solid rgba(71, 48, 17, 0.08);
}

.contact-grid span {
  display: block;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
}

.contact-grid strong {
  display: block;
  margin-top: 10px;
  font-size: 1rem;
}

.site-footer {
  border-top: 1px solid rgba(64, 43, 17, 0.08);
  background: rgba(255,255,255,0.35);
}

.footer-wrap {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: #62574b;
  font-size: 0.9rem;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s ease, transform .8s ease;
}

.reveal.delay-1 { transition-delay: .12s; }
.reveal.delay-2 { transition-delay: .24s; }

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1024px) {
  .hero-grid,
  .intro-grid,
  .standard-grid,
  .feature-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-notes {
    grid-template-columns: 1fr;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 20px;
    left: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding: 18px;
    border-radius: 24px;
    background: rgba(250,245,238,0.96);
    border: 1px solid rgba(64,43,17,0.08);
    box-shadow: var(--shadow);
  }

  .site-nav.open { display: flex; }
  .nav-toggle { display: block; }

  .hero { padding-top: 34px; }
  .hero-grid { min-height: auto; }
  .hero-card { max-width: 560px; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 28px, 1180px); }
  .nav-wrap { min-height: 74px; }
  .brand-mark { font-size: 1.7rem; }
  .section { padding: 74px 0; }
  .feature-card,
  .cta-box,
  .quote-card,
  .hero-card-frame { padding: 24px; }
  .hero-title-sub { margin-top: 10px; }
  .footer-wrap {
    min-height: auto;
    padding: 18px 0;
    flex-direction: column;
    align-items: flex-start;
  }
}

/* === OPINIE 1:1 === */

.section-intro {
  max-width: 760px;
  margin: 18px 0 0;
  font-size: 1.02rem;
  color: #584d41;
}

.testimonials-section {
  padding-top: 40px;
}

.testimonial-slider {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
}

.testimonial-viewport {
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  gap: 22px;
  transition: transform .55s ease;
  will-change: transform;
}

.testimonial-card {
  flex: 0 0 calc((100% - 44px) / 3);
  min-height: 260px;
  padding: 30px;
  border-radius: 28px;
  background: var(--paper-strong);
  border: 1px solid rgba(60, 43, 23, 0.08);
  box-shadow: var(--shadow-soft);
  display: flex;
  align-items: flex-start;
  position: relative;
}

.testimonial-card::before {
  content: "“";
  position: absolute;
  top: 18px;
  left: 22px;
  font-family: "Playfair Display", serif;
  font-size: 4rem;
  line-height: 1;
  color: rgba(185,151,99,0.22);
}

.testimonial-card p {
  position: relative;
  margin: 0;
  padding-top: 30px;
  font-size: 1rem;
  color: #43382d;
}

.slider-btn {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  border: 1px solid rgba(60, 43, 23, 0.12);
  background: rgba(255,255,255,0.62);
  color: var(--gold-deep);
  font-size: 2rem;
  line-height: 1;
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
  transition: transform .25s ease, background .25s ease, color .25s ease;
}

.slider-btn:hover {
  transform: translateY(-1px);
  background: rgba(255,255,255,0.9);
}

.slider-btn:disabled {
  opacity: .45;
  cursor: default;
  transform: none;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 0;
  background: rgba(143,108,60,0.22);
  cursor: pointer;
  transition: transform .25s ease, background .25s ease, width .25s ease;
}

.slider-dot.is-active {
  width: 28px;
  background: linear-gradient(135deg, #c6a675, #b28b55);
}

.testimonials-head {
  text-align: center;
  margin-inline: auto;
}

.testimonials-head .section-intro {
  margin-inline: auto;
}

.featured-testimonial {
  position: relative;
  margin: 0 auto 34px;
  max-width: 980px;
  padding: 44px 46px 34px;
  border-radius: 34px;

  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.85),
    rgba(255,255,255,0.7)
  ); /* 🔥 PRZYWRÓCONE */

  border: 1px solid rgba(60, 43, 23, 0.06);

  box-shadow: 0 18px 50px rgba(39, 24, 8, 0.08); /* delikatny */
}

.featured-quote-mark {
  position: absolute;
  top: 10px;
  left: 24px;
  font-family: "Playfair Display", serif;
  font-size: 7rem;
  line-height: 1;
  color: rgba(185,151,99,0.18);
}

.featured-testimonial-text {
  position: relative;
  margin: 0;
  padding-left: 28px;
  font-family: "Playfair Display", serif;
  font-size: clamp(1.5rem, 2.6vw, 2.3rem);
  line-height: 1.2;
  color: #2d241b;
}

.featured-testimonial-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 24px;
  padding-left: 28px;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold-deep);
}

.meta-sep {
  width: 42px;
  height: 1px;
  background: rgba(143,108,60,0.34);
}

.premium-slider {
  gap: 16px;
  align-items: stretch;
}

.premium-card {
  flex: 0 0 calc((100% - 24px) / 2);
  min-height: 300px;
  padding: 26px 26px 24px;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(255,255,255,0.72), rgba(255,255,255,0.58));
}

.premium-card::before {
  top: 16px;
  left: 18px;
  font-size: 3.2rem;
  color: rgba(185,151,99,0.16);
}

.testimonial-card-top {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}

.testimonial-badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(185,151,99,0.12);
  border: 1px solid rgba(185,151,99,0.18);
  color: var(--gold-deep);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.premium-card p {
  padding-top: 18px;
  font-size: 1.02rem;
  line-height: 1.75;
}

.testimonial-meta {
  margin-top: auto;
  padding-top: 18px;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #8c7d6d;
}

.slider-footer {
  display: grid;
  justify-items: center;
  gap: 12px;
  margin-top: 22px;
}

.testimonials-note {
  margin: 0;
  text-align: center;
  font-size: 0.95rem;
  color: #6d6155;
}

.slider-btn {
  align-self: center;
  width: 48px;
  height: 48px;
  font-size: 1.1rem;
}

.slider-btn span {
  transform: translateY(-1px);
}

@media (max-width: 1024px) {
  .testimonial-card { flex-basis: calc((100% - 22px) / 2); min-height: 240px; }

  .premium-card {
    flex-basis: calc((100% - 18px) / 2);
    min-height: 280px;
  }

  .featured-testimonial {
    padding: 36px 30px 28px;
  }
}

@media (max-width: 640px) {
  .testimonial-slider { grid-template-columns: 1fr; }
  .testimonial-card { flex-basis: 100%; min-height: auto; }
  .slider-btn { display: none; }

  .featured-testimonial-text,
  .featured-testimonial-meta {
    padding-left: 0;
  }

  .featured-quote-mark {
    left: 16px;
    top: 0;
    font-size: 5rem;
  }

  .premium-card {
    flex-basis: 100%;
    min-height: auto;
  }

  .testimonials-note {
    font-size: 0.9rem;
  }
}

/* === PATCH: intro media instead of repeated logo === */
.gold-frame {
  position: relative;
  padding: 20px;
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(255,255,255,0.68), rgba(255,255,255,0.48));
  border: 1px solid rgba(185,151,99,0.22);
}
.gold-frame::after {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 22px;
  border: 1px solid rgba(185,151,99,0.26);
  pointer-events: none;
}
.gold-frame img {
  position: relative;
  z-index: 1;
  aspect-ratio: 0.88;
}

/* === PATCH: owner section === */
.owner-section {
  padding-top: 56px;
}
.owner-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
}
.portrait-card {
  padding: 18px;
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(255,255,255,0.74), rgba(255,255,255,0.56));
  border: 1px solid rgba(60, 43, 23, 0.08);
  box-shadow: var(--shadow);
}
.portrait-card img {
  width: 100%;
  border-radius: 24px;
  aspect-ratio: 0.84;
  object-fit: cover;
}
.owner-copy p {
  font-size: 1.02rem;
  color: #584d41;
}
.owner-links {
  margin-top: 26px;
}
.owner-badges {
  margin-top: 28px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
}
.owner-badge-text,
.owner-badge-logo {
  padding: 24px;
  border-radius: 26px;
  background: rgba(255,255,255,0.6);
  border: 1px solid rgba(60, 43, 23, 0.08);
  box-shadow: var(--shadow-soft);
}
.owner-badge-text strong,
.owner-badge-logo span {
  display: block;
}
.owner-badge-text strong {
  margin-bottom: 10px;
  color: #2f251c;
}
.owner-badge-logo {
  display: grid;
  gap: 14px;
  align-content: center;
  justify-items: center;
  text-align: center;
}
.owner-badge-logo img {
  max-width: 110px;
  width: 100%;
  height: auto;
}

/* === PATCH: contact section === */
.contact-box {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 24px;
  align-items: start;
  border-radius: 36px;
  padding: 52px;
  background: var(--paper-strong);
  box-shadow: var(--shadow);
  border: 1px solid rgba(60, 43, 23, 0.08);
}
.contact-copy {
  min-width: 0;
}
.contact-grid.refined {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}
.contact-grid.refined div {
  min-height: 132px;
}
.contact-aside {
  display: flex;
  align-items: flex-start;
  padding-top: 277px;
}
.qr-card {
  margin-top: 0;
  width: 100%;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 16px;
  padding: 24px;
  border-radius: 26px;
  background: rgba(255,255,255,0.58);
  border: 1px solid rgba(60, 43, 23, 0.08);
  box-shadow: var(--shadow-soft);
  align-self: stretch;
}
.qr-label {
  display: block;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold-deep);
  text-align: center;
}
.qr-card img {
  width: min(100%, 240px);
  margin: 0 auto;
  height: auto;
}
.cta-actions {
  justify-content: flex-start;
}

/* === PATCH: testimonials slider robustness === */
.testimonial-track {
  transform: translateX(0);
}
.testimonial-viewport {
  overflow: hidden;
}
.testimonial-card,
.premium-card {
  flex-shrink: 0;
}
.slider-btn {
  position: relative;
  z-index: 2;
}
.slider-btn[disabled] {
  opacity: .45;
}

/* === responsive patches === */
@media (max-width: 1024px) {
  .owner-grid,
  .contact-box {
    grid-template-columns: 1fr;
  }
  .owner-badges,
  .contact-grid.refined {
    grid-template-columns: 1fr;
  }
  .cta-actions {
    justify-content: center;
  }
  .contact-aside {
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .gold-frame,
  .portrait-card,
  .owner-badge-text,
  .owner-badge-logo,
  .qr-card {
    padding: 18px;
  }
  .contact-box {
    padding: 24px;
  }
}

/* =========================================================
   O.TULI — typography polish only
   Non-destructive overrides
   ========================================================= */
:root {
  --font-serif: "Playfair Display", serif;
  --font-sans: "Inter", system-ui, sans-serif;
  --fs-body: 18px;
  --lh-body: 1.72;
}

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  font-family: var(--font-sans);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
}

h1, h2, h3,
.hero-title,
.brand-mark,
.quote-card p,
.featured-testimonial-text {
  font-family: var(--font-serif);
  color: #211914;
}

.brand-mark {
  font-size: 2.08rem;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.brand-tag,
.eyebrow,
.contact-grid span,
.testimonial-meta,
.featured-testimonial-meta,
.testimonial-badge,
.qr-label {
  font-family: var(--font-sans);
  font-weight: 400;
  text-transform: uppercase;
}

.brand-tag {
  font-size: 0.72rem;
  letter-spacing: 0.26em;
}

.eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.28em;
}

.site-nav a {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.btn {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-title {
  text-wrap: balance;
  max-width: 760px;
}

.hero-title-main {
  font-family: var(--font-serif);
  font-size: clamp(3.5rem, 7vw, 6.4rem);
  line-height: 0.92;
  letter-spacing: -0.045em;
  font-weight: 600;
  color: #fff;
}

.hero-title-sub {
  margin-top: 14px;
  font-family: var(--font-serif);
  font-size: clamp(1.12rem, 1.9vw, 1.7rem);
  line-height: 1.12;
  letter-spacing: -0.01em;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
}

.hero-text {
  max-width: 35ch;
  margin-top: 26px;
  font-size: 1.14rem;
  line-height: 1.72;
  color: rgba(255,255,255,0.84);
}

h2 {
  font-size: clamp(2.5rem, 4.6vw, 4.4rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
  font-weight: 600;
}

h3 {
  font-size: clamp(1.45rem, 2vw, 2rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  font-weight: 600;
}

p,
.intro-copy p,
.standard-copy p,
.feature-card p,
.cta-text,
.owner-copy p,
.section-intro {
  font-family: var(--font-sans);
  font-size: 1.03rem;
  line-height: 1.78;
  color: #5c5146;
}

.intro-copy p + p,
.owner-copy p + p {
  margin-top: 18px;
}

.section-head {
  margin-bottom: 42px;
}

.hero-actions {
  margin-top: 34px;
}

.hero-notes {
  margin-top: 38px;
}

.hero-notes strong {
  font-size: 0.88rem;
  letter-spacing: 0.05em;
}

.hero-notes span {
  font-size: 0.92rem;
}

.feature-card,
.premium-card,
.contact-grid div,
.owner-badge-text,
.owner-badge-logo,
.qr-card {
  padding: 28px;
}

.contact-grid strong {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  line-height: 1.55;
  font-weight: 600;
  color: #2a221b;
}

.contact-grid span {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  color: var(--muted);
}

.featured-testimonial-text {
  font-size: clamp(1.65rem, 2.7vw, 2.5rem);
  line-height: 1.18;
  letter-spacing: -0.025em;
  color: #2a2119;
}

.testimonial-badge {
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  font-weight: 500;
}

.premium-card p,
.testimonial-card p {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.76;
  color: #43382d;
}

.testimonial-meta,
.testimonials-note {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
}

.quote-card p {
  line-height: 1.05;
}

.site-footer,
.footer-wrap {
  font-size: 0.88rem;
}

@media (max-width: 1024px) {
  .hero-text {
    max-width: 42ch;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 17px;
  }

  .brand-mark {
    font-size: 1.72rem;
  }

  .hero-title-main {
    font-size: clamp(3rem, 15vw, 4.5rem);
  }

  .hero-title-sub {
    font-size: 1.08rem;
  }

  .hero-text,
  .intro-copy p,
  .standard-copy p,
  .feature-card p,
  .cta-text,
  .owner-copy p,
  .section-intro {
    font-size: 1rem;
    line-height: 1.72;
  }

  .feature-card,
  .premium-card,
  .contact-grid div,
  .owner-badge-text,
  .owner-badge-logo,
  .qr-card {
    padding: 22px;
  }
}
/* 🔥 dekoracyjny cudzysłów — wersja premium */
.testimonial-card::before {
  content: "“";
  position: absolute;
  left: 8px;
  top: -10px;

  font-family: "Playfair Display", serif;
  font-size: 80px;
  line-height: 1;

  color: rgba(185,151,99,0.18); /* złoty transparent */
  z-index: 0;
}

.testimonial-card,
.premium-card {
  box-shadow: 0 6px 18px rgba(39, 24, 8, 0.03) !important;
}

/* 🔥 opinie – bardziej premium typografia */
.testimonial-card p,
.premium-card p {
  font-family: "Playfair Display", serif;
  font-style: italic;
}

.testimonial-badge,
.testimonial-meta,
.featured-testimonial-meta,
.qr-label,
.site-nav a,
.brand-tag {
  font-family: "Congenial", sans-serif;
}

/* 🔥 przyciski */
.btn {
  font-family: "Congenial", sans-serif !important;
  font-weight: 400;
  letter-spacing: 0.08em;
}

/* 🔥 nagłówki w kafelkach */
.feature-card strong,
.feature-card h3 {
  font-family: "Congenial", sans-serif;
  font-weight: 400;
}

/* 🔥 TEST – Congenial jako główny font */
body {
  font-family: "Congenial", sans-serif !important;
  font-weight: 300;
}

/* 🔥 zostawiamy premium akcenty */
h1,
h2,
.hero-title,
.featured-testimonial-text,
.testimonial-card p {
  font-family: "Playfair Display", serif !important;
}

/* 🔥 małe opinie – Congenial (bez italic) */
.testimonial-card p,
.premium-card p {
  font-family: "Congenial", sans-serif !important;
  font-weight: 300;
  font-style: normal; /* 🔥 ważne */
  text-align: center;
}

/* 🔥 centrowanie kafelków */
.testimonial-card,
.premium-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.hero-logo {
  transform: scale(1.12);
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.25));
}

/* 🔥 subtle hover – premium feel */
.testimonial-card,
.premium-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover,
.premium-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(39, 24, 8, 0.08);
}
/* 🔥 logo tekstowe – wersja premium */
.brand-mark {
  font-family: "Playfair Display", serif;
  font-size: 2.2rem;
  font-weight: 600;
  letter-spacing: 0.14em; /* 🔥 więcej „logo feel” */
  color: #1f1914;
}

/* 🔥 podpis pod logo */
.brand-tag {
  margin-top: 6px;
  font-family: "Congenial", sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #7a6b5a;
}

.brand {
  line-height: 1.05;
}
@media (max-width: 640px) {
  .brand-mark {
    font-size: 1.8rem;
  }

  .brand-tag {
    font-size: 0.62rem;
  }
}

.brand-mark {
  letter-spacing: 0.16em;
}


/* content nad overlayem */
.hero-grid {
  position: relative;
  z-index: 1;
}

/* 🔥 większy odstęp między liniami hero */
.hero-title span {
  display: block;
}

.hero-title span + span {
  margin-top: 22px;
}
.section-cta {
  margin-top: 40px;
  text-align: center;
}

.section-cta .btn {
  background: #f8dcc4;          /* złoty / beż */
  color: #1f1914;               /* ciemny tekst */
  border: none;
  padding: 14px 28px;
  border-radius: 999px;
  font-family: "Congenial", sans-serif;
  letter-spacing: 0.08em;
  transition: all 0.3s ease;
}

.section-cta .btn:hover {
  background: #a88d66;
  transform: translateY(-2px);
}

/* 🔥 socials layout */
.socials {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 16px;
  padding: 0 !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

/* 🔥 item */
.social-item {
  display: grid;
  grid-template-columns: 24px 1fr;
  align-items: center;
  column-gap: 14px;
  text-decoration: none;
  color: #3a3026;
  font-family: "Congenial", sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
}

/* 🔥 ikona */
.social-item svg {
  width: 24px;
  height: 24px;
  fill: #3a3026;
  display: block;
}

/* 🔥 hover */
.social-item:hover {
  transform: translateX(4px);
  color: #1f1914;
}

/* === ZABIEGI === */
.treatments-section {
  padding-top: 70px;
}

.treatments-head {
  text-align: center;
  margin-inline: auto;
}

.treatments-head .section-intro {
  margin-inline: auto;
}

.treatments-slider {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
}

.treatments-viewport {
  overflow: hidden;
}

.treatments-track {
  display: flex;
  gap: 24px;
  transition: transform 0.55s ease;
  will-change: transform;
}

.treatment-card {
  flex: 0 0 100%;
  min-width: 0;
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(255,255,255,0.82), rgba(255,255,255,0.62));
  border: 1px solid rgba(60, 43, 23, 0.08);
  box-shadow: var(--shadow-soft);
}

.treatment-card-inner {
  padding: 34px 36px;
}

.treatment-kicker {
  margin: 0 0 14px;
  font-family: "Congenial", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

.treatment-card h3 {
  margin: 0 0 18px;
  font-size: clamp(1.5rem, 2.4vw, 2.2rem);
  line-height: 1.05;
}

.treatment-content {
  max-height: 430px;
  overflow-y: auto;
  padding-right: 10px;
}

.treatment-content p,
.treatment-content li {
  font-family: "Congenial", sans-serif;
  font-size: 0.98rem;
  line-height: 1.72;
  color: #51463b;
}

.treatment-content p {
  margin: 0 0 16px;
}

.treatment-content strong {
  color: #2b221b;
  font-weight: 400;
}

.treatment-content ul {
  margin: 0 0 16px 18px;
  padding: 0;
}

.treatment-content::-webkit-scrollbar {
  width: 8px;
}

.treatment-content::-webkit-scrollbar-thumb {
  background: rgba(143,108,60,0.25);
  border-radius: 999px;
}

@media (max-width: 768px) {
  .treatments-slider {
    grid-template-columns: 1fr;
  }

  .treatment-card-inner {
    padding: 26px 22px;
  }

  .treatment-content {
    max-height: 380px;
    padding-right: 4px;
  }

  .treatments-slider .slider-btn {
    display: none;
  }
}

.treatment-content p,
.treatment-content li {
  letter-spacing: 0.018em;
  line-height: 1.85;
}
/* 🔥 usunięcie cienia w kartach zabiegów */
.treatment-card {
  box-shadow: none !important;
}

.owner-badge-text span {
  font-family: var(--font-sans); /* 🔥 Inter */
  font-size: 1.03rem;
  line-height: 1.78;
  letter-spacing: 0;
  color: #5c5146;
}

/* === CENNIK MODAL === */
.nav-price-link {
  font-family: "Congenial", sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #4a4035;
}

.price-modal {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: none;
  padding: 24px;
}

.price-modal.is-open {
  display: grid;
  place-items: center;
}

.price-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(23, 17, 12, 0.48);
  backdrop-filter: blur(8px);
}

.price-modal-dialog {
  position: relative;
  width: min(980px, 100%);
  height: min(88vh, 920px);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(250,245,238,0.96), rgba(246,239,229,0.94));
  border: 1px solid rgba(60, 43, 23, 0.08);
  box-shadow: 0 30px 90px rgba(26, 18, 10, 0.18);
  margin: 0;
}

.price-modal-header {
  padding: 34px 34px 20px;
  border-bottom: 1px solid rgba(60, 43, 23, 0.08);
}

.price-modal-intro {
  max-width: 72ch;
  margin-top: 14px;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  line-height: 1.75;
  color: #5c5146;
}

.price-modal-content {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  padding: 28px 34px 34px;
}

.price-modal-content::-webkit-scrollbar {
  width: 8px;
}

.price-modal-content::-webkit-scrollbar-thumb {
  background: rgba(143,108,60,0.22);
  border-radius: 999px;
}

.price-modal-close {
  position: absolute;
  top: 16px;
  right: 18px;
  width: 46px;
  height: 46px;
  border: none;
  border-radius: 999px;
  background: rgba(255,255,255,0.58);
  color: #3a3026;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  transition: transform .25s ease, background .25s ease;
  z-index: 2;
}

.price-modal-close:hover {
  transform: scale(1.04);
  background: rgba(255,255,255,0.84);
}

.price-group + .price-group {
  margin-top: 28px;
}

.price-group-head {
  margin-bottom: 18px;
}

.price-group-head h3 {
  margin: 0 0 8px;
  font-size: clamp(1.4rem, 2vw, 1.9rem);
}

.price-group-head p {
  margin: 0;
  font-family: "Inter", sans-serif;
  font-size: 0.98rem;
  line-height: 1.72;
  color: #5c5146;
}

.price-list {
  display: grid;
  gap: 12px;
}

.price-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: start;
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(255,255,255,0.52);
  border: 1px solid rgba(60, 43, 23, 0.06);
}

.price-row span {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #3d342b;
}

.price-row strong {
  font-family: "Congenial", sans-serif;
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  white-space: nowrap;
  color: #2a221b;
}

.price-group-small .price-row {
  max-width: 620px;
}

body.modal-open {
  overflow: hidden;
}

@media (max-width: 768px) {
  .price-modal {
    padding: 10px;
  }

  .price-modal-dialog {
    width: 100%;
    height: min(92vh, 920px);
    border-radius: 24px;
  }

  .price-modal-header {
    padding: 24px 20px 18px;
  }

  .price-modal-content {
    padding: 20px 20px 24px;
  }

  .price-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .price-row strong {
    white-space: normal;
  }
}


