/* ============================================================
   PUER AETERNUS STUDIO — Premium Dark Luxury CSS
   ============================================================ */

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
img, svg { display: block; }
a { text-decoration: none; color: inherit; }
button { background: none; border: none; cursor: pointer; font: inherit; }
ul { list-style: none; }

/* ── VARIABLES ── */
:root {
  --bg:        #0d0d14;
  --bg-1:      #111118;
  --bg-2:      #16161e;
  --bg-3:      #1c1c26;
  --bg-4:      #222230;
  --bg-5:      #28283a;

  --gold:      #c9a84c;
  --gold-lt:   #d4b86a;
  --gold-dk:   #a8893c;
  --gold-a10:  rgba(201,168,76,.12);
  --gold-a20:  rgba(201,168,76,.22);
  --gold-a30:  rgba(201,168,76,.32);
  --gold-glow: 0 8px 32px rgba(201,168,76,.35);

  --coral:     #c87941;
  --teal:      #00b4a0;

  --silver:    #8892a0;
  --white:     #e8e4dc;
  --white-d:   #9ca0a8;
  --muted:     #6b7280;
  --subtle:    #1a1a28;

  --border:     rgba(255,255,255,.08);
  --border-g:   rgba(201,168,76,.32);

  --fh: 'Lora', Georgia, serif;
  --fb: 'DM Sans', system-ui, sans-serif;

  --ease:    cubic-bezier(.25,.46,.45,.94);
  --ease-o:  cubic-bezier(0,0,.2,1);
  --w: 1200px;
  --sp: 120px;
}

/* ── SUBTLE LIGHT TEXTURE ── */
body::before {
  content: '';
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background-image: radial-gradient(rgba(201,168,76,.025) 1px, transparent 1px);
  background-size: 32px 32px;
}

/* ── BASE ── */
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--fb);
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
/* Make sure content sits above bg pattern */
.nav, .loader, .sticky-cta, .mobile-menu, .noise-overlay,
section, footer, .ticker-wrap { position: relative; z-index: 1; }

h1,h2,h3,h4 { font-family: var(--fh); font-weight: 400; line-height: 1.15; }
h1 { font-size: clamp(2.5rem,6vw,5rem); }
h2 { font-size: clamp(1.9rem,4vw,3.4rem); }
h3 { font-size: clamp(1.25rem,2.4vw,1.85rem); }
h4 { font-size: 1.15rem; }
em { font-style: italic; }
h1 em, h2 em, h3 em { color: var(--gold); font-style: italic; }
p em { color: var(--gold); }

p { line-height: 1.78; }

.container { max-width: var(--w); margin: 0 auto; padding: 0 2rem; }

/* ── UTILITIES ── */
.section-label {
  display: inline-flex; align-items: center; gap: .8rem;
  font-size: .68rem; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase; color: var(--gold);
  margin-bottom: 1.2rem;
  background: var(--gold-a10); padding: .45rem 1.1rem; border-radius: 50px;
}
.section-label::before { display: none; }
.section-label.centered { justify-content: center; margin-left: auto; margin-right: auto; display: flex; width: fit-content; }

.gold-line { width:48px; height:3px; background:var(--gold); border-radius:3px; margin:1.6rem 0; }
.gold-line.centered { width:60px; margin:1.6rem auto; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: .65rem;
  padding: .95rem 2.4rem;
  font-family: var(--fb); font-size: .8rem; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
  border: 2px solid transparent;
  border-radius: 50px;
  transition: all .35s var(--ease); position: relative; overflow: hidden;
}
.btn svg { width:15px; height:15px; flex-shrink:0; transition: transform .35s var(--ease); }
.btn:hover svg { transform: translateX(4px); }

.btn-gold { background:var(--gold); color:#fff; border-color:var(--gold); }
.btn-gold:hover { background:var(--gold-dk); border-color:var(--gold-dk); box-shadow:var(--gold-glow); transform:translateY(-2px); }

.btn-outline { background:transparent; color:var(--white); border-color:rgba(255,255,255,.2); }
.btn-outline:hover { border-color:var(--gold); color:var(--gold); background: var(--gold-a10); }

/* ── NOISE OVERLAY ── */
.noise-overlay {
  position: fixed; inset: -50%; width: 200%; height: 200%;
  pointer-events: none; z-index: 9999; opacity: .028;
}

/* ── LOADER ── */
.loader {
  position: fixed; inset: 0;
  background: linear-gradient(145deg, #111118 0%, #0d0d14 100%);
  z-index: 9000;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 1.5rem;
  transition: opacity .8s var(--ease), visibility .8s;
}
.loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-logo {
  font-family: var(--fh); font-size: 1.6rem; font-style: italic; color: var(--white);
}
.loader-logo span { color: var(--gold); font-style: normal; }
.loader-bar { width: 180px; height: 3px; background: rgba(201,168,76,.2); border-radius: 3px; overflow: hidden; }
.loader-progress {
  height: 100%; width: 0; background: var(--gold); border-radius: 3px;
  animation: loaderProg 1.4s var(--ease) forwards;
}
@keyframes loaderProg { to { width: 100%; } }
.loader-label { font-size: .65rem; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); font-weight: 600; }

/* ── STICKY CTA ── */
.sticky-cta {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 800;
  display: flex; align-items: center; gap: .6rem;
  padding: .9rem 1.8rem;
  background: var(--gold); color: #fff;
  font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  border-radius: 50px;
  box-shadow: 0 8px 32px rgba(201,168,76,.45);
  opacity: 0; transform: translateY(16px);
  pointer-events: none; transition: all .4s var(--ease);
}
.sticky-cta svg { width:14px; height:14px; transition: transform .35s var(--ease); }
.sticky-cta:hover svg { transform: translateX(4px); }
.sticky-cta:hover { background: var(--gold-dk); box-shadow: 0 12px 40px rgba(201,168,76,.5); }
.sticky-cta.visible { opacity: 1; transform: translateY(0); pointer-events: all; }

/* ── NAVIGATION ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 700;
  padding: 1.4rem 0; transition: all .4s var(--ease);
}
.nav.scrolled {
  padding: .85rem 0;
  background: rgba(10,10,18,.95); backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,.06);
  box-shadow: 0 4px 24px rgba(0,0,0,.4);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.nav-logo { font-family: var(--fh); font-size: 1.2rem; font-weight: 700; letter-spacing: .01em; white-space: nowrap; color: var(--white); }
.nav-logo em { color: var(--gold); font-style: italic; }
.nav-links { display: flex; align-items: center; gap: 2.2rem; }
.nav-links a {
  font-size: .78rem; font-weight: 500; letter-spacing: .06em; text-transform: uppercase;
  color: var(--white-d); transition: color .3s; position: relative;
}
.nav-links a::after {
  content:''; position:absolute; bottom:-4px; left:0; width:0; height:2px;
  background:var(--gold); border-radius:2px; transition:width .35s var(--ease);
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }
.nav-cta { padding: .65rem 1.5rem; font-size: .72rem; border-radius: 50px; }

.nav-hamburger { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.nav-hamburger span { display: block; width: 22px; height: 2px; background: var(--white); border-radius: 2px; transition: all .35s var(--ease); }
.nav-hamburger.active span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-hamburger.active span:nth-child(2) { opacity: 0; }
.nav-hamburger.active span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ── MOBILE MENU ── */
.mobile-menu {
  position: fixed; inset: 0; background: var(--bg); z-index: 690;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1.8rem;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .4s var(--ease), visibility .4s;
}
.mobile-menu.active { opacity: 1; visibility: visible; pointer-events: all; }
.mobile-menu-close {
  position: absolute; top: 1.5rem; right: 2rem;
  width: 44px; height: 44px; display: flex; align-items: center; justify-content: center;
  color: var(--white);
}
.mobile-menu-close svg { width: 20px; height: 20px; }
.mobile-nav { display: flex; flex-direction: column; align-items: center; gap: 1.4rem; }
.mobile-link {
  font-family: var(--fh); font-size: 2.2rem; font-weight: 400; font-style: italic;
  color: var(--white-d); transition: color .3s;
}
.mobile-link:hover { color: var(--gold); }
.mobile-menu-footer { margin-top: 1.5rem; font-size: .75rem; color: var(--muted); letter-spacing: .1em; display: flex; gap: .75rem; }

/* ── SCROLL REVEAL ── */
.reveal { opacity: 0; transform: translateY(36px); transition: opacity .85s var(--ease), transform .85s var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }
.reveal-delay-5 { transition-delay: .5s; }

/* ════════════════════════════════
   HERO — Full-screen video background
════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* ── Video layer ── */
.hero-video-wrap {
  position: absolute; inset: 0; z-index: 0; overflow: hidden;
}
.hero-video {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 20%;
  display: block;
}
/* Branded dark overlay: deep rose left, fading to near-black right */
.hero-video-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(
      105deg,
      rgba(90, 10, 35, .82) 0%,
      rgba(30,  5, 18, .70) 45%,
      rgba(10,  2, 10, .55) 100%
    ),
    linear-gradient(
      to top,
      rgba(0,0,0,.50) 0%,
      transparent 40%
    );
}

/* ── Text wrapper ── */
.hero-content-wrap {
  position: relative; z-index: 2; width: 100%;
}
.hero-content { max-width: 760px; padding-top: 4rem; }

/* ── Eyebrow ── */
.hero-eyebrow {
  display: flex; align-items: center; gap: 1rem;
  font-size: .7rem; font-weight: 600; letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold-lt); margin-bottom: 1.6rem;
  opacity: 0; transform: translateY(18px);
  animation: heroUp .8s var(--ease) .4s forwards;
}
.hero-eyebrow-line { width: 36px; height: 2px; background: var(--gold-lt); border-radius: 2px; flex-shrink: 0; }

/* ── Title ── */
.hero-title {
  opacity: 0; transform: translateY(28px);
  animation: heroUp 1s var(--ease) .6s forwards;
  margin-bottom: 1.4rem; color: #fff;
}
.hero-title em { color: var(--gold-lt); }

/* ── Subtitle ── */
.hero-sub {
  font-size: clamp(.95rem,1.6vw,1.1rem); font-weight: 400;
  color: rgba(255,255,255,.80); line-height: 1.82;
  margin-bottom: 2.8rem;
  opacity: 0; transform: translateY(18px);
  animation: heroUp .8s var(--ease) .9s forwards;
}

/* ── CTAs ── */
.hero-ctas {
  display: flex; flex-wrap: wrap; gap: 1rem;
  margin-bottom: 3rem;
  opacity: 0; transform: translateY(18px);
  animation: heroUp .8s var(--ease) 1.1s forwards;
}
/* Outline button variant for dark background */
.btn-outline-hero {
  display: inline-flex; align-items: center; gap: .65rem;
  padding: .95rem 2.4rem;
  font-family: var(--fb); font-size: .8rem; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
  border: 2px solid rgba(255,255,255,.50); border-radius: 50px;
  background: transparent; color: #fff;
  transition: all .35s var(--ease);
}
.btn-outline-hero:hover {
  background: rgba(255,255,255,.12);
  border-color: #fff;
}

/* ── Trust bar ── */
.hero-trust {
  display: flex; flex-wrap: wrap; gap: 2rem;
  opacity: 0; animation: heroFade .8s var(--ease) 1.5s forwards;
  padding-top: 2rem; border-top: 1px solid rgba(255,255,255,.15);
}
.hero-trust-item {
  display: flex; align-items: center; gap: .6rem;
  font-size: .74rem; font-weight: 500; color: rgba(255,255,255,.72);
}
.hero-trust-item svg { width: 15px; height: 15px; color: var(--gold-lt); flex-shrink: 0; }

/* ── Floating Google rating badge (bottom-right) ── */
.hero-rating-badge {
  position: absolute; bottom: 2.5rem; right: 2.5rem; z-index: 3;
  background: rgba(255,255,255,.12); backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.20); border-radius: 14px;
  padding: .9rem 1.4rem;
  display: flex; flex-direction: column; align-items: flex-start; gap: .15rem;
  opacity: 0; animation: heroFade 1s var(--ease) 1.8s forwards;
}
.hero-rating-stars { display: flex; gap: 2px; margin-bottom: .1rem; }
.hero-rating-num { font-size: .88rem; font-weight: 700; color: #fff; }
.hero-rating-sub { font-size: .7rem; color: rgba(255,255,255,.6); }

/* ── Scroll indicator ── */
.hero-scroll-indicator {
  position: absolute; bottom: 2.4rem; left: 50%; transform: translateX(-50%);
  z-index: 3; display: flex; flex-direction: column; align-items: center; gap: .6rem;
  font-size: .6rem; letter-spacing: .2em; text-transform: uppercase;
  color: rgba(255,255,255,.45);
  opacity: 0; animation: heroFade 1s var(--ease) 2.2s forwards;
}
.hero-scroll-line {
  width: 1px; height: 48px; order: -1;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,.5));
  animation: scrollAnim 2.2s ease-in-out 2.2s infinite;
}

@keyframes glowPulse { 0%,100%{opacity:.6} 50%{opacity:1} }
@keyframes scrollAnim { 0%,100%{opacity:.4;transform:scaleY(1)} 50%{opacity:1;transform:scaleY(.6) translateY(8px)} }
@keyframes heroUp { to { opacity:1; transform:translateY(0); } }
@keyframes heroFade { to { opacity:1; } }

/* ── TICKER ── */
.ticker-wrap {
  background: var(--gold); overflow: hidden; padding: .85rem 0; position: relative; z-index: 1;
}
.ticker { display: flex; }
.ticker-inner { display: flex; white-space: nowrap; animation: tickerMove 32s linear infinite; }
.ticker-item {
  display: inline-flex; align-items: center; gap: 1.8rem; padding: 0 1.8rem;
  font-size: .68rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.9);
}
.ticker-dot { width: 4px; height: 4px; border-radius: 50%; background: rgba(255,255,255,.7); flex-shrink: 0; }
@keyframes tickerMove { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ════════════════════════════════
   ABOUT
════════════════════════════════ */
.about { padding: var(--sp) 0; background: var(--bg-1); }

.about-grid {
  display: grid; grid-template-columns: 1fr 1.15fr;
  gap: 6rem; align-items: center;
}
.about-visual { position: relative; }
.about-image-frame {
  position: relative; width: 100%;
  padding-bottom: 128%; /* 4:5 portrait ratio */
}
.about-img-placeholder {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #141008 0%, #1e180c 40%, #0e0c08 100%);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 1rem;
}
.about-img-placeholder svg { width: 100px; height: 100px; color: var(--gold); opacity: .18; }
.about-img-placeholder span {
  font-size: .65rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--muted); opacity: .5;
}
.about-badge {
  position: absolute; bottom: -1.8rem; right: -1.8rem; z-index: 2;
  width: 160px; height: 160px; border-radius: 20px;
  background: var(--gold); border: 3px solid #fff;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 1.2rem;
  box-shadow: 0 8px 32px rgba(201,168,76,.35);
}
.about-badge-number {
  font-family: var(--fh); font-size: 2.8rem; font-weight: 700; color: #fff; line-height: 1;
}
.about-badge-number span { font-size: 1.5rem; }
.about-badge-label { font-size: .62rem; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.85); margin-top: .4rem; font-weight: 600; }
.about-frame-border {
  position: absolute; top: -1.4rem; left: -1.4rem; right: 1.4rem; bottom: 1.4rem;
  border: 1px solid var(--border-g); pointer-events: none; z-index: 0;
}

.about-content h2 { margin-bottom: 1.2rem; }
.about-content h2 em { color: var(--gold-lt); }
.about-content p { color: var(--white-d); font-size: .93rem; margin-bottom: 1.4rem; }

.about-values { display: flex; flex-direction: column; gap: .9rem; margin: 2rem 0; }
.about-value { display: flex; align-items: center; gap: .9rem; font-size: .82rem; color: var(--silver); }
.about-value svg { width: 16px; height: 16px; color: var(--gold); flex-shrink: 0; }

.about-stats {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem;
  margin-top: 2.5rem; padding-top: 2.5rem; border-top: 1px solid var(--border);
}
.about-stat-number {
  font-family: var(--fh); font-size: 2.2rem; font-weight: 400; color: var(--gold); line-height: 1;
}
.about-stat-number span { font-size: 1.3rem; }
.about-stat-label { font-size: .65rem; letter-spacing: .13em; text-transform: uppercase; color: var(--muted); margin-top: .4rem; }

/* ════════════════════════════════
   WHY CHOOSE US
════════════════════════════════ */
.why { padding: var(--sp) 0; background: var(--bg); }

.why-header { text-align: center; max-width: 580px; margin: 0 auto 5rem; }
.why-header h2 em { color: var(--gold-lt); }
.why-header p { color: var(--silver); font-size: .93rem; margin-top: 1rem; }

.why-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; }
.why-card {
  background: var(--bg); border: 1.5px solid rgba(201,168,76,.12);
  padding: 3rem 2.4rem; border-radius: 16px;
  transition: all .4s var(--ease); position: relative; overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,.04);
}
.why-card::after {
  content:''; position:absolute; top:0; left:0; width:100%; height:3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-lt));
  transform: scaleX(0); transform-origin: left;
  transition: transform .4s var(--ease);
}
.why-card:hover::after { transform: scaleX(1); }
.why-card:hover { background: var(--bg-1); border-color: var(--border-g); transform: translateY(-4px); box-shadow: 0 12px 40px rgba(201,168,76,.1); }
.why-icon { width: 52px; height: 52px; background: var(--gold-a10); border-radius: 12px; display:flex; align-items:center; justify-content:center; color: var(--gold); margin-bottom: 1.5rem; }
.why-icon svg { width: 26px; height: 26px; }
.why-card h4 { font-size: 1.1rem; font-weight: 700; margin-bottom: .9rem; color: var(--white); font-family: var(--fb); }
.why-card p { font-size: .86rem; color: var(--silver); line-height: 1.75; }

/* ════════════════════════════════
   SERVICES
════════════════════════════════ */
.services { padding: var(--sp) 0; background: var(--bg-1); }

.services-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 2rem; margin-bottom: 4rem; flex-wrap: wrap;
}
.services-header h2 { max-width: 500px; }
.services-header p { max-width: 400px; color: var(--silver); font-size: .9rem; }

.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.service-card {
  background: var(--bg); border: 1.5px solid rgba(201,168,76,.1);
  padding: 2.8rem 2.4rem; border-radius: 20px; transition: all .4s var(--ease);
  position: relative; overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,.04);
}
.service-card::before {
  content:''; position:absolute; inset:0;
  background: radial-gradient(circle at 50% 0%, rgba(201,168,76,.05) 0%, transparent 65%);
  opacity:0; transition:opacity .4s;
}
.service-card:hover::before { opacity: 1; }
.service-card:hover { border-color: var(--border-g); transform: translateY(-6px); box-shadow: 0 20px 50px rgba(201,168,76,.12); }

.service-num { font-size: .62rem; font-weight: 700; letter-spacing: .2em; color: var(--gold); margin-bottom: 1rem; }
.service-icon { width: 48px; height: 48px; background: var(--gold-a10); border-radius: 12px; display:flex; align-items:center; justify-content:center; color: var(--gold); margin-bottom: 1.4rem; }
.service-icon svg { width: 26px; height: 26px; }
.service-card h3 { font-size: 1.35rem; font-weight: 400; margin-bottom: .7rem; color: var(--white); }
.service-card p { font-size: .84rem; color: var(--silver); line-height: 1.75; margin-bottom: 1.4rem; }
.service-features { display: flex; flex-direction: column; gap: .5rem; margin-bottom: 1.6rem; }
.service-features li { font-size: .78rem; color: var(--muted); padding-left: 1.2rem; position: relative; }
.service-features li::before { content:'✓'; position:absolute; left:0; color:var(--gold); font-size:.72rem; }
.service-tag {
  display: inline-block; font-size: .62rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--gold); background: var(--gold-a10);
  padding: .35rem 1rem; border-radius: 50px;
}

/* ════════════════════════════════
   HYGIENE
════════════════════════════════ */
.hygiene { padding: var(--sp) 0; background: var(--bg-2); position: relative; overflow: hidden; }
.hygiene-accent-line {
  position: absolute; left: 0; top: 0; width: 3px; height: 100%;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
}
.hygiene-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 6rem; align-items: start;
}
.hygiene-content h2 { margin-bottom: 1.2rem; }
.hygiene-content h2 em { color: var(--gold-lt); }
.hygiene-content > p { color: var(--silver); font-size: .93rem; margin-bottom: 1.5rem; }

.hygiene-list { display: flex; flex-direction: column; gap: 1.4rem; margin-top: 1rem; }
.hygiene-list li { display: flex; gap: 1.2rem; align-items: flex-start; }
.hygiene-num {
  flex-shrink: 0; width: 2rem; height: 2rem;
  border: 1px solid var(--border-g); display: flex; align-items: center; justify-content: center;
  font-size: .68rem; font-weight: 500; color: var(--gold); line-height:1;
}
.hygiene-list strong { display: block; font-size: .84rem; font-weight: 500; color: var(--white); margin-bottom: .25rem; }
.hygiene-list span { font-size: .8rem; color: var(--muted); line-height: 1.68; }

.hygiene-badge-stack { display: flex; flex-direction: column; gap: 12px; }
.hygiene-badge {
  background: var(--bg); border: 1.5px solid rgba(201,168,76,.1);
  padding: 1.6rem 2rem; display: flex; align-items: center; gap: 1.4rem;
  border-radius: 16px; transition: all .3s;
  box-shadow: 0 2px 8px rgba(0,0,0,.04);
}
.hygiene-badge:hover { border-color: var(--border-g); transform: translateX(4px); box-shadow: 0 4px 20px rgba(201,168,76,.1); }
.hygiene-badge-icon { width: 44px; height: 44px; background: var(--gold-a10); border-radius: 10px; display:flex; align-items:center; justify-content:center; color: var(--gold); flex-shrink: 0; }
.hygiene-badge-icon svg { width: 22px; height: 22px; }
.hygiene-badge-label { font-size: .64rem; letter-spacing: .15em; text-transform: uppercase; color: var(--gold); font-weight: 700; margin-bottom: .3rem; }
.hygiene-badge-value { font-size: .84rem; color: var(--white-d); font-weight: 500; }
.hygiene-cta-box {
  background: linear-gradient(135deg, var(--gold-a10), var(--gold-a20)); border: 1.5px solid var(--border-g);
  padding: 2rem; text-align: center; border-radius: 16px;
  display: flex; flex-direction: column; align-items: center; gap: 1.2rem;
}
.hygiene-cta-box p { font-size: .84rem; color: var(--silver); }

/* ════════════════════════════════
   GALLERY
════════════════════════════════ */
.gallery { padding: var(--sp) 0; background: var(--bg); }
.gallery-header { text-align: center; max-width: 560px; margin: 0 auto 3.5rem; }
.gallery-header h2 em { color: var(--gold-lt); }
.gallery-header p { color: var(--silver); font-size: .93rem; margin-top: 1rem; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 240px;
  gap: 4px;
}
.gallery-item { position: relative; overflow: hidden; cursor: pointer; }
.gallery-item--tall { grid-row: span 2; }
.gallery-item--wide { grid-column: span 2; }

.gallery-item-inner { width: 100%; height: 100%; position: relative; transition: transform .6s var(--ease); }
.gallery-item:hover .gallery-item-inner { transform: scale(1.04); }
.gallery-item-inner img { width: 100%; height: 100%; object-fit: cover; display: block; }

.gallery-placeholder-icon {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
}
.gallery-placeholder-icon svg { width: 48px; height: 48px; color: var(--gold); opacity: .12; }
.gallery-overlay {
  position: absolute; inset: 0;
  background: rgba(8,8,8,.55); display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity .4s;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay svg { width: 28px; height: 28px; color: var(--gold); }

.gallery-footer { display: flex; align-items: center; justify-content: center; gap: 2rem; margin-top: 2.5rem; flex-wrap: wrap; }
.gallery-footer p { font-size: .84rem; color: var(--muted); }
.gallery-footer .btn svg { width: 16px; height: 16px; transition: none; }
.gallery-footer .btn:hover svg { transform: none; }

/* ════════════════════════════════
   EXPERIENCE (3 STEPS)
════════════════════════════════ */
.experience { padding: var(--sp) 0; background: var(--bg-1); }
.experience-header { text-align: center; max-width: 580px; margin: 0 auto 5rem; }
.experience-header h2 em { color: var(--gold-lt); }
.experience-header p { color: var(--silver); font-size: .93rem; margin-top: 1rem; }

.steps { display: flex; align-items: flex-start; gap: 0; }
.step { flex: 1; text-align: center; padding: 0 2.5rem; }
.step-connector { flex: 0 0 auto; display: flex; align-items: flex-start; padding-top: 2rem; }
.step-connector-line { width: 80px; height: 1px; background: linear-gradient(90deg, var(--gold-a30), var(--gold-a30)); }

.step-number {
  width: 4rem; height: 4rem; border-radius: 50%;
  border: 1px solid var(--border-g); background: var(--bg-1);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--fh); font-size: 1.1rem; letter-spacing: .05em; color: var(--gold);
  margin: 0 auto 1.6rem;
}
.step-icon { width: 32px; height: 32px; color: var(--muted); margin: 0 auto 1.2rem; }
.step-icon svg { width: 100%; height: 100%; }
.step h3 { font-size: 1.5rem; margin-bottom: .9rem; }
.step p { font-size: .86rem; color: var(--silver); line-height: 1.78; }

/* ════════════════════════════════
   TESTIMONIALS
════════════════════════════════ */
.testimonials { padding: var(--sp) 0; background: var(--bg); overflow: hidden; }
.testimonials-header { text-align: center; max-width: 500px; margin: 0 auto 4rem; }
.testimonials-header h2 em { color: var(--gold-lt); }

.testimonials-slider { overflow: hidden; }
.testimonials-track { display: flex; transition: transform .65s var(--ease); }
.testimonial { min-width: 100%; padding: 0 8%; }
.testimonial-inner {
  background: var(--bg); border: 1.5px solid rgba(201,168,76,.1);
  padding: 3.5rem 3.5rem 2.8rem; max-width: 820px; margin: 0 auto; position: relative;
  border-radius: 24px; box-shadow: 0 8px 40px rgba(201,168,76,.07);
}
.testimonial-quote {
  position: absolute; top: .8rem; left: 2rem;
  font-family: Georgia, serif; font-size: 9rem; line-height: 1;
  color: var(--gold); opacity: .15; pointer-events: none;
}
.testimonial-text {
  font-family: var(--fb); font-size: 1rem; font-weight: 400; font-style: italic;
  color: var(--white-d); line-height: 1.82; margin-bottom: 2rem; position: relative; z-index: 1;
}
.testimonial-footer { display: flex; align-items: center; gap: 1rem; }
.testimonial-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--bg-4); border: 1px solid var(--border-g);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--muted);
}
.testimonial-avatar svg { width: 20px; height: 20px; }
.testimonial-info strong { display:block; font-size:.84rem; font-weight:500; color:var(--white); letter-spacing:.04em; }
.testimonial-info span { font-size:.74rem; color:var(--muted); letter-spacing:.06em; }
.testimonial-stars { display:flex; gap:.2rem; margin-left:auto; }
.testimonial-stars svg { width:13px; height:13px; }

.testimonials-controls {
  display: flex; align-items: center; justify-content: center;
  gap: 1.5rem; margin-top: 2.5rem;
}
.testimonials-btn {
  width: 44px; height: 44px; border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--silver); transition: all .3s;
}
.testimonials-btn svg { width: 18px; height: 18px; }
.testimonials-btn:hover { border-color: var(--gold); color: var(--gold); }
.testimonials-dots { display: flex; gap: .5rem; }
.testimonials-dots button {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--subtle); padding: 0; transition: all .3s;
}
.testimonials-dots button.active { background: var(--gold); width: 22px; border-radius: 4px; }

/* ════════════════════════════════
   GOOGLE REVIEWS
════════════════════════════════ */
.greviews { padding: var(--sp) 0; background: var(--bg-1); }

.greviews-header {
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem; flex-wrap: wrap;
  background: var(--bg-2); border: 1.5px solid var(--border);
  border-radius: 20px; padding: 2rem 2.8rem;
  margin-bottom: 2.8rem;
  box-shadow: 0 4px 20px rgba(0,0,0,.06);
}

.greviews-biz { display: flex; flex-direction: column; gap: .45rem; }
.greviews-biz-name { font-family: var(--fh); font-size: 1.5rem; font-weight: 600; color: var(--white); }
.greviews-biz-type { font-size: .8rem; color: var(--muted); font-weight: 500; }
.greviews-biz-meta {
  display: flex; align-items: center; gap: .5rem;
  font-size: .82rem; color: var(--white-d); font-weight: 500;
}
.greviews-biz-meta svg { width: 14px; height: 14px; color: var(--gold); flex-shrink: 0; }
.greviews-biz-meta a { color: var(--gold); font-weight: 600; }
.greviews-biz-meta a:hover { text-decoration: underline; }

.greviews-score {
  display: flex; flex-direction: column; align-items: center; gap: .4rem;
  text-align: center; min-width: 140px;
}
.greviews-google-g { margin-bottom: .2rem; }
.greviews-num {
  font-family: var(--fh); font-size: 3.2rem; font-weight: 700;
  color: var(--white); line-height: 1;
}
.greviews-stars-row { display: flex; gap: 2px; }
.greviews-count { font-size: .78rem; color: var(--muted); font-weight: 500; margin-top: .1rem; }

/* Review cards grid */
.greviews-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; margin-bottom: 2.5rem;
}

.greview-card {
  background: var(--bg-2); border: 1.5px solid var(--border); border-radius: 18px;
  padding: 1.8rem 2rem;
  box-shadow: 0 2px 12px rgba(0,0,0,.05);
  transition: all .3s var(--ease);
}
.greview-card:hover {
  border-color: #fbbc05;
  box-shadow: 0 8px 30px rgba(251,188,5,.12);
  transform: translateY(-3px);
}

.greview-top {
  display: flex; align-items: center; gap: .9rem;
  margin-bottom: 1rem; position: relative;
}
.greview-avatar {
  width: 42px; height: 42px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; font-weight: 700; color: #fff;
  font-family: var(--fb);
}
.greview-name { font-size: .88rem; font-weight: 700; color: #1a1a2e; }
.greview-meta { font-size: .74rem; color: #9ca3af; margin-top: .1rem; }
.greview-g-icon { margin-left: auto; opacity: .7; flex-shrink: 0; }

.greview-stars { display: flex; gap: 2px; margin-bottom: .9rem; }
.greview-text { font-size: .85rem; color: var(--white-d); line-height: 1.7; }

.greviews-cta { text-align: center; }

@media (max-width: 900px) {
  .greviews-grid { grid-template-columns: 1fr; }
  .greviews-header { flex-direction: column; align-items: flex-start; }
  .greviews-score { align-items: flex-start; text-align: left; }
}
@media (max-width: 600px) {
  .greviews-grid { grid-template-columns: 1fr; }
}

/* ════════════════════════════════
   BOOKING
════════════════════════════════ */
.booking { padding: var(--sp) 0; background: var(--bg-2); position: relative; overflow: hidden; }
.booking-glow {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(201,168,76,.05) 0%, transparent 70%);
  pointer-events: none;
}
.booking-inner { position:relative; z-index:1; text-align:center; max-width:820px; margin:0 auto; }
.booking-inner h2 em { color: var(--gold-lt); }
.booking-inner > p { color: var(--silver); font-size: .93rem; margin: 1rem 0 3rem; }

.booking-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; margin-bottom: 2.8rem; text-align: left; }
.booking-card {
  background: var(--bg); border: 1.5px solid rgba(201,168,76,.1); padding: 2.2rem 2rem;
  border-radius: 16px; transition: all .3s;
  box-shadow: 0 2px 12px rgba(0,0,0,.04);
}
.booking-card:hover { border-color: var(--border-g); transform: translateY(-3px); box-shadow: 0 8px 30px rgba(201,168,76,.1); }
.booking-card-icon { width: 36px; height: 36px; color: var(--gold); margin-bottom: 1rem; }
.booking-card-icon svg { width: 100%; height: 100%; }
.booking-card-label { font-size: .64rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); margin-bottom: .6rem; }
.booking-card-value { font-family: var(--fb); font-size: 1rem; color: var(--white); line-height: 1.4; display:block; transition:color .3s; }
.booking-card-value:hover { color: var(--gold); }
.booking-hours { display: flex; flex-direction: column; gap: .2rem; }
.booking-hours span { font-size: .84rem; font-family: var(--fb); font-weight: 300; }
.booking-cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ════════════════════════════════
   SOCIAL BTN (shared)
════════════════════════════════ */
.social-btn {
  width: 42px; height: 42px; border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--silver); transition: all .3s;
}
.social-btn svg { width: 17px; height: 17px; }
.social-btn:hover { border-color: var(--gold); color: var(--gold); }

/* ════════════════════════════════
   FAQ
════════════════════════════════ */
.faq { padding: var(--sp) 0; background: var(--bg); }
.faq-header { text-align: center; max-width: 560px; margin: 0 auto 4rem; }
.faq-header h2 em { color: var(--gold-lt); }
.faq-header p { color: var(--silver); font-size: .93rem; margin-top: 1rem; }

.faq-list { max-width: 860px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.faq-item { background: var(--bg); border: 1.5px solid rgba(201,168,76,.1); overflow: hidden; border-radius: 14px; box-shadow: 0 2px 8px rgba(0,0,0,.04); }
.faq-item.open { border-color: var(--gold); box-shadow: 0 4px 20px rgba(201,168,76,.1); }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.5rem 2rem; text-align: left;
  color: var(--white); transition: background .3s;
}
.faq-q:hover { background: var(--bg-1); }
.faq-q span:first-child { font-size: .88rem; font-weight: 500; line-height: 1.45; }
.faq-icon {
  flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%;
  background: var(--gold-a10); display: flex; align-items: center; justify-content: center;
  color: var(--gold); transition: transform .35s var(--ease), background .3s;
}
.faq-icon svg { width: 12px; height: 12px; }
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--gold); color: #fff; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .45s var(--ease); }
.faq-item.open .faq-a { max-height: 500px; }
.faq-a p { padding: 0 2rem 1.6rem; font-size: .84rem; color: var(--silver); line-height: 1.78; }
.faq-a strong { color: var(--white); font-weight: 600; }

/* ════════════════════════════════
   FOOTER
════════════════════════════════ */
.footer { background: var(--bg-1); border-top: 1px solid var(--border); padding: 5rem 0 2.5rem; }
.footer-top {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 4rem; margin-bottom: 4rem; padding-bottom: 3.5rem; border-bottom: 1px solid var(--border);
}
.footer-logo { font-family: var(--fh); font-size: 1.15rem; font-weight: 400; letter-spacing: .06em; text-transform: uppercase; color: var(--white); margin-bottom: 1rem; }
.footer-logo em { color: var(--gold); font-style: normal; }
.footer-brand p { font-size: .8rem; color: var(--muted); line-height: 1.72; margin-bottom: 1.5rem; }
.footer-social { display: flex; gap: .7rem; }

.footer-col h5 {
  font-family: var(--fb); font-size: .66rem; font-weight: 500;
  letter-spacing: .18em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.5rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: .65rem; }
.footer-col ul a { font-size: .82rem; color: var(--muted); transition: color .3s; }
.footer-col ul a:hover { color: var(--white); }

.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  gap: 1.5rem; flex-wrap: wrap;
}
.footer-bottom p { font-size: .72rem; color: var(--muted); }

/* ════════════════════════════════
   RESPONSIVE
════════════════════════════════ */
@media (max-width: 1100px) {
  :root { --sp: 90px; }
  .why-grid { grid-template-columns: repeat(2,1fr); }
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; }
  .hygiene-grid { grid-template-columns: 1fr; }
  .hygiene-visual { display: none; }
  .services-header { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 900px) {
  .hero-split { grid-template-columns: 1fr; }
  .hero-right { height: 50vh; min-height: 320px; }
  .hero-left { padding: 7rem 2rem 3rem; }
  .hero-left .container { max-width: 100%; margin: 0; }
  .hero-scroll-indicator { left: 50%; transform: translateX(-50%); bottom: 1.2rem; }
}

@media (max-width: 768px) {
  :root { --sp: 70px; }
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }

  .hero-sub br { display: none; }
  .hero-trust { gap: 1.2rem; }

  .why-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }

  .steps { flex-direction: column; align-items: center; gap: 2.5rem; }
  .step-connector { display: none; }
  .step { padding: 0 1rem; width: 100%; max-width: 420px; }

  .booking-cards { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 180px; }
  .gallery-item--tall { grid-row: span 2; }
  .gallery-item--wide { grid-column: span 2; }

  .testimonial { padding: 0 1rem; }
  .testimonial-inner { padding: 2.5rem 1.8rem; }

  .footer-top { grid-template-columns: 1fr; gap: 2.2rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: .5rem; }

  .sticky-cta { bottom: 1.2rem; right: 1.2rem; padding: .8rem 1.4rem; font-size: .68rem; }
}

@media (max-width: 480px) {
  .container { padding: 0 1.2rem; }
  .hero-ctas { flex-direction: column; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .gallery-item--tall, .gallery-item--wide { grid-row: span 1; grid-column: span 1; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .booking-cta { flex-direction: column; align-items: center; }
}

/* ════════════════════════════════
   ABOUT — real image
════════════════════════════════ */
.about-real-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: contrast(1.05) brightness(.92);
  transition: transform .6s var(--ease);
}
.about-visual:hover .about-real-img { transform: scale(1.02); }
.about-cta { margin-top: 2rem; }

/* ════════════════════════════════
   CENIK
════════════════════════════════ */
.cenik { padding: var(--sp) 0; background: var(--bg-2); border-top: 3px solid var(--gold) !important; }
.cenik-header { text-align: center; max-width: 560px; margin: 0 auto 3.5rem; }
.cenik-header h2 { font-size: clamp(2.4rem,5vw,4rem); }
.cenik-header h2 em { color: var(--gold-lt); }
.cenik-header p { color: var(--silver); font-size: .93rem; margin-top: 1rem; }

.cenik-img-wrap {
  position: relative; max-width: 720px; margin: 0 auto;
  border: 1px solid var(--border-g);
  box-shadow: 0 0 80px rgba(201,168,76,.08), 0 40px 60px rgba(0,0,0,.12);
  background: var(--bg); /* bg shows through the inverted black areas */
}
.cenik-img {
  width: 100%; display: block;
  filter: invert(1) contrast(1.08);
  mix-blend-mode: screen; /* black (inverted white) → transparent → shows --bg underneath */
}
.cenik-overlay-corner {
  position: absolute; width: 40px; height: 40px;
  border-color: var(--gold); border-style: solid;
}
.cenik-overlay-corner--tl { top: -1px; left: -1px; border-width: 2px 0 0 2px; }
.cenik-overlay-corner--br { bottom: -1px; right: -1px; border-width: 0 2px 2px 0; }

.cenik-note {
  display: flex; align-items: center; gap: .75rem; justify-content: center;
  margin-top: 1.5rem; font-size: .8rem; color: var(--muted);
}
.cenik-note svg { width: 16px; height: 16px; color: var(--gold); flex-shrink: 0; }

/* ════════════════════════════════
   NEGA PIERCINGA
════════════════════════════════ */
.nega { padding: var(--sp) 0; background: var(--bg-2); position: relative; overflow: hidden; }
.nega-accent-line {
  position: absolute; left: 0; top: 0; width: 3px; height: 100%;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
}
.nega-grid {
  display: grid; grid-template-columns: 1.2fr 1fr;
  gap: 5rem; align-items: start;
}
.nega-content h2 em { color: var(--gold-lt); }
.nega-content > p { color: var(--silver); font-size: .93rem; margin-bottom: 1.5rem; }

.nega-list { display: flex; flex-direction: column; gap: 1.4rem; margin: 2rem 0; }
.nega-item { display: flex; gap: 1.2rem; align-items: flex-start; }
.nega-num {
  flex-shrink: 0; width: 2rem; height: 2rem;
  border: 1px solid var(--border-g); display: flex; align-items: center; justify-content: center;
  font-size: .65rem; font-weight: 500; color: var(--gold);
}
.nega-item strong { display: block; font-size: .84rem; font-weight: 500; color: var(--white); margin-bottom: .25rem; }
.nega-item span { font-size: .8rem; color: var(--muted); line-height: 1.68; }

.nega-cta { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 2rem; }

.nega-sidebar { display: flex; flex-direction: column; gap: 1px; }
.nega-tip-card {
  background: var(--bg); border: 1.5px solid rgba(201,168,76,.1);
  padding: 2rem 1.8rem; border-radius: 16px; transition: all .3s;
  box-shadow: 0 2px 12px rgba(0,0,0,.04);
}
.nega-tip-card:hover { border-color: var(--border-g); transform: translateY(-3px); box-shadow: 0 8px 24px rgba(201,168,76,.1); }
.nega-tip-icon { width: 44px; height: 44px; background: var(--gold-a10); border-radius: 10px; display:flex; align-items:center; justify-content:center; color: var(--gold); margin-bottom: 1rem; }
.nega-tip-icon svg { width: 22px; height: 22px; }
.nega-tip-card h4 { font-size: 1rem; margin-bottom: .7rem; color: var(--white); font-weight: 700; font-family: var(--fb); }
.nega-tip-card p { font-size: .82rem; color: var(--silver); line-height: 1.7; }
.nega-tip-card em { color: var(--gold); font-style: italic; }

/* ════════════════════════════════
   CONTACT — new card layout
════════════════════════════════ */
.contact { padding: var(--sp) 0; background: var(--bg-1); }
.contact-header { text-align: center; max-width: 560px; margin: 0 auto 3.5rem; }
.contact-header h2 em { color: var(--gold-lt); }
.contact-header p { color: var(--silver); font-size: .93rem; margin-top: 1rem; }

.contact-cards {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 2px; margin-bottom: 2rem;
}
.contact-card {
  background: var(--bg); border: 1.5px solid rgba(201,168,76,.1);
  padding: 2.5rem 2rem; text-align: center;
  border-radius: 16px; transition: all .3s;
  box-shadow: 0 2px 12px rgba(0,0,0,.04);
}
.contact-card:hover { border-color: var(--border-g); background: var(--bg-1); transform: translateY(-3px); box-shadow: 0 8px 30px rgba(201,168,76,.1); }
.contact-card-icon { width: 36px; height: 36px; color: var(--gold); margin: 0 auto 1rem; }
.contact-card-icon svg { width: 100%; height: 100%; }
.contact-card-label { font-size: .64rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); margin-bottom: .6rem; }
.contact-card-value { font-size: .9rem; color: var(--white-d); line-height: 1.6; }
.contact-card-link { transition: color .3s; }
.contact-card-link:hover { color: var(--gold); }

.contact-social-row { display: flex; gap: .8rem; justify-content: center; }

/* ════════════════════════════════
   MAP SECTION — full width, end
════════════════════════════════ */
.map-section { position: relative; }
.map-section-inner { position: relative; width: 100%; height: 520px; overflow: hidden; }
.map-section-inner iframe {
  width: 100%; height: 100%; border: none;
  filter: grayscale(100%) brightness(35%) contrast(1.4) hue-rotate(260deg) saturate(0.4);
  transition: filter .6s var(--ease);
  display: block;
}
.map-section-inner:hover iframe {
  filter: grayscale(30%) brightness(65%) contrast(1.1);
}
.map-section-overlay {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: flex-start;
  padding: 3rem 4rem; pointer-events: none;
  background: linear-gradient(90deg, rgba(0,0,0,.88) 0%, rgba(0,0,0,.45) 50%, transparent 80%);
}
.map-section-card {
  pointer-events: all;
  background: rgba(0,0,0,.92); border: 1px solid var(--border-g);
  backdrop-filter: blur(12px); padding: 2.5rem 2.8rem;
  max-width: 340px;
  box-shadow: 0 0 60px rgba(0,0,0,.6);
}
.map-section-card-label { font-size: .64rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-bottom: .75rem; }
.map-section-card-title { font-family: var(--fh); font-size: 1.8rem; font-weight: 400; letter-spacing: .04em; text-transform: uppercase; color: var(--white); margin-bottom: .4rem; }
.map-section-card-sub { font-size: .8rem; color: var(--muted); }

/* ════════════════════════════════
   LUXURY SECTION DIVIDERS
════════════════════════════════ */
.about, .why, .services, .cenik, .hygiene, .nega, .gallery,
.testimonials, .booking, .contact, .faq {
  border-top: 1px solid rgba(201,168,76,.08);
}

/* ════════════════════════════════
   RESPONSIVE — new sections
════════════════════════════════ */
@media (max-width: 1100px) {
  .contact-cards { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 900px) {
  .nega-grid { grid-template-columns: 1fr; }
  .contact-cards { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 768px) {
  .contact-cards { grid-template-columns: 1fr 1fr; }
  .map-section-inner { height: 400px; }
  .map-section-overlay { padding: 1.5rem; align-items: flex-end; }
  .map-section-card { max-width: 100%; }
}
@media (max-width: 480px) {
  .contact-cards { grid-template-columns: 1fr; }
  .map-section-inner { height: 340px; }
  .cenik-img-wrap { margin: 0 -1.2rem; }
}
