/* ============================================================
   Perfect Estetic – Global Stylesheet
   Fonts: Cormorant Garamond (display) + DM Sans (body)
   Palette: luxury-clinical gold + charcoal
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400;1,600&family=DM+Sans:wght@300;400;500&display=swap');

/* ── Reset & base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold:       #C9A84C;
  --gold-light: #E8D5A0;
  --gold-dark:  #A68B3C;
  --ink:        #2B2B2B;
  --charcoal:   #3D3D3D;
  --dark:       #1A1A1A;
  --muted:      #6B6B6B;
  --white:      #FFFFFF;
  --paper:      #F8F6F2;
  --paper2:     #F0EDE6;
  --accent:     #C9A84C;
  --cta:        #2B2B2B;
  --cta-hover:  #C9A84C;
  --promo:      #8B2020;
}

html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

/* ── Typography ───────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  line-height: 1.1;
}

.display-xl { font-size: clamp(40px, 5.5vw, 72px); font-weight: 700; }
.display-lg { font-size: clamp(36px, 4.5vw, 60px); }
.section-title { font-size: clamp(32px, 3.5vw, 48px); }
.subsection-title { font-size: clamp(22px, 2.5vw, 32px); }
.card-title { font-size: clamp(18px, 1.5vw, 22px); }

.eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

p { line-height: 1.7; }

/* ── Utility ──────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.text-gold { color: var(--gold); }
.text-muted { color: var(--muted); }
.text-white { color: #fff; }

.bg-white { background: var(--white); }
.bg-paper { background: var(--paper); }
.bg-paper2 { background: var(--paper2); }
.bg-charcoal { background: var(--charcoal); color: #fff; }
.bg-dark { background: var(--dark); color: #fff; }
.bg-gold { background: var(--gold); color: var(--dark); }

.section-pad { padding: 100px 0; }
.section-pad-sm { padding: 60px 0; }

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 14px 32px;
  border-radius: 0;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: -1;
  transition: transform 0.35s ease;
  transform: scaleX(0);
  transform-origin: left;
}

.btn:hover::before { transform: scaleX(1); }

.btn--primary {
  background: var(--cta);
  color: #fff;
  border: 2px solid var(--cta);
}
.btn--primary::before { background: var(--cta-hover); }
.btn--primary:hover { color: var(--dark); border-color: var(--cta-hover); }

.btn--outline {
  background: transparent;
  color: #fff;
  border: 2px solid var(--gold);
}
.btn--outline::before { background: var(--gold); }
.btn--outline:hover { color: var(--dark); }

.btn--outline-dark {
  background: transparent;
  color: var(--ink);
  border: 2px solid var(--ink);
}
.btn--outline-dark::before { background: var(--ink); }
.btn--outline-dark:hover { color: #fff; }

.btn--gold {
  background: var(--gold);
  color: var(--dark);
  border: 2px solid var(--gold);
}
.btn--gold::before { background: var(--dark); }
.btn--gold:hover { color: var(--gold); border-color: var(--dark); }

/* ── Reveal animation ────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ── Site header / Navbar ────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(29,29,29,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: padding 0.3s ease, background 0.3s ease;
  padding: 12px 0;
}
.site-header.scrolled {
  padding: 6px 0;
  background: rgba(26,26,26,0.97);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-header__logo img {
  height: 48px;
  width: auto;
  transition: height 0.3s ease;
}
.site-header.scrolled .site-header__logo img {
  height: 38px;
}

/* Desktop nav */
.site-nav { display: flex; align-items: center; gap: 4px; }
.site-nav__item { position: relative; }
.site-nav__link {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  color: rgba(255,255,255,0.75);
  padding: 10px 14px;
  transition: color 0.25s;
  display: block;
}
.site-nav__link:hover,
.site-nav__item--active .site-nav__link {
  color: #fff;
}

/* Dropdown */
.site-nav__dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 260px;
  background: var(--charcoal);
  border-top: 2px solid var(--gold);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.25s ease;
  z-index: 100;
}
.site-nav__item:hover .site-nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.site-nav__dropdown a {
  display: block;
  padding: 10px 20px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.75);
  transition: color 0.2s, padding-left 0.2s;
}
.site-nav__dropdown a:hover {
  color: var(--gold);
  padding-left: 26px;
}

/* CTA in nav */
.site-nav__cta {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 8px 20px;
  margin-left: 12px;
  transition: all 0.3s;
}
.site-nav__cta:hover {
  background: var(--gold);
  color: var(--dark);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px 0;
  cursor: pointer;
  z-index: 1100;
}
.hamburger span {
  display: block;
  height: 2px;
  background: #fff;
  transition: all 0.3s;
  border-radius: 1px;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile phone icon in header */
.header-phone {
  display: none;
  color: #fff;
  margin-right: 16px;
}
.header-phone svg { width: 22px; height: 22px; }

/* Mobile nav overlay */
.mobile-nav {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(26,26,26,1);
  z-index: 1050;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease;
}
.mobile-nav.open {
  opacity: 1;
  visibility: visible;
}
.mobile-nav__close {
  position: absolute;
  top: 16px; right: 24px;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  background: none;
  border: none;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobile-nav a {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(24px, 5vw, 36px);
  font-weight: 600;
  color: #fff;
  padding: 12px 0;
  transition: color 0.2s;
  display: block;
  text-align: center;
}
.mobile-nav a:hover { color: var(--gold); }
.mobile-nav__cta {
  margin-top: 24px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem !important;
  font-weight: 500 !important;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold) !important;
  border: 1px solid var(--gold);
  padding: 14px 32px !important;
}

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark);
  padding-top: 80px;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 30% 60%, rgba(201,168,76,0.15), transparent),
    linear-gradient(180deg, rgba(26,26,26,0.3), rgba(26,26,26,0.7));
}
.hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding-top: 40px;
  padding-bottom: 60px;
}
.hero__content { max-width: 680px; }
.hero__eyebrow {
  color: var(--gold);
  margin-bottom: 20px;
  opacity: 0;
  animation: heroFadeIn 0.8s ease 0.3s forwards;
}
.hero__title {
  color: #fff;
  margin-bottom: 24px;
  opacity: 0;
  animation: heroFadeIn 0.8s ease 0.5s forwards;
}
.hero__sub {
  color: rgba(255,255,255,0.75);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 540px;
  opacity: 0;
  animation: heroFadeIn 0.8s ease 0.7s forwards;
}
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  opacity: 0;
  animation: heroFadeIn 0.8s ease 0.9s forwards;
}
.hero__badge {
  position: absolute;
  top: 120px;
  right: 40px;
  z-index: 3;
  background: var(--gold);
  color: var(--dark);
  padding: 16px 24px;
  text-align: center;
  opacity: 0;
  animation: heroFadeIn 0.8s ease 1.1s forwards;
}
.hero__badge-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}
.hero__badge-label {
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 4px;
}

@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ── Trust bar ────────────────────────────────────────────── */
.trust-bar {
  padding: 36px 0;
}
.trust-bar .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.trust-bar__item {}
.trust-bar__number {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  line-height: 1;
  color: var(--dark);
}
.trust-bar__label {
  font-size: 0.72rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-top: 6px;
  color: var(--dark);
  opacity: 0.8;
}

/* ── About / Why us section ───────────────────────────────── */
.about-section .container {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 60px;
  align-items: start;
}
.about__sticky {
  position: sticky;
  top: 100px;
}
.about__sticky .eyebrow {
  color: var(--gold-dark);
  margin-bottom: 12px;
}
.about__sticky .section-title {
  margin-bottom: 20px;
}
.about__sticky p {
  color: var(--muted);
  max-width: 360px;
}
.about__pillars {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.about__pillar {
  padding: 32px 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 20px;
  align-items: start;
}
.about__pillar:first-child { padding-top: 0; }
.about__pillar-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}
.about__pillar-icon svg { width: 28px; height: 28px; stroke: var(--gold); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.about__pillar h3 {
  font-size: clamp(18px, 1.5vw, 22px);
  margin-bottom: 8px;
}
.about__pillar p {
  color: var(--muted);
  font-size: 0.92rem;
}

/* ── Services grid ────────────────────────────────────────── */
.services-section { overflow: hidden; }
.services-section .eyebrow { color: var(--gold); margin-bottom: 12px; }
.services-section .section-title { margin-bottom: 48px; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.service-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  display: flex;
  align-items: flex-end;
  cursor: pointer;
  transition: transform 0.35s ease;
}
.service-card img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.service-card:hover img { transform: scale(1.05); }
.service-card__overlay {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 24px;
  background: linear-gradient(0deg, rgba(26,26,26,0.85) 0%, transparent 100%);
}
.service-card__title {
  color: #fff;
  font-size: clamp(16px, 1.3vw, 20px);
  font-weight: 600;
  margin-bottom: 4px;
}
.service-card__desc {
  color: rgba(255,255,255,0.65);
  font-size: 0.78rem;
  line-height: 1.5;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 24px; right: 24px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
  z-index: 3;
}
.service-card:hover::after { transform: scaleX(1); }

/* ── Depilacja highlight section ──────────────────────────── */
.depilacja-highlight .container {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 60px;
  align-items: center;
}
.depilacja-highlight__img {
  position: relative;
  overflow: hidden;
}
.depilacja-highlight__img img {
  width: 100%;
  display: block;
}
.depilacja-highlight__img::after {
  content: '';
  position: absolute;
  top: 16px; left: 16px; right: -16px; bottom: -16px;
  border: 2px solid var(--gold);
  z-index: -1;
}
.promo-badge {
  display: inline-block;
  background: var(--promo);
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 6px 16px;
  margin-bottom: 16px;
}
.depilacja-highlight .eyebrow {
  color: var(--gold-dark);
  margin-bottom: 12px;
}
.depilacja-highlight .section-title {
  margin-bottom: 16px;
}
.depilacja-highlight p {
  color: var(--muted);
  margin-bottom: 24px;
}
.depilacja-highlight .btn + .btn { margin-left: 12px; }

/* ── Pricing section (homepage mini + cennik page) ────────── */
.pricing-section .eyebrow { color: var(--gold); margin-bottom: 12px; }
.pricing-section .section-title { margin-bottom: 40px; }

.pricing-table {
  width: 100%;
  border-collapse: collapse;
}
.pricing-table th {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.5);
  text-align: left;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.pricing-table td {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 0.92rem;
  color: rgba(255,255,255,0.85);
}
.pricing-table tr:hover td {
  background: rgba(255,255,255,0.03);
}
.pricing-table .price {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(20px, 1.5vw, 26px);
  font-weight: 700;
  color: var(--gold);
  white-space: nowrap;
}
.pricing-table .price-package {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(16px, 1.2vw, 20px);
  font-weight: 600;
  color: var(--gold-light);
  white-space: nowrap;
}

.pricing-cta {
  text-align: center;
  margin-top: 40px;
}

/* Pricing tabs (cennik page) */
.pricing__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding-bottom: 0;
}
.pricing__tab {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 400;
  color: rgba(255,255,255,0.55);
  padding: 12px 20px;
  cursor: pointer;
  transition: color 0.25s, border-color 0.25s;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  white-space: nowrap;
}
.pricing__tab:hover { color: rgba(255,255,255,0.85); }
.pricing__tab.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

/* NO .reveal on panels — they toggle via display */
.pricing__panel { display: none; }
.pricing__panel.active { display: block; }

/* ── Reviews / testimonials ───────────────────────────────── */
.reviews-section .eyebrow { color: var(--gold-dark); margin-bottom: 12px; }
.reviews-section .section-title { margin-bottom: 12px; }
.reviews-section .section-sub {
  color: var(--muted);
  margin-bottom: 48px;
  max-width: 500px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.06);
  padding: 32px;
  transition: transform 0.3s, box-shadow 0.3s;
}
.review-card:hover {
  transform: translate(-2px, -2px);
  box-shadow: 4px 4px 0 var(--gold-light);
}
.review-card__stars {
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}
.review-card__text {
  font-style: italic;
  color: var(--ink);
  line-height: 1.7;
  margin-bottom: 16px;
  font-size: 0.92rem;
}
.review-card__author {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

/* ── Gallery ──────────────────────────────────────────────── */
.gallery-section .eyebrow { color: var(--gold-dark); margin-bottom: 12px; }
.gallery-section .section-title { margin-bottom: 40px; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.gallery-grid img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.4s ease;
  cursor: pointer;
}
.gallery-grid img:hover {
  transform: scale(1.03);
}
.gallery-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gold-dark);
  transition: color 0.25s;
}
.gallery-link:hover { color: var(--gold); }

/* ── Contact section ──────────────────────────────────────── */
.contact-section .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.contact-section .eyebrow { color: var(--gold); margin-bottom: 12px; }
.contact-section .section-title { margin-bottom: 32px; }

.contact__info { display: flex; flex-direction: column; gap: 24px; }
.contact__row {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 16px;
  align-items: start;
}
.contact__row svg {
  width: 20px; height: 20px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  margin-top: 2px;
}
.contact__row p { color: rgba(255,255,255,0.8); font-size: 0.92rem; }
.contact__row a { color: var(--gold); transition: opacity 0.2s; }
.contact__row a:hover { opacity: 0.8; }

.contact__map {
  position: relative;
  overflow: hidden;
}
.contact__map iframe {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
  filter: grayscale(0.8) brightness(0.85) contrast(1.1);
  transition: filter 0.4s;
}
.contact__map:hover iframe {
  filter: grayscale(0) brightness(1) contrast(1);
}

/* ── Footer ───────────────────────────────────────────────── */
.site-footer {
  padding: 60px 0 0;
}
.site-footer .container {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer__brand p {
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  line-height: 1.7;
  margin-top: 16px;
  max-width: 300px;
}
.footer__brand img {
  height: 42px;
  width: auto;
  opacity: 0.9;
}
.footer__heading {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer__links a {
  display: block;
  color: rgba(255,255,255,0.55);
  font-size: 0.88rem;
  padding: 5px 0;
  transition: color 0.2s;
}
.footer__links a:hover { color: #fff; }

.footer__bottom {
  margin-top: 48px;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center;
  color: rgba(255,255,255,0.35);
  font-size: 0.78rem;
}

/* ── Mobile CTA bar ───────────────────────────────────────── */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 999;
  background: var(--gold);
  padding: 0;
}
.mobile-cta-bar a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 0;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--dark);
  transition: background 0.2s;
}
.mobile-cta-bar a + a {
  border-left: 1px solid rgba(0,0,0,0.15);
}
.mobile-cta-bar a:active { background: rgba(0,0,0,0.08); }
.mobile-cta-bar svg { width: 18px; height: 18px; stroke: var(--dark); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* ── Subpage hero ─────────────────────────────────────────── */
.subpage-hero {
  background: var(--dark);
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}
.subpage-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 60% at 70% 50%, rgba(201,168,76,0.08), transparent);
}
.subpage-hero .container { position: relative; z-index: 1; }
.subpage-hero .eyebrow { color: var(--gold); margin-bottom: 12px; }
.subpage-hero .display-lg { color: #fff; margin-bottom: 16px; }
.subpage-hero p { color: rgba(255,255,255,0.65); max-width: 560px; }

/* ── FAQ accordion ────────────────────────────────────────── */
.faq-section .container {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: start;
}
.faq__intro {
  position: sticky;
  top: 100px;
}
.faq__intro .eyebrow { color: var(--gold-dark); margin-bottom: 12px; }
.faq__intro .section-title { margin-bottom: 16px; }
.faq__intro p { color: var(--muted); }

.faq__list { display: flex; flex-direction: column; gap: 0; }
.faq__item {
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(16px, 1.2vw, 20px);
  font-weight: 600;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  transition: color 0.2s;
}
.faq__question:hover { color: var(--gold-dark); }
.faq__question::after {
  content: '+';
  font-family: 'DM Sans', sans-serif;
  font-size: 1.2rem;
  font-weight: 300;
  flex-shrink: 0;
  transition: transform 0.3s;
}
.faq__item.open .faq__question::after {
  transform: rotate(45deg);
}
/* NO .reveal on faq__answer */
.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 0;
}
.faq__item.open .faq__answer {
  max-height: 500px;
  padding: 0 0 20px;
}
.faq__answer p {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.7;
}

/* ── Oferta page — category cards ─────────────────────────── */
.oferta-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  align-items: start;
}
.oferta-category {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 24px;
  align-items: start;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.oferta-category img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}
.oferta-category h3 {
  font-size: clamp(20px, 1.8vw, 26px);
  margin-bottom: 8px;
}
.oferta-category p {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 12px;
}
.oferta-category .link-arrow {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--gold-dark);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.25s;
}
.oferta-category .link-arrow:hover { gap: 12px; }

/* ── Depilacja page specifics ─────────────────────────────── */
.depilacja-info .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.depilacja-info h2 {
  margin-bottom: 16px;
}
.depilacja-info p {
  color: var(--muted);
  margin-bottom: 16px;
}
.depilacja-info ul {
  list-style: none;
  padding: 0;
}
.depilacja-info ul li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  color: var(--ink);
  font-size: 0.92rem;
  padding-left: 20px;
  position: relative;
}
.depilacja-info ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
}

/* ── Team cards (o-nas page) ──────────────────────────────── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.team-card {
  text-align: center;
}
.team-card img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  margin-bottom: 16px;
  filter: grayscale(0.2);
  transition: filter 0.3s;
}
.team-card:hover img { filter: grayscale(0); }
.team-card h3 {
  font-size: 1.1rem;
  margin-bottom: 4px;
}
.team-card p {
  font-size: 0.82rem;
  color: var(--muted);
}

/* Spacer 360 */
.spacer360 iframe {
  width: 100%;
  height: 500px;
  border: 0;
}

/* YouTube embed */
.video-embed {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 800px;
  margin: 0 auto;
}
.video-embed iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ── Pricing packages table ───────────────────────────────── */
.packages-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 32px;
}
.packages-table th {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.5);
  text-align: left;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.packages-table td {
  padding: 12px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 0.88rem;
  color: rgba(255,255,255,0.85);
}
.packages-table .price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
}

/* ── Promotion banner ─────────────────────────────────────── */
.promo-banner {
  background: var(--promo);
  color: #fff;
  text-align: center;
  padding: 48px 24px;
}
.promo-banner h2 {
  font-size: clamp(24px, 3vw, 40px);
  margin-bottom: 12px;
}
.promo-banner p {
  font-size: 1rem;
  opacity: 0.9;
  margin-bottom: 24px;
}

/* ── Guarantee badge ──────────────────────────────────────── */
.guarantee-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(201,168,76,0.1);
  border: 1px solid var(--gold);
  padding: 12px 20px;
  margin-top: 16px;
  margin-bottom: 24px;
}
.guarantee-badge svg { width: 24px; height: 24px; stroke: var(--gold); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.guarantee-badge span {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--gold-dark);
}

/* Dark background version */
.bg-charcoal .guarantee-badge,
.bg-dark .guarantee-badge {
  background: rgba(201,168,76,0.08);
}
.bg-charcoal .guarantee-badge span,
.bg-dark .guarantee-badge span {
  color: var(--gold);
}

/* ── Responsive ───────────────────────────────────────────── */

@media (max-width: 1024px) {
  .about-section .container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about__sticky { position: static; }
  .depilacja-highlight .container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .depilacja-highlight__img { order: -1; }
  .faq-section .container {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .faq__intro { position: static; }
  .contact-section .container {
    grid-template-columns: 1fr;
  }
  .site-footer .container {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .depilacja-info .container {
    grid-template-columns: 1fr;
  }
  .oferta-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .section-pad { padding: 64px 0; }

  /* Nav */
  .site-nav { display: none; }
  .hamburger { display: flex; }
  .header-phone { display: flex; }

  /* Hero */
  .hero { min-height: auto; padding-top: 100px; padding-bottom: 0; }
  .hero .container { padding-top: 20px; padding-bottom: 40px; }
  .hero__badge {
    position: static;
    display: inline-block;
    margin-top: 24px;
  }
  .hero__content { max-width: 100%; }
  .hero__cta { flex-direction: column; align-items: stretch; }
  .hero__cta .btn { text-align: center; justify-content: center; }

  /* Trust bar */
  .trust-bar .container {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  /* Services */
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Reviews */
  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  /* Gallery */
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Footer */
  .site-footer .container {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  /* Team */
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  /* Mobile CTA bar */
  .mobile-cta-bar { display: flex; }
  body { padding-bottom: 52px; }

  /* Pricing tabs scroll */
  .pricing__tabs {
    overflow-x: auto;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 4px;
  }

  /* Oferta */
  .oferta-category {
    grid-template-columns: 1fr;
  }
  .oferta-category img {
    aspect-ratio: 16/9;
  }
}

@media (max-width: 480px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
  .service-card { aspect-ratio: 16/10; }
  .team-grid { grid-template-columns: 1fr; }

  .btn { padding: 12px 24px; font-size: 0.78rem; }
}
