/* ============================================================
   Erotic Massage Salon Budapest — Main Stylesheet
   Mobile-first | Cross-browser friendly
   Author: PierisMassage.com
   ============================================================ */

/* ── CSS CUSTOM PROPERTIES ── */
:root {
  --deep:    #260B39;
  --deep2:   #180720;
  --deep3:   #320f4a;
  --deep4:   #3e1460;
  --rose:    #E8799A;
  --rose2:   #d4607f;
  --rose3:   #f0a3ba;
  --rose4:   #fce4ed;
  --gold:    #c9956e;
  --gold2:   #e8c49a;
  --text:    #f5e6ef;
  --muted:   rgba(245,230,239,0.55);
  --faint:   rgba(245,230,239,0.3);
  --border:  rgba(232,121,154,0.18);
  --border2: rgba(232,121,154,0.35);
}

/* ── RESET & BASE ── */
*, *::before, *::after {
  margin: 0; padding: 0;
  -webkit-box-sizing: border-box; box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;
}
body {
  font-family: 'Jost', sans-serif;
  background: var(--deep2);
  color: var(--text);
  overflow-x: hidden;
  cursor: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media (hover: none) and (pointer: coarse) {
  body { cursor: auto; }
  .cursor, .cursor-ring { display: none; }
}
img, video { max-width: 100%; height: auto; display: block; }
button { -webkit-appearance: none; -moz-appearance: none; appearance: none; font-family: inherit; cursor: pointer; }
a { text-decoration: none; }
ul { list-style: none; }

/* ── ANIMATIONS ── */
@-webkit-keyframes fadeUp {
  from { opacity: 0; -webkit-transform: translateY(22px); transform: translateY(22px); }
  to   { opacity: 1; -webkit-transform: translateY(0);    transform: translateY(0); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
@-webkit-keyframes pulse-dot {
  0%,100% { -webkit-box-shadow: 0 0 6px rgba(232,121,154,.7); box-shadow: 0 0 6px rgba(232,121,154,.7); }
  50%     { -webkit-box-shadow: 0 0 16px rgba(232,121,154,1), 0 0 28px rgba(232,121,154,.4); box-shadow: 0 0 16px rgba(232,121,154,1), 0 0 28px rgba(232,121,154,.4); }
}
@keyframes pulse-dot {
  0%,100% { box-shadow: 0 0 6px rgba(232,121,154,.7); }
  50%     { box-shadow: 0 0 16px rgba(232,121,154,1), 0 0 28px rgba(232,121,154,.4); }
}
.anim { -webkit-animation: fadeUp .7s ease both; animation: fadeUp .7s ease both; }

/* ── CUSTOM CURSOR ── */
.cursor {
  position: fixed; width: 10px; height: 10px;
  background: var(--rose); border-radius: 50%;
  pointer-events: none; z-index: 9999;
  -webkit-transform: translate(-50%,-50%); -ms-transform: translate(-50%,-50%); transform: translate(-50%,-50%);
  -webkit-transition: -webkit-transform .1s; transition: transform .1s;
  mix-blend-mode: screen;
}
.cursor-ring {
  position: fixed; width: 36px; height: 36px;
  border: 1px solid rgba(232,121,154,.5); border-radius: 50%;
  pointer-events: none; z-index: 9998;
  -webkit-transform: translate(-50%,-50%); -ms-transform: translate(-50%,-50%); transform: translate(-50%,-50%);
  -webkit-transition: all .15s ease; transition: all .15s ease;
}

/* ── NOISE OVERLAY ── */
body::after {
  content: ''; position: fixed;
  top: 0; right: 0; bottom: 0; left: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  pointer-events: none; z-index: 500; opacity: 0.6;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: rgba(24,7,32,.92);
  -webkit-backdrop-filter: blur(20px); backdrop-filter: blur(20px);
  display: -webkit-flex; display: -ms-flexbox; display: flex;
  -webkit-align-items: center; -ms-flex-align: center; align-items: center;
  -webkit-justify-content: space-between; -ms-flex-pack: justify; justify-content: space-between;
  padding: 0 1.2rem; height: 58px;
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem; font-weight: 400; color: var(--text); letter-spacing: .06em;
}
.nav-logo em { font-style: italic; color: var(--rose); }
.nav-links { display: none; gap: 2.2rem; }
.nav-links a {
  color: var(--muted); font-size: .7rem; font-weight: 300;
  letter-spacing: .14em; text-transform: uppercase;
  -webkit-transition: color .2s; transition: color .2s; position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -3px; left: 0; right: 0;
  height: 1px; background: var(--rose);
  -webkit-transform: scaleX(0); -ms-transform: scaleX(0); transform: scaleX(0);
  -webkit-transition: -webkit-transform .25s; transition: transform .25s;
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { -webkit-transform: scaleX(1); -ms-transform: scaleX(1); transform: scaleX(1); }
.nav-right {
  display: -webkit-flex; display: -ms-flexbox; display: flex;
  -webkit-align-items: center; -ms-flex-align: center; align-items: center; gap: 1rem;
}
.nav-phone { font-family: 'Tenor Sans',sans-serif; color: var(--rose3); font-size: .78rem; letter-spacing: .04em; display: none; }
.btn-rose {
  background: -webkit-linear-gradient(135deg,var(--rose),var(--rose2));
  background: linear-gradient(135deg,var(--rose),var(--rose2));
  color: #fff; border: none; padding: .44rem 1.2rem;
  font-size: .66rem; letter-spacing: .14em; text-transform: uppercase; border-radius: 1px;
  -webkit-transition: all .25s; transition: all .25s; white-space: nowrap;
}
.btn-rose:hover {
  -webkit-box-shadow: 0 6px 24px rgba(232,121,154,.45); box-shadow: 0 6px 24px rgba(232,121,154,.45);
  -webkit-transform: translateY(-1px); -ms-transform: translateY(-1px); transform: translateY(-1px);
}

/* ============================================================
   HERO — mobile first (flex column)
   ============================================================ */
.hero {
  min-height: 100vh;
  display: -webkit-flex; display: -ms-flexbox; display: flex;
  -webkit-flex-direction: column; -ms-flex-direction: column; flex-direction: column;
  -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center;
  padding: 6rem 1.4rem 3rem; position: relative; overflow: hidden; gap: 2.5rem;
  background: -webkit-linear-gradient(150deg,var(--deep2) 0%,var(--deep) 50%,#2e0d45 100%);
  background: linear-gradient(150deg,var(--deep2) 0%,var(--deep) 50%,#2e0d45 100%);
}
.hero-bg-orb { position: absolute; border-radius: 50%; -webkit-filter: blur(80px); filter: blur(80px); pointer-events: none; }
.hero-bg-orb.o1 {
  width: 300px; height: 300px; right: -80px; top: 10%;
  background: -webkit-radial-gradient(circle,rgba(232,121,154,.14),transparent 70%);
  background: radial-gradient(circle,rgba(232,121,154,.14),transparent 70%);
}
.hero-bg-orb.o2 {
  width: 250px; height: 250px; left: -50px; bottom: 5%;
  background: -webkit-radial-gradient(circle,rgba(201,149,110,.08),transparent 70%);
  background: radial-gradient(circle,rgba(201,149,110,.08),transparent 70%);
}
.hero-lines {
  position: absolute; top: 0; right: 0; bottom: 0; left: 0;
  background-image: -webkit-linear-gradient(rgba(232,121,154,.04) 1px,transparent 1px),-webkit-linear-gradient(90deg,rgba(232,121,154,.04) 1px,transparent 1px);
  background-image: linear-gradient(rgba(232,121,154,.04) 1px,transparent 1px),linear-gradient(90deg,rgba(232,121,154,.04) 1px,transparent 1px);
  background-size: 60px 60px;
}
.hero-left { position: relative; z-index: 2; }
.hero-eyebrow {
  display: -webkit-inline-flex; display: -ms-inline-flexbox; display: inline-flex;
  -webkit-align-items: center; -ms-flex-align: center; align-items: center; gap: .6rem;
  font-size: .6rem; letter-spacing: .28em; text-transform: uppercase;
  color: var(--rose); font-weight: 400; margin-bottom: 1.2rem;
}
.hero-eyebrow::before { content: ''; width: 24px; height: 1px; background: var(--rose); }
.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem,8vw,5.8rem);
  font-weight: 300; color: var(--text); line-height: 1.02; letter-spacing: -.01em; margin-bottom: 1.2rem;
}
.hero h1 em { font-style: italic; color: var(--rose3); display: block; font-weight: 300; }
.hero-desc { font-size: .86rem; color: var(--muted); font-weight: 300; line-height: 1.85; max-width: 430px; margin-bottom: 2rem; }
.hero-ctas {
  display: -webkit-flex; display: -ms-flexbox; display: flex;
  gap: .9rem; -webkit-flex-wrap: wrap; -ms-flex-wrap: wrap; flex-wrap: wrap; margin-bottom: 2.2rem;
}
.btn-primary {
  background: -webkit-linear-gradient(135deg,var(--rose),var(--rose2));
  background: linear-gradient(135deg,var(--rose),var(--rose2));
  color: #fff; border: none; padding: .85rem 2rem;
  font-size: .7rem; letter-spacing: .16em; text-transform: uppercase; border-radius: 1px;
  -webkit-transition: all .3s; transition: all .3s; -webkit-tap-highlight-color: transparent;
}
.btn-primary:hover, .btn-primary:focus {
  -webkit-transform: translateY(-2px); -ms-transform: translateY(-2px); transform: translateY(-2px);
  -webkit-box-shadow: 0 12px 40px rgba(232,121,154,.5); box-shadow: 0 12px 40px rgba(232,121,154,.5);
}
.btn-outline {
  background: transparent; color: var(--text);
  border: 1px solid rgba(245,230,239,.25); padding: .85rem 2rem;
  font-size: .7rem; letter-spacing: .16em; text-transform: uppercase; border-radius: 1px;
  -webkit-transition: all .3s; transition: all .3s; -webkit-tap-highlight-color: transparent;
}
.btn-outline:hover, .btn-outline:focus { border-color: var(--rose3); color: var(--rose3); }
.hero-trust {
  display: -webkit-flex; display: -ms-flexbox; display: flex;
  gap: 1.8rem; -webkit-flex-wrap: wrap; -ms-flex-wrap: wrap; flex-wrap: wrap;
}
.trust-item { display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-flex-direction: column; -ms-flex-direction: column; flex-direction: column; }
.trust-num { font-family: 'Cormorant Garamond',serif; font-size: 1.9rem; font-weight: 300; color: var(--rose3); line-height: 1; }
.trust-label { font-size: .63rem; letter-spacing: .12em; color: var(--muted); text-transform: uppercase; font-weight: 300; }

.hero-right {
  position: relative; z-index: 2;
  display: -webkit-flex; display: -ms-flexbox; display: flex;
  -webkit-flex-direction: column; -ms-flex-direction: column; flex-direction: column; gap: 1.2rem;
}

/* Hero video */
.hero-visual {
  border-radius: 4px; overflow: hidden;
  border: 1px solid var(--border2); position: relative;
  -webkit-box-shadow: 0 24px 80px rgba(0,0,0,.6),0 0 0 1px rgba(232,121,154,.1);
  box-shadow: 0 24px 80px rgba(0,0,0,.6),0 0 0 1px rgba(232,121,154,.1);
  background: var(--deep2);
}
/* Aspect ratio: padding-hack for old browsers, @supports override for modern */
.hero-video {
  width: 100%; display: block;
  position: relative; height: 0; padding-bottom: 62.5%; overflow: hidden;
}
@supports (aspect-ratio: 16/10) {
  .hero-video { height: auto; padding-bottom: 0; aspect-ratio: 16/10; overflow: visible; }
}
.hero-video video {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  -o-object-fit: cover; object-fit: cover;
  -o-object-position: center; object-position: center;
  display: block;
}
@supports (aspect-ratio: 16/10) {
  .hero-video video { position: static; height: auto; }
}
.hero-video-overlay {
  position: absolute; top: 0; right: 0; bottom: 0; left: 0;
  background: -webkit-linear-gradient(top,transparent 50%,rgba(24,7,32,.65) 100%);
  background: linear-gradient(to bottom,transparent 50%,rgba(24,7,32,.65) 100%);
  pointer-events: none;
}
.hero-video-badge {
  position: absolute; bottom: .9rem; left: .9rem;
  display: -webkit-flex; display: -ms-flexbox; display: flex;
  -webkit-align-items: center; -ms-flex-align: center; align-items: center; gap: .5rem;
  background: rgba(24,7,32,.72);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  border: 1px solid var(--border); border-radius: 20px;
  padding: .35rem .9rem; pointer-events: none;
}
.hero-video-dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--rose);
  -webkit-box-shadow: 0 0 8px rgba(232,121,154,.9); box-shadow: 0 0 8px rgba(232,121,154,.9);
  -webkit-animation: pulse-dot 1.8s ease-in-out infinite; animation: pulse-dot 1.8s ease-in-out infinite;
  -webkit-flex-shrink: 0; -ms-flex-negative: 0; flex-shrink: 0;
}
.hero-video-label { font-size: .58rem; letter-spacing: .18em; text-transform: uppercase; color: var(--text); font-weight: 400; }
.hero-phone-card {
  background: rgba(50,15,74,.6); border: 1px solid var(--border2); border-radius: 3px;
  padding: 1.5rem 1.8rem;
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
}
.hero-phone-label { font-size: .6rem; letter-spacing: .25em; text-transform: uppercase; color: var(--rose); font-weight: 400; margin-bottom: .5rem; }
.hero-phone-number { font-family: 'Cormorant Garamond',serif; font-size: 1.7rem; font-weight: 400; color: var(--rose3); letter-spacing: .02em; margin-bottom: .3rem; }
.hero-phone-sub { font-size: .7rem; color: var(--muted); font-weight: 300; letter-spacing: .08em; }
.hero-try-card {
  background: -webkit-linear-gradient(135deg,rgba(232,121,154,.08),rgba(201,149,110,.05));
  background: linear-gradient(135deg,rgba(232,121,154,.08),rgba(201,149,110,.05));
  border: 1px solid var(--border); border-radius: 3px; padding: 1.4rem 1.8rem;
}
.hero-try-tag { font-size: .6rem; letter-spacing: .25em; text-transform: uppercase; color: var(--rose); font-weight: 400; margin-bottom: .4rem; }
.hero-try-title { font-family: 'Cormorant Garamond',serif; font-size: 1.1rem; color: var(--text); font-weight: 300; }
.hero-try-title strong { color: var(--rose3); font-weight: 600; }

/* ============================================================
   ABOUT BAR — stacked mobile
   ============================================================ */
.about-bar { background: var(--deep3); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.bar-div { display: none; }
.bar-item { padding: 1.8rem 1.4rem; border-bottom: 1px solid var(--border); -webkit-transition: background .3s; transition: background .3s; }
.bar-item:last-child { border-bottom: none; }
.bar-item:hover { background: rgba(232,121,154,.05); }
.bar-label {
  font-size: .6rem; letter-spacing: .28em; text-transform: uppercase; color: var(--rose);
  font-weight: 400; margin-bottom: .5rem;
  display: -webkit-flex; display: -ms-flexbox; display: flex;
  -webkit-align-items: center; -ms-flex-align: center; align-items: center; gap: .5rem;
}
.bar-label::before { content: ''; width: 16px; height: 1px; background: var(--rose); }
.bar-title { font-family: 'Cormorant Garamond',serif; font-size: 1.1rem; color: var(--text); font-weight: 400; margin-bottom: .4rem; }
.bar-text { font-size: .78rem; color: var(--muted); font-weight: 300; line-height: 1.75; }

/* ============================================================
   SECTION COMMONS
   ============================================================ */
.sec { padding: 4rem 1.4rem; }
.sec-inner { max-width: 1200px; margin: 0 auto; }
.sec-tag {
  font-size: .6rem; letter-spacing: .3em; text-transform: uppercase;
  color: var(--rose); font-weight: 400; margin-bottom: .8rem;
  display: -webkit-flex; display: -ms-flexbox; display: flex;
  -webkit-align-items: center; -ms-flex-align: center; align-items: center; gap: .6rem;
}
.sec-tag::before { content: ''; width: 20px; height: 1px; background: var(--rose); }
h2.sec-title {
  font-family: 'Cormorant Garamond',serif; font-size: clamp(1.9rem,5vw,3.2rem);
  font-weight: 300; color: var(--text); line-height: 1.12; margin-bottom: 1rem;
}
h2.sec-title em { font-style: italic; color: var(--rose3); }
.body-text { font-size: .85rem; color: var(--muted); font-weight: 300; line-height: 1.9; margin-bottom: 1rem; }
.div-gem {
  display: -webkit-flex; display: -ms-flexbox; display: flex;
  -webkit-align-items: center; -ms-flex-align: center; align-items: center;
  -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center;
  gap: 1.2rem; margin: 0 auto 3.5rem; max-width: 280px;
}
.div-line { -webkit-flex: 1; -ms-flex: 1; flex: 1; height: 1px; background: var(--border); }
.div-diamond { width: 7px; height: 7px; background: var(--rose); -webkit-transform: rotate(45deg); -ms-transform: rotate(45deg); transform: rotate(45deg); -webkit-flex-shrink: 0; -ms-flex-negative: 0; flex-shrink: 0; }

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-grid { display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-flex-direction: column; -ms-flex-direction: column; flex-direction: column; gap: 2.5rem; }
.about-visual-wrap { position: relative; }
.about-badge {
  position: absolute; bottom: -1.2rem; left: -0.8rem;
  background: var(--deep3); border: 1px solid var(--border2); border-radius: 3px; padding: .9rem 1.3rem; z-index: 2;
}
.badge-num { font-family: 'Cormorant Garamond',serif; font-size: 2.2rem; color: var(--rose3); line-height: 1; font-weight: 300; }
.badge-label { font-size: .62rem; color: var(--muted); letter-spacing: .1em; font-weight: 300; }

/* ============================================================
   FEATURES
   ============================================================ */
.feat-grid {
  display: -webkit-flex; display: -ms-flexbox; display: flex;
  -webkit-flex-wrap: wrap; -ms-flex-wrap: wrap; flex-wrap: wrap; gap: 1rem;
}
.feat-card {
  -webkit-flex: 1 1 calc(50% - .5rem); -ms-flex: 1 1 calc(50% - .5rem); flex: 1 1 calc(50% - .5rem);
  min-width: 140px; background: var(--deep3); border: 1px solid var(--border); border-radius: 3px;
  padding: 1.6rem 1.2rem; text-align: center;
  -webkit-transition: all .3s; transition: all .3s; position: relative; overflow: hidden;
}
.feat-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: -webkit-linear-gradient(90deg,transparent,var(--rose),transparent);
  background: linear-gradient(90deg,transparent,var(--rose),transparent);
  -webkit-transform: translateX(-100%); -ms-transform: translateX(-100%); transform: translateX(-100%);
  -webkit-transition: -webkit-transform .4s; transition: transform .4s;
}
.feat-card:hover { -webkit-transform: translateY(-4px); -ms-transform: translateY(-4px); transform: translateY(-4px); border-color: var(--border2); -webkit-box-shadow: 0 20px 60px rgba(0,0,0,.4); box-shadow: 0 20px 60px rgba(0,0,0,.4); }
.feat-card:hover::before { -webkit-transform: translateX(0); -ms-transform: translateX(0); transform: translateX(0); }
.feat-icon-wrap {
  width: 50px; height: 50px; border-radius: 50%; margin: 0 auto 1.1rem;
  background: rgba(232,121,154,.08); border: 1px solid rgba(232,121,154,.2);
  display: -webkit-flex; display: -ms-flexbox; display: flex;
  -webkit-align-items: center; -ms-flex-align: center; align-items: center;
  -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; font-size: 1.3rem;
}
.feat-title { font-family: 'Cormorant Garamond',serif; font-size: .95rem; font-weight: 600; color: var(--text); margin-bottom: .5rem; }
.feat-text { font-size: .72rem; color: var(--muted); line-height: 1.7; font-weight: 300; }

/* ============================================================
   MASSEUSE CARDS
   ============================================================ */
.masseuse-sec { background: var(--deep2); padding: 4rem 1.4rem 3rem; }
.masseuse-head { text-align: center; margin-bottom: 1rem; }
.masseuse-head .sec-tag { -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; }
.masseuse-head .sec-tag::before { display: none; }
.masseuse-desc { font-size: .84rem; color: var(--muted); font-weight: 300; max-width: 620px; margin: 0 auto 2.5rem; text-align: center; line-height: 1.9; }
.masseuse-grid {
  display: -webkit-flex; display: -ms-flexbox; display: flex;
  -webkit-flex-wrap: wrap; -ms-flex-wrap: wrap; flex-wrap: wrap;
  gap: 1.2rem; max-width: 1200px; margin: 0 auto;
}
.masseuse-card {
  -webkit-flex: 1 1 calc(50% - .6rem); -ms-flex: 1 1 calc(50% - .6rem); flex: 1 1 calc(50% - .6rem);
  min-width: 150px; background: var(--deep3); border: 1px solid var(--border);
  border-radius: 4px; overflow: hidden;
  -webkit-transition: all .35s; transition: all .35s; position: relative;
}
.masseuse-card:hover { -webkit-transform: translateY(-5px); -ms-transform: translateY(-5px); transform: translateY(-5px); border-color: var(--border2); -webkit-box-shadow: 0 24px 60px rgba(0,0,0,.5); box-shadow: 0 24px 60px rgba(0,0,0,.5); }
.masseuse-card:hover .masseuse-img-inner { -webkit-transform: scale(1.05); -ms-transform: scale(1.05); transform: scale(1.05); }
.masseuse-img {
  height: 240px; overflow: hidden; position: relative;
  background: -webkit-linear-gradient(145deg,var(--deep3),var(--deep2));
  background: linear-gradient(145deg,var(--deep3),var(--deep2));
}
.masseuse-img img.masseuse-img-inner,
.masseuse-img-inner {
  width: 100%; height: 100%;
  -webkit-transition: -webkit-transform .5s ease; transition: transform .5s ease;
  display: block; -o-object-fit: cover; object-fit: cover; -o-object-position: center top; object-position: center top;
}
.masseuse-img-overlay {
  position: absolute; top: 0; right: 0; bottom: 0; left: 0;
  background: -webkit-linear-gradient(bottom,rgba(38,11,57,.95) 0%,rgba(38,11,57,.3) 45%,transparent 70%);
  background: linear-gradient(to top,rgba(38,11,57,.95) 0%,rgba(38,11,57,.3) 45%,transparent 70%);
}
.masseuse-avail { position: absolute; top: .8rem; right: .8rem; width: 9px; height: 9px; border-radius: 50%; background: #4ade80; -webkit-box-shadow: 0 0 8px rgba(74,222,128,.7); box-shadow: 0 0 8px rgba(74,222,128,.7); }
.masseuse-body { padding: 1.1rem 1.2rem 1.3rem; }
.masseuse-name {
  font-family: 'Cormorant Garamond',serif; font-size: 1.15rem; font-weight: 600;
  color: var(--text); letter-spacing: .06em; text-transform: uppercase;
  margin-bottom: .9rem; text-align: center;
}
.masseuse-name::after { content: ''; display: block; width: 28px; height: 1px; background: var(--rose); margin: .4rem auto 0; opacity: .7; }
.masseuse-tags {
  display: -webkit-flex; display: -ms-flexbox; display: flex;
  -webkit-flex-wrap: wrap; -ms-flex-wrap: wrap; flex-wrap: wrap;
  gap: .35rem; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center;
}
.m-tag {
  font-size: .6rem; font-weight: 400; letter-spacing: .08em; padding: .28rem .7rem;
  border-radius: 20px; border: 1px solid rgba(232,121,154,.3);
  color: var(--rose3); background: rgba(232,121,154,.07);
  -webkit-transition: all .2s; transition: all .2s; white-space: nowrap;
}
.masseuse-card:hover .m-tag { border-color: rgba(232,121,154,.5); background: rgba(232,121,154,.12); }
.m-tag.gold { border-color: rgba(201,149,110,.35); color: var(--gold2); background: rgba(201,149,110,.08); }
.masseuse-card:hover .m-tag.gold { border-color: rgba(201,149,110,.6); background: rgba(201,149,110,.14); }
.masseuse-foot { text-align: center; padding: 2.2rem 0 0; max-width: 1200px; margin: 0 auto; }

/* ============================================================
   PRICING
   ============================================================ */
.pricing-header { text-align: center; margin-bottom: .6rem; }
.pricing-subtext { font-size: .8rem; color: var(--muted); text-align: center; max-width: 700px; margin: 0 auto 2.5rem; line-height: 1.8; font-weight: 300; }
.cash-note {
  font-size: .7rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold);
  text-align: center; margin-bottom: 2.5rem; font-weight: 400;
  display: -webkit-flex; display: -ms-flexbox; display: flex;
  -webkit-align-items: center; -ms-flex-align: center; align-items: center;
  -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; gap: .7rem;
}
.cash-note::before,.cash-note::after { content: ''; width: 30px; height: 1px; background: var(--gold); opacity: .5; }
.pkg-grid {
  display: -webkit-flex; display: -ms-flexbox; display: flex;
  -webkit-flex-direction: column; -ms-flex-direction: column; flex-direction: column;
  gap: 1.5rem; max-width: 1100px; margin: 0 auto;
}
.pkg-card {
  background: rgba(50,15,74,.45); border: 1px solid var(--border); border-radius: 3px;
  overflow: hidden; -webkit-transition: all .35s; transition: all .35s; position: relative;
}
.pkg-card:hover { border-color: var(--border2); -webkit-box-shadow: 0 20px 60px rgba(0,0,0,.45); box-shadow: 0 20px 60px rgba(0,0,0,.45); -webkit-transform: translateY(-3px); -ms-transform: translateY(-3px); transform: translateY(-3px); }
.pkg-card.premium { background: rgba(62,20,96,.5); border-color: rgba(201,149,110,.35); }
.pkg-card.premium:hover { border-color: var(--gold); -webkit-box-shadow: 0 20px 60px rgba(201,149,110,.2); box-shadow: 0 20px 60px rgba(201,149,110,.2); }
.pkg-head {
  padding: 1.3rem 1.5rem 1rem; border-bottom: 1px solid var(--border);
  display: -webkit-flex; display: -ms-flexbox; display: flex;
  -webkit-align-items: center; -ms-flex-align: center; align-items: center;
  -webkit-justify-content: space-between; -ms-flex-pack: justify; justify-content: space-between;
  gap: 1rem; -webkit-flex-wrap: wrap; -ms-flex-wrap: wrap; flex-wrap: wrap;
}
.pkg-card.premium .pkg-head { border-color: rgba(201,149,110,.2); }
.pkg-name { font-family: 'Cormorant Garamond',serif; font-size: 1.05rem; font-weight: 600; color: var(--text); letter-spacing: .04em; text-transform: uppercase; }
.pkg-card.premium .pkg-name { color: var(--gold2); }
.pkg-type { font-size: .6rem; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); font-weight: 300; margin-top: .15rem; }
.pkg-badge {
  font-size: .58rem; letter-spacing: .1em; text-transform: uppercase; padding: .28rem .75rem;
  border-radius: 2px; font-weight: 500; white-space: nowrap;
  background: -webkit-linear-gradient(135deg,var(--rose),var(--rose2));
  background: linear-gradient(135deg,var(--rose),var(--rose2)); color: #fff;
}
.pkg-card.premium .pkg-badge {
  background: -webkit-linear-gradient(135deg,var(--gold),#b07840);
  background: linear-gradient(135deg,var(--gold),#b07840);
}
.pkg-body { padding: 1.3rem 1.5rem; }
.pkg-includes-label { font-size: .6rem; letter-spacing: .2em; text-transform: uppercase; color: var(--rose); font-weight: 400; margin-bottom: .8rem; }
.pkg-card.premium .pkg-includes-label { color: var(--gold); }
.pkg-includes { display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-flex-wrap: wrap; -ms-flex-wrap: wrap; flex-wrap: wrap; gap: .3rem .8rem; margin-bottom: 1.4rem; }
.pkg-inc-item {
  font-size: .74rem; color: var(--muted); font-weight: 300;
  display: -webkit-flex; display: -ms-flexbox; display: flex;
  -webkit-align-items: flex-start; -ms-flex-align: start; align-items: flex-start;
  gap: .4rem; line-height: 1.4;
}
.pkg-inc-item::before { content: '·'; color: var(--rose); font-size: .9rem; -webkit-flex-shrink: 0; -ms-flex-negative: 0; flex-shrink: 0; margin-top: -.05rem; }
.pkg-card.premium .pkg-inc-item::before { color: var(--gold); }
.pkg-table { width: 100%; border-collapse: collapse; }
.pkg-table thead tr { border-bottom: 1px solid var(--border); }
.pkg-card.premium .pkg-table thead tr { border-color: rgba(201,149,110,.2); }
.pkg-table th { font-size: .6rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); font-weight: 400; padding: .5rem .4rem; text-align: left; }
.pkg-table th:not(:first-child) { text-align: center; }
.pkg-table tbody tr { border-bottom: 1px solid rgba(232,121,154,.07); -webkit-transition: background .2s; transition: background .2s; }
.pkg-table tbody tr:hover { background: rgba(232,121,154,.04); }
.pkg-table tbody tr:last-child { border-bottom: none; }
.pkg-table td { padding: .55rem .4rem; font-size: .78rem; color: var(--muted); font-weight: 300; }
.pkg-table td:first-child { color: var(--text); font-weight: 400; }
.pkg-table td:not(:first-child) { text-align: center; font-family: 'Cormorant Garamond',serif; font-size: .92rem; color: var(--rose3); font-weight: 400; }
.pkg-card.premium .pkg-table td:not(:first-child) { color: var(--gold2); }
.pkg-upgrade { margin-top: 1.2rem; padding: 1rem 1.2rem; background: rgba(232,121,154,.07); border: 1px solid rgba(232,121,154,.15); border-radius: 2px; font-size: .74rem; color: var(--muted); line-height: 1.6; }
.pkg-card.premium .pkg-upgrade { background: rgba(201,149,110,.07); border-color: rgba(201,149,110,.18); }
.pkg-upgrade strong { color: var(--rose3); font-weight: 500; }
.pkg-card.premium .pkg-upgrade strong { color: var(--gold2); }
.pkg-extras { display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-flex-wrap: wrap; -ms-flex-wrap: wrap; flex-wrap: wrap; gap: .3rem .8rem; }
.extra-note { font-size: .72rem; color: var(--rose3); font-weight: 300; line-height: 1.6; margin-bottom: 1rem; font-style: italic; }

/* ============================================================
   CONTENT COLS
   ============================================================ */
.content-cols { display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-flex-direction: column; -ms-flex-direction: column; flex-direction: column; gap: 2rem; }
.content-subtitle { font-family: 'Cormorant Garamond',serif; font-size: 1.5rem; font-weight: 300; color: var(--text); margin-bottom: .8rem; line-height: 1.2; }
.content-subtitle em { font-style: italic; color: var(--rose3); }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { max-width: 860px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); padding: 1.2rem 0; cursor: pointer; }
.faq-q {
  display: -webkit-flex; display: -ms-flexbox; display: flex;
  -webkit-justify-content: space-between; -ms-flex-pack: justify; justify-content: space-between;
  -webkit-align-items: center; -ms-flex-align: center; align-items: center;
  gap: 1rem; font-size: .84rem; font-weight: 400; color: var(--text); line-height: 1.5;
  -webkit-transition: color .2s; transition: color .2s;
}
.faq-item:hover .faq-q { color: var(--rose3); }
.faq-q-icon {
  width: 24px; height: 24px; border: 1px solid var(--border); border-radius: 50%;
  display: -webkit-flex; display: -ms-flexbox; display: flex;
  -webkit-align-items: center; -ms-flex-align: center; align-items: center;
  -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center;
  font-size: .9rem; color: var(--rose); -webkit-flex-shrink: 0; -ms-flex-negative: 0; flex-shrink: 0;
  -webkit-transition: all .25s; transition: all .25s;
}
.faq-a { font-size: .8rem; color: var(--muted); line-height: 1.85; font-weight: 300; max-height: 0; overflow: hidden; -webkit-transition: max-height .35s ease,padding .3s; transition: max-height .35s ease,padding .3s; }
.faq-item.open .faq-a { max-height: 200px; padding-top: .9rem; }
.faq-item.open .faq-q-icon { background: var(--rose); border-color: var(--rose); color: #fff; }

/* ============================================================
   LOCATIONS
   ============================================================ */
.loc-grid { display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-flex-direction: column; -ms-flex-direction: column; flex-direction: column; gap: 2.5rem; }
.loc-list { list-style: none; margin-top: 1.5rem; }
.loc-list li {
  display: -webkit-flex; display: -ms-flexbox; display: flex;
  -webkit-align-items: center; -ms-flex-align: center; align-items: center;
  gap: .8rem; padding: .7rem 0; border-bottom: 1px solid var(--border);
  font-size: .83rem; color: var(--muted); font-weight: 300;
  -webkit-transition: color .2s; transition: color .2s;
}
.loc-list li:hover { color: var(--text); }
.loc-list li::before { content: '◈'; color: var(--rose); font-size: .65rem; -webkit-flex-shrink: 0; -ms-flex-negative: 0; flex-shrink: 0; }
.contact-box { background: var(--deep3); border: 1px solid var(--border); border-radius: 3px; padding: 2rem 1.8rem; position: relative; overflow: hidden; width: 100%; }
.contact-box::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: -webkit-linear-gradient(90deg,var(--rose),var(--gold));
  background: linear-gradient(90deg,var(--rose),var(--gold));
}
.contact-box-title { font-family: 'Cormorant Garamond',serif; font-size: 1.7rem; color: var(--text); font-weight: 300; margin-bottom: .4rem; }
.contact-box-sub { font-size: .78rem; color: var(--muted); font-weight: 300; margin-bottom: 1.6rem; line-height: 1.7; }
.contact-highlight { font-family: 'Cormorant Garamond',serif; font-size: 1rem; color: var(--rose3); font-style: italic; margin-bottom: 1.5rem; line-height: 1.5; }
.contact-phone { font-family: 'Cormorant Garamond',serif; font-size: 2rem; color: var(--rose3); letter-spacing: .02em; margin-bottom: .3rem; }
.contact-phone-label { font-size: .68rem; color: var(--rose); letter-spacing: .1em; text-transform: uppercase; font-weight: 400; }

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-sec {
  background:
    -webkit-linear-gradient(135deg,rgba(24,7,32,.88),rgba(50,15,74,.82),rgba(24,7,32,.88)),
    url('/images/experience-budapest.svg') center center / cover no-repeat;
  background:
    linear-gradient(135deg,rgba(24,7,32,.88),rgba(50,15,74,.82),rgba(24,7,32,.88)),
    url('/images/experience-budapest.svg') center center / cover no-repeat;
  padding: 5rem 1.4rem; text-align: center; position: relative; overflow: hidden;
  border-top: 1px solid var(--border);
}
.cta-sec::before {
  content: ''; position: absolute; top: 0; right: 0; bottom: 0; left: 0;
  background: -webkit-radial-gradient(ellipse 70% 70% at 50% 50%,rgba(232,121,154,.12),transparent 65%);
  background: radial-gradient(ellipse 70% 70% at 50% 50%,rgba(232,121,154,.12),transparent 65%);
}
.cta-sec .sec-title { position: relative; z-index: 2; font-size: clamp(2rem,5vw,3.8rem); }
.cta-sec p { color: var(--muted); font-size: .9rem; font-weight: 300; max-width: 420px; margin: .8rem auto 2.2rem; line-height: 1.8; position: relative; z-index: 2; }
.btn-cta-lg {
  background: -webkit-linear-gradient(135deg,var(--rose),var(--rose2));
  background: linear-gradient(135deg,var(--rose),var(--rose2));
  color: #fff; border: none; padding: 1rem 2.5rem;
  font-size: .74rem; letter-spacing: .18em; text-transform: uppercase; border-radius: 1px;
  -webkit-transition: all .3s; transition: all .3s; position: relative; z-index: 2;
}
.btn-cta-lg:hover { -webkit-transform: translateY(-2px); -ms-transform: translateY(-2px); transform: translateY(-2px); -webkit-box-shadow: 0 14px 45px rgba(232,121,154,.55); box-shadow: 0 14px 45px rgba(232,121,154,.55); }

/* ============================================================
   FOOTER
   ============================================================ */
footer { background: var(--deep2); border-top: 1px solid var(--border); padding: 3.5rem 1.4rem 1.8rem; }
.foot-grid { display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-flex-direction: column; -ms-flex-direction: column; flex-direction: column; gap: 2rem; max-width: 1200px; margin: 0 auto 2rem; }
.foot-brand { font-family: 'Cormorant Garamond',serif; font-size: 1.35rem; color: var(--text); font-weight: 400; margin-bottom: .7rem; }
.foot-brand em { font-style: italic; color: var(--rose); }
.foot-desc { font-size: .78rem; color: var(--muted); font-weight: 300; line-height: 1.85; margin-bottom: 1.2rem; }
.foot-socials { display: -webkit-flex; display: -ms-flexbox; display: flex; gap: .7rem; margin-bottom: 1.4rem; }
.soc-btn { width: 36px; height: 36px; border: 1px solid var(--border); border-radius: 50%; display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-align-items: center; -ms-flex-align: center; align-items: center; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; color: var(--muted); font-size: .8rem; -webkit-transition: all .25s; transition: all .25s; }
.soc-btn:hover { border-color: var(--rose); color: var(--rose); }
.foot-phone { font-family: 'Cormorant Garamond',serif; font-size: 1.45rem; color: var(--rose3); letter-spacing: .02em; }
.foot-phone-lbl { font-size: .65rem; color: var(--rose); letter-spacing: .1em; text-transform: uppercase; }
.foot-col-title { font-size: .6rem; letter-spacing: .22em; text-transform: uppercase; color: var(--rose3); font-weight: 400; margin-bottom: 1.2rem; padding-bottom: .6rem; border-bottom: 1px solid var(--border); }
.foot-links { list-style: none; }
.foot-links li { margin-bottom: .6rem; }
.foot-links a { font-size: .78rem; color: var(--muted); font-weight: 300; -webkit-transition: color .2s; transition: color .2s; display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-align-items: center; -ms-flex-align: center; align-items: center; gap: .4rem; }
.foot-links a:hover { color: var(--rose3); }
.foot-links a::before { content: '›'; color: var(--rose); opacity: 0; -webkit-transition: opacity .2s; transition: opacity .2s; }
.foot-links a:hover::before { opacity: 1; }
.foot-bottom { text-align: center; padding-top: 2rem; border-top: 1px solid var(--border); font-size: .68rem; color: var(--faint); font-weight: 300; letter-spacing: .05em; max-width: 1200px; margin: 0 auto; }

/* ============================================================
   SCROLL TO TOP
   ============================================================ */
.scroll-top {
  position: fixed; bottom: 1.5rem; right: 1.5rem;
  width: 44px; height: 44px;
  background: -webkit-linear-gradient(135deg,var(--rose),var(--rose2));
  background: linear-gradient(135deg,var(--rose),var(--rose2));
  border: none; border-radius: 50%; color: #fff; font-size: 1.1rem;
  display: -webkit-flex; display: -ms-flexbox; display: flex;
  -webkit-align-items: center; -ms-flex-align: center; align-items: center;
  -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center;
  -webkit-box-shadow: 0 4px 20px rgba(232,121,154,.45); box-shadow: 0 4px 20px rgba(232,121,154,.45);
  -webkit-transition: all .25s; transition: all .25s; z-index: 99;
}
.scroll-top:hover { -webkit-transform: translateY(-2px); -ms-transform: translateY(-2px); transform: translateY(-2px); -webkit-box-shadow: 0 8px 30px rgba(232,121,154,.6); box-shadow: 0 8px 30px rgba(232,121,154,.6); }

/* ============================================================
   RESPONSIVE — TABLET  ≥ 600px
   ============================================================ */
@media (min-width: 600px) {
  nav { padding: 0 2rem; }
  .nav-phone { display: block; }
  .hero { padding: 6rem 2.5rem 3rem; }
  .masseuse-card { -webkit-flex: 1 1 calc(50% - .6rem); -ms-flex: 1 1 calc(50% - .6rem); flex: 1 1 calc(50% - .6rem); }
  .feat-card { -webkit-flex: 1 1 calc(50% - .5rem); -ms-flex: 1 1 calc(50% - .5rem); flex: 1 1 calc(50% - .5rem); }
  .foot-grid { -webkit-flex-direction: row; -ms-flex-direction: row; flex-direction: row; -webkit-flex-wrap: wrap; -ms-flex-wrap: wrap; flex-wrap: wrap; }
  .foot-grid > div:first-child { -webkit-flex: 0 0 100%; -ms-flex: 0 0 100%; flex: 0 0 100%; }
  .foot-grid > div:not(:first-child) { -webkit-flex: 1 1 calc(33% - 1rem); -ms-flex: 1 1 calc(33% - 1rem); flex: 1 1 calc(33% - 1rem); }
}

/* ============================================================
   RESPONSIVE — DESKTOP  ≥ 900px
   ============================================================ */
@media (min-width: 900px) {
  nav { padding: 0 3rem; height: 62px; }
  .nav-links { display: -webkit-flex; display: -ms-flexbox; display: flex; }

  /* Hero two-column */
  .hero {
    display: -webkit-grid; display: -ms-grid; display: grid;
    -ms-grid-columns: 1fr 3rem 1fr; grid-template-columns: 1fr 1fr;
    -webkit-align-items: center; -ms-flex-align: center; align-items: center;
    gap: 3rem; padding: 7rem 4rem 4rem;
    -webkit-flex-direction: unset; -ms-flex-direction: unset; flex-direction: unset;
  }
  .hero-right { -webkit-flex-direction: column; -ms-flex-direction: column; flex-direction: column; }
  .hero-bg-orb.o1 { width: 500px; height: 500px; }
  .hero-bg-orb.o2 { width: 350px; height: 350px; }

  /* About bar 3-column */
  .about-bar { display: -webkit-grid; display: -ms-grid; display: grid; -ms-grid-columns: 1fr 1px 1fr 1px 1fr; grid-template-columns: 1fr 1px 1fr 1px 1fr; }
  .bar-div { display: block; }
  .bar-item { padding: 2.2rem 3rem; border-bottom: none; }

  /* Section paddings */
  .sec { padding: 6rem 4rem; }
  .masseuse-sec { padding: 5rem 3rem 4rem; }
  .cta-sec { padding: 7rem 2rem; }
  footer { padding: 5rem 4rem 2rem; }

  /* About 2-column */
  .about-grid {
    display: -webkit-grid; display: -ms-grid; display: grid;
    -ms-grid-columns: 1fr 5rem 1fr; grid-template-columns: 1fr 1fr;
    gap: 5rem; -webkit-flex-direction: unset; -ms-flex-direction: unset; flex-direction: unset;
  }

  /* Features 4-column */
  .feat-grid { -webkit-flex-wrap: nowrap; -ms-flex-wrap: nowrap; flex-wrap: nowrap; }
  .feat-card { -webkit-flex: 1; -ms-flex: 1; flex: 1; }

  /* Masseuse 4-column */
  .masseuse-card { -webkit-flex: 1 1 calc(25% - .9rem); -ms-flex: 1 1 calc(25% - .9rem); flex: 1 1 calc(25% - .9rem); }
  .masseuse-img { height: 260px; }

  /* Pricing 2-column */
  .pkg-grid {
    display: -webkit-grid; display: -ms-grid; display: grid;
    -ms-grid-columns: 1fr 1.5rem 1fr; grid-template-columns: 1fr 1fr; gap: 1.5rem;
  }

  /* Content 2-column */
  .content-cols {
    display: -webkit-grid; display: -ms-grid; display: grid;
    -ms-grid-columns: 1fr 4rem 1fr; grid-template-columns: 1fr 1fr;
    gap: 4rem; -webkit-flex-direction: unset; -ms-flex-direction: unset; flex-direction: unset;
  }

  /* Locations 2-column */
  .loc-grid {
    display: -webkit-grid; display: -ms-grid; display: grid;
    -ms-grid-columns: 1fr 4rem 1fr; grid-template-columns: 1fr 1fr;
    gap: 4rem; -webkit-align-items: start; -ms-flex-align: start; align-items: start;
    -webkit-flex-direction: unset; -ms-flex-direction: unset; flex-direction: unset;
  }

  /* Footer 4-column */
  .foot-grid {
    display: -webkit-grid; display: -ms-grid; display: grid;
    -ms-grid-columns: 2.2fr 3rem 1fr 3rem 1fr 3rem 1fr; grid-template-columns: 2.2fr 1fr 1fr 1fr; gap: 3rem;
  }
  .foot-grid > div:first-child { -webkit-flex: unset; -ms-flex: unset; flex: unset; grid-column: span 1; }
}

/* ============================================================
   PRINT
   ============================================================ */
@media print {
  .cursor,.cursor-ring,.scroll-top,nav,.hero-bg-orb,.hero-lines,body::after { display: none !important; }
  body { background: #fff; color: #000; }
  .sec { padding: 2rem 1rem; }
}