/* =========================================
   HOLISTIC ROOMS – Main Stylesheet
   ========================================= */

/* ---- Theme transition ---- */
*, *::before, *::after {
  transition: background-color 0.35s ease, color 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

/* ---- CSS Variables ---- */
:root {
  --sage: #7c9e8a;
  --sage-light: #a8c4b0;
  --sage-dark: #5a7a68;
  --beige: #f5ede0;
  --beige-dark: #e8d9c4;
  --ivory: #fdfaf5;
  --gold: #c4975a;
  --gold-light: #d4af7a;
  --gold-dark: #a07840;
  --brown-soft: #8b6e5a;
  --dark: #2c2c2c;
  --dark-mid: #3d3530;
  --potega-bg: #0d0a14;
  --potega-purple: #2a1a4e;
  --potega-gold: #d4af7a;

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Lato', 'Nunito', sans-serif;

  --radius: 16px;
  --radius-sm: 8px;
  --shadow: 0 4px 30px rgba(0,0,0,0.08);
  --shadow-md: 0 8px 40px rgba(0,0,0,0.12);
  --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* ---- Dark Mode Variables ---- */
[data-theme="dark"] {
  --beige:      #221e1a;
  --beige-dark: #2c2620;
  --ivory:      #1a1612;
  --dark:       #f0e6d8;
  --dark-mid:   #e2d4c2;
  --brown-soft: #c4a484;
  --sage:       #6a8e7a;
  --sage-light: #7aa08c;
  --sage-dark:  #4e7060;
  --gold:       #c8995e;
  --gold-light: #d8b47e;
  --gold-dark:  #a87c42;
}

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

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

body {
  font-family: var(--font-body);
  background: var(--ivory);
  color: var(--dark);
  line-height: 1.7;
  overflow-x: hidden;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* =========================================
   NAVIGATION
   ========================================= */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(253, 250, 245, 0.97);
  border-bottom: 1px solid rgba(196, 151, 90, 0.15);
  transition: var(--transition);
}

#navbar.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  overflow: visible;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
}

.logo-circle-frame {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-shrink: 0;
}

/* Light mode: small circle matching only the visible logo ring */
[data-theme="light"] .logo-circle-frame::before {
  content: '';
  position: absolute;
  /* PNG 1024×1536: ring spans ~90% of width, center at ~36.5% height.
     Nav img renders 72×108px → ring ≈ 65px → target 68px */
  width: 59px;
  height: 59px;
  background: #2b1f13;
  border-radius: 50%;
  top: 47%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
  pointer-events: none;
}

.nav-logo-img {
  width: auto;
  height: 106px;
  object-fit: contain;
  position: relative;
  z-index: 1;
}

.nav-logo-text {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--dark-mid);
  font-weight: 600;
  letter-spacing: 0.03em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.1rem;
  list-style: none;
  background: transparent;
}

.nav-link {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--dark-mid);
  padding: 0.4rem 0.5rem;
  border-radius: 6px;
  letter-spacing: 0.025em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: var(--transition);
}

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

.potega-link:hover { color: var(--gold); }

.nav-cta {
  background: var(--gold);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: var(--transition);
}

.nav-cta:hover {
  background: var(--gold-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(196, 151, 90, 0.4);
}

/* Mobile controls row inside expanded menu — hidden on desktop */
.nav-mobile-controls {
  display: none;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1100;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark-mid);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* =========================================
   HERO
   ========================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(124, 158, 138, 0.25) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(196, 151, 90, 0.2) 0%, transparent 50%),
    radial-gradient(ellipse at 60% 80%, rgba(168, 196, 176, 0.2) 0%, transparent 50%),
    linear-gradient(160deg, #f7ede2 0%, #fdfaf5 40%, #eef4f0 100%);
}

.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 15% 85%, rgba(124, 158, 138, 0.12) 0%, transparent 40%),
    radial-gradient(circle at 85% 15%, rgba(196, 151, 90, 0.1) 0%, transparent 40%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 3.5rem 2rem 7rem;
  margin-top: -3rem;
}

.hero-logo-wrap {
  position: relative;
  display: inline-flex;
  align-items: flex-start;
  justify-content: center;
  /* Clip bottom transparent area of the PNG (circle incl. "ROOMS" text ends at ~73%) */
  width: clamp(220px, 70vw, 400px);
  height: calc(clamp(220px, 70vw, 400px) * 0.82);
  overflow: hidden;
  margin-bottom: 0.75rem;
}

/* Light mode: circle fitted to the visible logo ring inside the PNG.
   PNG 1024×1536, displayed in 350×350 (object-fit:contain → 233×350 letterboxed).
   Ring spans ~90% of 1024px width → ~209px rendered.
   Ring vertical center at ~36.5% of PNG height → ~128px in the 350px element.
   Target circle: 213px, centered at top:36.5%, left:50%. */
[data-theme="light"] .hero-logo-wrap::before {
  content: '';
  position: absolute;
  /* Circle spans ~61% of image width. Wrapper height = 0.82× image size.
     Ring visual center at 36.4% of image → 36.4/82 ≈ 44% of wrapper height.
     aspect-ratio keeps it circular despite non-square wrapper. */
  width: 53%;
  height: auto;
  aspect-ratio: 1;
  background: #2b1f13;
  border-radius: 50%;
  top: 57.5%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
  pointer-events: none;
}

.hero-logo {
  width: clamp(220px, 70vw, 400px);
  height: clamp(220px, 70vw, 400px);
  object-fit: contain;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 6px 28px rgba(196, 151, 90, 0.35));
}

[data-theme="light"] .hero-logo {
  filter: none;
}

.hero-tagline {
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 500;
  color: var(--dark-mid);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.hero-title em {
  font-style: italic;
  color: var(--gold);
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--brown-soft);
  font-weight: 300;
  line-height: 1.9;
  margin-bottom: 2.5rem;
}

.hero-location {
  display: inline-block;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage-dark);
  margin-top: 0.25rem;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  width: 100%;
}

.hero-buttons .btn {
  width: 100%;
  max-width: 380px;
  justify-content: center;
  white-space: nowrap;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  animation: scrollHint 2s ease-in-out infinite;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, var(--gold));
}

.scroll-text {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

/* =========================================
   BUTTONS
   ========================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.8rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: var(--transition);
}

.btn-primary {
  background: var(--gold);
  color: white;
  box-shadow: 0 4px 20px rgba(196, 151, 90, 0.35);
}
.btn-primary:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(196, 151, 90, 0.5);
}

.btn-outline {
  background: transparent;
  color: var(--sage-dark);
  border: 2px solid var(--sage);
}
.btn-outline:hover {
  background: var(--sage);
  color: white;
  transform: translateY(-2px);
}

.btn-gold {
  background: var(--potega-gold);
  color: var(--dark-mid);
  font-weight: 700;
}
.btn-gold:hover {
  background: #e0c48a;
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(212, 175, 122, 0.4);
}

.btn-outline-gold {
  background: transparent;
  color: var(--potega-gold);
  border: 2px solid var(--potega-gold);
}
.btn-outline-gold:hover {
  background: rgba(212, 175, 122, 0.15);
  transform: translateY(-2px);
}

.btn-fb { background: #1877f2; color: white; }
.btn-fb:hover { background: #0d65d9; transform: translateY(-2px); }

.btn-call { background: var(--sage); color: white; }
.btn-call:hover { background: var(--sage-dark); transform: translateY(-2px); }

.btn-whatsapp { background: #25d366; color: white; }
.btn-whatsapp:hover { background: #1ab454; transform: translateY(-2px); }

.btn-icon { width: 18px; height: 18px; flex-shrink: 0; }

/* =========================================
   SECTIONS COMMON
   ========================================= */
.section { padding: 6rem 0; position: relative; }
.section-light { background: var(--ivory); }

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
  display: block;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 500;
  color: var(--dark-mid);
  line-height: 1.25;
}

.section-title em { font-style: italic; color: var(--gold); }

.section-subtitle {
  margin-top: 1rem;
  font-size: 1rem;
  color: var(--brown-soft);
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

.section-ornament {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--sage-light), var(--gold), transparent);
}

.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 0;
  font-size: 1.5rem;
}

/* =========================================
   ABOUT (with photo)
   ========================================= */
.about-with-photo {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 4.5rem;
  align-items: center;
  max-width: 980px;
  margin: 0 auto;
  padding: 2rem 0 4rem;
}

.about-photo-wrap {
  position: relative;
  padding: 0 20px 20px 0;
  flex-shrink: 0;
}

.about-photo-wrap::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  border: 2px solid var(--gold-light);
  border-radius: 44% 56% 58% 42% / 42% 42% 58% 58%;
  opacity: 0.65;
  pointer-events: none;
}

.about-photo {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center top;
  border-radius: 44% 56% 58% 42% / 42% 42% 58% 58%;
  box-shadow: 0 24px 64px rgba(196, 151, 90, 0.2), 0 8px 32px rgba(0, 0, 0, 0.12);
  display: block;
  position: relative;
  z-index: 1;
}

.about-content { text-align: left; }
.about-content h2 { margin-bottom: 1.25rem; }
.about-content .about-contact-chips { justify-content: flex-start; }
.about-content .about-quote { text-align: left; margin: 1.5rem 0; }
.about-content .about-qualifications { margin: 0.5rem 0 0.25rem; }

.about-solo-ornament {
  margin: 0.5rem 0 1.5rem;
  font-size: 1.8rem;
  opacity: 0.6;
}

.about-leaf {
  display: inline-block;
  animation: sway 4s ease-in-out infinite;
}

@keyframes sway {
  0%, 100% { transform: rotate(-6deg); }
  50%       { transform: rotate(6deg); }
}

.about-body {
  color: var(--brown-soft);
  font-size: 1rem;
  margin-bottom: 1rem;
  line-height: 1.85;
}

.about-qual-title {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 1.75rem 0 0.6rem;
}

.about-qualifications {
  list-style: none;
  margin: 1.5rem auto 0.5rem;
  display: inline-flex;
  flex-direction: column;
  gap: 0.55rem;
  text-align: left;
}

.about-qualifications li {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--dark-mid);
  opacity: 0.85;
}

.qual-check {
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
}

.about-quote {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.35rem;
  color: var(--gold);
  margin: 1.75rem auto;
  max-width: 520px;
  padding: 1rem 1.5rem;
  border-top: 1px solid var(--gold-light);
  border-bottom: 1px solid var(--gold-light);
}

.about-contact-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
  justify-content: center;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--beige);
  color: var(--dark-mid);
  padding: 0.5rem 1.1rem;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 600;
  border: 1px solid var(--beige-dark);
  transition: var(--transition);
}
.chip svg { width: 15px; height: 15px; fill: var(--gold); }
.chip:hover { background: var(--gold); color: white; border-color: var(--gold); }
.chip:hover svg { fill: white; }

.chip-wa:hover { background: #25d366; border-color: #25d366; }

/* =========================================
   TREATMENTS GRID
   ========================================= */
.treatments-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.treatment-card {
  background: white;
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  border: 1px solid rgba(196, 151, 90, 0.12);
  box-shadow: var(--shadow);
  transition: var(--transition);
  text-align: center;
}

.treatment-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold-light);
}

.treatment-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.treatment-card h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--dark-mid);
  margin-bottom: 0.75rem;
}

.treatment-card p {
  font-size: 0.9rem;
  color: var(--brown-soft);
  line-height: 1.7;
}

/* =========================================
   BENEFITS
   ========================================= */
.benefits-section {
  background: linear-gradient(135deg, var(--beige) 0%, #eef4f0 100%);
  padding: 5rem 0;
  margin-top: 5rem;
}

.benefits-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  max-width: 900px;
  margin: 0 auto;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: white;
  padding: 1.2rem 1.5rem;
  border-radius: var(--radius);
  border: 1px solid rgba(196, 151, 90, 0.12);
  font-size: 0.95rem;
  color: var(--dark-mid);
  font-weight: 500;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.benefit-item:hover { transform: translateX(4px); }

.benefit-icon {
  color: var(--gold);
  font-size: 0.7rem;
  flex-shrink: 0;
}

/* =========================================
   GIFT VOUCHERS
   ========================================= */
.section-voucher {
  background: linear-gradient(135deg, var(--dark-mid) 0%, #4a3528 50%, #3a2a20 100%);
}

.voucher-card {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  padding: 3rem 2rem;
}

.voucher-ornament {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.voucher-text {
  color: rgba(255,255,255,0.78);
  font-size: 1rem;
  line-height: 1.85;
  margin-bottom: 1rem;
  font-family: var(--font-body);
}

.voucher-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}

/* =========================================
   POTĘGA MIŁOŚCI
   ========================================= */
.section-potega {
  background: var(--potega-bg);
  position: relative;
  overflow: hidden;
  padding: 7rem 0;
}

.potega-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(80, 40, 120, 0.35) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 70%, rgba(42, 26, 78, 0.5) 0%, transparent 60%),
    radial-gradient(ellipse at 50% 50%, rgba(196, 151, 90, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.potega-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--potega-gold);
  opacity: 0;
  animation: floatParticle var(--dur) var(--delay) ease-in-out infinite;
}

@keyframes floatParticle {
  0% { transform: translateY(100vh) scale(0); opacity: 0; }
  10% { opacity: 0.6; }
  90% { opacity: 0.3; }
  100% { transform: translateY(-20px) scale(1); opacity: 0; }
}

.potega-container { position: relative; z-index: 2; }

.potega-header {
  text-align: center;
  margin-bottom: 3rem;
}

.potega-eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--potega-gold);
  margin-bottom: 1rem;
  display: block;
}

.potega-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 600;
  color: var(--ivory);
  letter-spacing: 0.03em;
  margin-bottom: 1.2rem;
  background: linear-gradient(135deg, #fff 0%, var(--potega-gold) 50%, #fff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.potega-hero-text {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.potega-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 1.5rem auto;
  max-width: 300px;
}

.gold-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--potega-gold), transparent);
}

.gold-star { color: var(--potega-gold); font-size: 0.9rem; }

.potega-about {
  max-width: 720px;
  margin: 0 auto 4rem;
  text-align: center;
}

.potega-about-text {
  color: rgba(255,255,255,0.72);
  font-size: 1.05rem;
  line-height: 1.9;
  font-family: var(--font-body);
  font-weight: 300;
}

.potega-subtitle-h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  color: var(--ivory);
  font-weight: 500;
  text-align: center;
  margin-bottom: 2.5rem;
}

/* Sessions Grid */
.sessions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  margin-bottom: 4rem;
}

.session-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(212, 175, 122, 0.2);
  border-radius: var(--radius);
  padding: 1.75rem 1.25rem;
  text-align: center;
  backdrop-filter: blur(8px);
  transition: var(--transition);
}

.session-card:hover {
  background: rgba(212, 175, 122, 0.1);
  border-color: var(--potega-gold);
  transform: translateY(-4px);
}

.session-icon {
  font-size: 1.8rem;
  margin-bottom: 0.75rem;
  display: block;
}

.session-card h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--potega-gold);
  margin-bottom: 0.6rem;
}

.session-card p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
}

/* Quotes */
.quotes-section {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 3rem 0 4rem;
}

.quote-block {
  background: rgba(255,255,255,0.04);
  border-left: 3px solid var(--potega-gold);
  padding: 1.5rem 1.75rem;
  border-radius: 0 var(--radius) var(--radius) 0;
}

.quote-text {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.7;
}

/* Potega Contact */
.potega-contact {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(212, 175, 122, 0.15);
}

.potega-contact-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* =========================================
   CONTACT
   ========================================= */
.section-contact {
  background: var(--beige);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}

.contact-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 0.1rem; }

.contact-item strong {
  display: block;
  font-weight: 700;
  color: var(--dark-mid);
  margin-bottom: 0.3rem;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.contact-item p {
  font-size: 0.95rem;
  color: var(--brown-soft);
  line-height: 1.6;
}

.contact-item a { color: var(--gold); font-weight: 600; }
.contact-item a:hover { text-decoration: underline; }

.contact-note {
  font-size: 0.85rem !important;
  color: var(--sage-dark) !important;
  margin-top: 0.25rem;
}

.contact-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

/* =========================================
   FOOTER
   ========================================= */
.footer {
  background: var(--dark-mid);
  color: rgba(255,255,255,0.7);
  padding: 1rem 0 2rem;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-align: center;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.footer-logo {
  width: 160px;
  height: 160px;
  object-fit: contain;
  margin: 0 auto;
}

.footer-tagline {
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-top: 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  justify-content: center;
}

.footer-links a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.3s;
}

.footer-links a:hover { color: var(--gold-light); }

.footer-copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.7;
}

.footer-copy em { color: var(--gold-light); font-style: italic; }

/* =========================================
   FLOATING BUTTONS
   ========================================= */
.float-btns {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  z-index: 999;
}

.float-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  transition: var(--transition);
}

.float-btn svg { width: 22px; height: 22px; fill: white; }
.float-btn:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(0,0,0,0.25); }

.float-call { background: var(--sage); }
.float-wa { background: #25d366; }

/* =========================================
   ANIMATIONS
   ========================================= */
@keyframes scrollHint {
  0%, 100% { opacity: 0.5; transform: translateX(-50%) translateY(0); }
  50% { opacity: 1; transform: translateX(-50%) translateY(6px); }
}

/* Fade-in-up for hero */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
  to { opacity: 1; transform: translateY(0); }
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.delay-1 { transition-delay: 0.15s; }
.reveal.delay-2 { transition-delay: 0.3s; }
.reveal.delay-3 { transition-delay: 0.45s; }

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

/* =========================================
   NAV CONTROLS (lang + theme)
   ========================================= */
.nav-controls {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-shrink: 0;
}

.lang-toggle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1.5px solid rgba(196, 151, 90, 0.35);
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark-mid);
  transition: var(--transition);
  padding: 0;
}

.lang-label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.lang-toggle:hover {
  background: rgba(196, 151, 90, 0.12);
  border-color: var(--gold);
  color: var(--gold);
}

[data-theme="dark"] .lang-toggle { color: var(--dark-mid); }

/* =========================================
   THEME TOGGLE BUTTON
   ========================================= */
.theme-toggle {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1.5px solid rgba(196, 151, 90, 0.35);
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark-mid);
  transition: var(--transition);
  padding: 0;
  margin-left: 0.5rem;
}

.theme-toggle:hover {
  background: rgba(196, 151, 90, 0.12);
  border-color: var(--gold);
  color: var(--gold);
  transform: rotate(15deg);
}

.theme-toggle svg { width: 17px; height: 17px; }

/* Show moon in light mode, sun in dark mode */
.theme-icon-sun  { display: none; }
.theme-icon-moon { display: flex; }

[data-theme="dark"] .theme-icon-sun  { display: flex; }
[data-theme="dark"] .theme-icon-moon { display: none; }

/* =========================================
   DARK MODE OVERRIDES
   ========================================= */

/* Navbar */
[data-theme="dark"] #navbar {
  background: rgba(20, 16, 12, 0.98);
  border-bottom-color: rgba(196, 151, 90, 0.2);
}

[data-theme="dark"] .nav-logo-text  { color: var(--dark-mid); }
[data-theme="dark"] .nav-link       { color: var(--dark-mid); }
[data-theme="dark"] .hamburger span { background: var(--dark-mid); }


/* Hero */
[data-theme="dark"] .hero-bg {
  background:
    radial-gradient(ellipse at 20% 50%, rgba(90, 122, 104, 0.2) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(196, 151, 90, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 60% 80%, rgba(90, 122, 104, 0.15) 0%, transparent 50%),
    linear-gradient(160deg, #1e1a15 0%, #1a1612 40%, #161a16 100%);
}

[data-theme="dark"] .hero-title    { color: var(--dark-mid); }
[data-theme="dark"] .hero-subtitle { color: var(--brown-soft); }

/* Section light (About, Treatments) */
[data-theme="dark"] .section-light { background: var(--ivory); }

/* Treatment cards */
[data-theme="dark"] .treatment-card {
  background: #262018;
  border-color: rgba(196, 151, 90, 0.18);
}
[data-theme="dark"] .treatment-card h3 { color: var(--dark-mid); }
[data-theme="dark"] .treatment-card p  { color: var(--brown-soft); }

/* Benefits */
[data-theme="dark"] .benefits-section {
  background: linear-gradient(135deg, #221e18 0%, #1a201a 100%);
}
[data-theme="dark"] .benefit-item {
  background: #2a2318;
  border-color: rgba(196, 151, 90, 0.15);
  color: var(--dark-mid);
}

/* About */
[data-theme="dark"] .about-body  { color: var(--brown-soft); }
[data-theme="dark"] .about-quote { color: var(--gold); border-color: rgba(196, 151, 90, 0.3); }

/* Chips */
[data-theme="dark"] .chip {
  background: #2a2318;
  border-color: rgba(196, 151, 90, 0.2);
  color: var(--dark-mid);
}

/* Gift Vouchers – already dark, small tweak */
[data-theme="dark"] .section-voucher {
  background: linear-gradient(135deg, #100e0b 0%, #1e1510 50%, #160e08 100%);
}

/* Contact */
[data-theme="dark"] .section-contact { background: #1e1a16; }
[data-theme="dark"] .contact-item p  { color: var(--brown-soft); }
[data-theme="dark"] .contact-map iframe { filter: invert(0.85) hue-rotate(180deg); }

/* Footer */
[data-theme="dark"] .footer { background: #0f0d0a; }

/* Section titles & eyebrows */
[data-theme="dark"] .section-title    { color: var(--dark-mid); }
[data-theme="dark"] .section-subtitle { color: var(--brown-soft); }

/* Sekcje z ZAWSZE ciemnym tłem – tekst musi zostać jasny niezależnie od motywu.
   !important potrzebne do przebicia inline style="color: var(--ivory)" */
[data-theme="dark"] .section-voucher .section-title,
[data-theme="dark"] .section-voucher .voucher-text {
  color: #f0e6d8 !important;
}
[data-theme="dark"] .potega-subtitle-h3 { color: #f0e6d8 !important; }


/* Scroll hint */
[data-theme="dark"] .scroll-text { color: var(--gold); }

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 1024px) {
  .sessions-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .about-with-photo {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .about-photo-wrap {
    max-width: 280px;
    margin: 0 auto;
  }
  .about-content {
    text-align: center;
  }
  .about-content .about-contact-chips { justify-content: center; }
  .about-content .about-quote { text-align: center; margin: 1.5rem auto; }
  .about-content .about-qualifications { margin-left: auto; margin-right: auto; }
}

/* Nav hamburger breakpoint — triggers at 1060px to handle both languages */
@media (max-width: 1060px) {
  .hamburger { display: flex; }

  /* Hide lang+theme from top bar — they move into the expanded menu */
  .nav-controls .lang-toggle,
  .nav-controls .theme-toggle { display: none; }

  .nav-links {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    max-height: 0;
    overflow: hidden;
    padding: 0 1.5rem;
    background: #fdfaf5;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 1.75rem;
    z-index: 1050;
    transition: max-height 0.35s ease, padding 0.35s ease;
  }

  .nav-links.open {
    max-height: calc(100vh - 70px);
    padding: 2rem 1.5rem 3rem;
    overflow-y: auto;
  }

  .nav-link {
    font-size: 1.1rem;
    text-transform: none;
    letter-spacing: 0.02em;
    white-space: normal;
  }

  .potega-link { font-size: 1.2rem !important; }

  .nav-cta {
    font-size: 1rem;
    padding: 0.75rem 2rem;
  }

  [data-theme="dark"] .nav-links {
    background: #1a1612;
  }

  /* Show lang+theme row at the bottom of expanded mobile menu */
  .nav-mobile-controls {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-top: 0.5rem;
    border-top: 1px solid rgba(196, 151, 90, 0.2);
    margin-top: 0.5rem;
    width: 100%;
    justify-content: center;
  }

  /* Make the mobile copies look bigger / touch-friendly */
  .nav-mobile-controls .lang-toggle,
  .nav-mobile-controls .theme-toggle {
    width: 46px;
    height: 46px;
  }

  .nav-mobile-controls .lang-label {
    font-size: 0.85rem;
  }

  .nav-mobile-controls .theme-toggle svg {
    width: 20px;
    height: 20px;
  }
}

@media (max-width: 768px) {
  /* Hero */
  .hero-content { padding: 3rem 1.5rem 6rem; margin-top: 0; }
  .btn { width: 100%; max-width: 280px; justify-content: center; }

  /* About */
  .about-grid { gap: 2rem; }

  /* Treatments */
  .treatments-grid { grid-template-columns: 1fr; }

  /* Benefits */
  .benefits-list { grid-template-columns: 1fr; }

  /* Sessions */
  .sessions-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }

  /* Quotes */
  .quotes-section { grid-template-columns: 1fr; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }

  /* Voucher */
  .voucher-buttons { flex-direction: column; align-items: center; }

  /* Potega contact btns */
  .potega-contact-btns { flex-direction: column; align-items: center; }

  /* Footer */
  .footer-links { gap: 0.5rem 1rem; }

  /* Section padding */
  .section { padding: 4rem 0; }

  .container { padding: 0 1.25rem; }
}

@media (max-width: 480px) {
  .sessions-grid { grid-template-columns: 1fr; }
  .contact-buttons { flex-direction: column; }
  .contact-buttons .btn { width: 100%; justify-content: center; }
  .about-contact-chips { flex-direction: column; }
  .chip { justify-content: center; }

  .hero-title { font-size: 2rem; }
  .section-title { font-size: 1.7rem; }
}

/* =========================================
   SMOOTH SCROLL OFFSET for fixed nav
   ========================================= */
section[id], div[id] {
  scroll-margin-top: 70px;
}
