/* Super Masaže — self-contained stylesheet (no external fonts, no CDN).
   Compatible with CSP: default-src 'self'; style-src 'self'. */

:root {
  --ink: #241417;
  --ink-2: #5a4a4c;
  --ink-3: #83716f;
  --paper: #fffaf6;
  --cream: #f7ede4;
  --cream-2: #efe0d3;
  --line: #e4d3c6;

  --wine-900: #2c0d16;
  --wine-800: #3d1220;
  --wine-700: #5a1a2c;
  --wine-600: #7a2338;
  --wine-500: #93293f;
  --wine-300: #c98a99;
  --wine-100: #f3e0e3;

  --gold: #b98a4a;
  --gold-light: #d9b579;

  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 26px;
  --shadow-sm: 0 1px 2px rgba(44, 13, 22, .07), 0 6px 16px rgba(44, 13, 22, .07);
  --shadow-md: 0 2px 6px rgba(44, 13, 22, .1), 0 18px 44px rgba(44, 13, 22, .14);
  --wrap: 1140px;
}

*, *::before, *::after { box-sizing: border-box; }

[hidden] { display: none !important; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img, svg { max-width: 100%; }

h1, h2, h3 {
  margin: 0 0 .6em;
  line-height: 1.15;
  letter-spacing: -0.018em;
  font-weight: 650;
  color: var(--ink);
  text-wrap: balance;
}

h1 { font-size: clamp(2rem, 6vw, 3.35rem); }
h2 { font-size: clamp(1.55rem, 4.2vw, 2.3rem); }
h3 { font-size: 1.12rem; letter-spacing: -0.01em; }

p { margin: 0 0 1rem; color: var(--ink-2); }
p:last-child { margin-bottom: 0; }

a { color: var(--wine-600); }

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 20px;
}

@media (min-width: 700px) {
  .wrap { padding: 0 32px; }
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--wine-800);
  color: #fff;
  padding: .75rem 1.1rem;
  border-radius: 0 0 var(--radius-sm) 0;
  z-index: 100;
}
.skip-link:focus { left: 0; }

:focus-visible {
  outline: 3px solid var(--wine-500);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  min-height: 48px;
  padding: .85rem 1.5rem;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font: inherit;
  font-weight: 650;
  font-size: 1rem;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: background-color .15s ease, transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}

.btn-primary {
  background: var(--wine-600);
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { background: var(--wine-500); }

.btn-accent {
  background: var(--gold);
  color: #2a1c00;
  box-shadow: 0 10px 26px rgba(185, 138, 74, .3);
}
.btn-accent:hover { background: var(--gold-light); }

.btn-ghost {
  background: rgba(255, 255, 255, .06);
  border-color: rgba(255, 255, 255, .34);
  color: #fff;
}
.btn-ghost:hover { background: rgba(255, 255, 255, .14); }

.btn-lg { min-height: 54px; padding: 1rem 1.85rem; font-size: 1.05rem; }
.btn-sm { min-height: 42px; padding: .55rem 1.05rem; font-size: .95rem; }
.btn-block { display: flex; width: 100%; }
.btn:disabled { opacity: .5; cursor: not-allowed; }

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

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 250, 246, .92);
  backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 68px;
  padding-top: .6rem;
  padding-bottom: .6rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  text-decoration: none;
  color: var(--ink);
}
.brand-mark { display: flex; }
.brand-text { display: flex; flex-direction: column; }
.brand-name {
  font-weight: 750;
  font-size: 1.08rem;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.brand-sub {
  display: none;
  font-size: .74rem;
  color: var(--ink-3);
  letter-spacing: .02em;
  line-height: 1.2;
}

@media (min-width: 560px) {
  .brand-sub { display: block; }
}

.site-nav { display: flex; align-items: center; gap: 1.6rem; }
.site-nav .btn { white-space: nowrap; }
.site-nav > a:not(.btn) {
  display: none;
  color: var(--ink-2);
  text-decoration: none;
  font-weight: 600;
  font-size: .96rem;
}
.site-nav > a:not(.btn):hover { color: var(--wine-600); }

@media (min-width: 860px) {
  .site-nav > a:not(.btn) { display: inline; }
}

.site-nav a.nav-phone {
  display: none;
  font-weight: 750;
  color: var(--wine-600);
  white-space: nowrap;
}

@media (min-width: 600px) {
  .site-nav a.nav-phone { display: inline; }
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(90rem 42rem at 78% -10%, rgba(147, 41, 63, .5), transparent 62%),
    radial-gradient(52rem 34rem at 8% 108%, rgba(185, 138, 74, .28), transparent 60%),
    linear-gradient(168deg, var(--wine-700) 0%, var(--wine-900) 74%);
  color: #fff;
  padding: 3.25rem 0 3.5rem;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 120px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, .06));
  pointer-events: none;
}

.hero-inner { position: relative; z-index: 1; }

.hero h1 { color: #fff; margin-bottom: .5em; }

.eyebrow {
  margin: 0 0 1rem;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--gold-light);
}
.eyebrow-dark { color: var(--wine-600); }

.lead {
  font-size: clamp(1.06rem, 2.3vw, 1.2rem);
  color: #e3cdd2;
  max-width: 42ch;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  margin: 1.9rem 0 2.25rem;
}

@media (min-width: 560px) {
  .hero-actions { flex-direction: row; flex-wrap: wrap; }
  .hero-actions .btn { flex: 0 0 auto; }
}

.hero-facts {
  list-style: none;
  margin: 0;
  padding: 1.5rem 0 0;
  border-top: 1px solid rgba(255, 255, 255, .18);
  display: grid;
  gap: 1.1rem;
}

@media (min-width: 620px) {
  .hero-facts { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
}

.hero-facts li {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-areas:
    "check title"
    ".     desc";
  column-gap: .55rem;
  row-gap: .15rem;
}

.hero-facts li::before {
  content: "✓";
  grid-area: check;
  font-size: .95rem;
  font-weight: 700;
  line-height: 1.5;
  color: var(--gold-light);
}

.hero-facts strong {
  grid-area: title;
  font-size: .98rem;
  font-weight: 700;
  color: #fff;
}

.hero-facts span {
  grid-area: desc;
  font-size: .88rem;
  color: #e3cdd2;
  line-height: 1.45;
}

.hero-art { display: none; }

@media (min-width: 960px) {
  .hero { padding: 4.75rem 0 5rem; }
  .hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
    grid-template-areas:
      "copy art"
      "facts facts";
    column-gap: 3.5rem;
    align-items: center;
  }
  .hero-copy { grid-area: copy; }
  .hero-art {
    grid-area: art;
    display: block;
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, .4));
  }
  .art-svg { width: 100%; height: auto; border-radius: var(--radius-lg); }
  .hero-facts { grid-area: facts; margin-top: 1.5rem; }
}

/* ---------- Sections ---------- */

.section { padding: 3.5rem 0; }
main > section[id] { scroll-margin-top: 84px; }

@media (min-width: 760px) {
  .section { padding: 5.5rem 0; }
}

.section-title { max-width: 24ch; }

.section-lead {
  font-size: 1.08rem;
  max-width: 50ch;
  color: #e3cdd2;
  margin-bottom: 2rem;
}
.section-lead-dark { color: var(--ink-2); }

.section-dark {
  background:
    radial-gradient(60rem 34rem at 88% 6%, rgba(147, 41, 63, .38), transparent 62%),
    linear-gradient(180deg, var(--wine-800), var(--wine-900));
  color: #fff;
}
.section-dark h2, .section-dark h3 { color: #fff; }

.section-cream { background: var(--cream); }

/* ---------- Service cards ---------- */

.grid-3 {
  display: grid;
  gap: 1.1rem;
  margin-top: 2.25rem;
}

@media (min-width: 620px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
}

@media (min-width: 960px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
}

.card {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem 1.4rem;
  box-shadow: var(--shadow-sm);
}

.card h3 { margin-bottom: .45em; }
.card p { font-size: .96rem; margin: 0; }

.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  margin-bottom: 1rem;
  border-radius: 14px;
  background: var(--wine-100);
  color: var(--wine-600);
}

.services-note {
  margin-top: 2rem;
  padding: 1.1rem 1.4rem;
  background: var(--cream-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: .95rem;
  color: var(--ink-2);
}
.services-note strong { color: var(--ink); }

/* ---------- Why us / provider ---------- */

.two-col { display: grid; gap: 2.5rem; }

@media (min-width: 900px) {
  .two-col {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
    gap: 4rem;
    align-items: start;
  }
}

.reasons { list-style: none; margin: 0; padding: 0; display: grid; gap: 1.5rem; }
.reasons li {
  padding-left: 1.25rem;
  border-left: 3px solid var(--gold);
  color: #e3cdd2;
  font-size: .99rem;
}
.reasons strong {
  display: block;
  color: #fff;
  font-size: 1.06rem;
  margin-bottom: .25rem;
  letter-spacing: -0.01em;
}

.panel {
  background: rgba(255, 255, 255, .055);
  border: 1px solid rgba(255, 255, 255, .17);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
}

@media (min-width: 760px) {
  .panel { padding: 2.25rem 2rem; }
}

.panel-title { font-size: 1.28rem; margin-bottom: 1.1rem; }

.checklist { list-style: none; margin: 0 0 1.4rem; padding: 0; display: grid; gap: .85rem; }
.checklist li {
  position: relative;
  padding-left: 2rem;
  color: #f0dfe2;
  font-size: .99rem;
  line-height: 1.5;
}
.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .35em;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: inset 0 0 0 6px var(--wine-900);
}

.panel-note {
  font-size: .92rem;
  color: #e3cdd2;
  margin-bottom: 1.5rem;
}

/* ---------- Booking form (demo) ---------- */

.form-layout { display: grid; gap: 1.5rem; margin-top: 2.25rem; }

@media (min-width: 940px) {
  .form-layout {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, .8fr);
    gap: 2.5rem;
    align-items: start;
  }
}

.booking-form {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.25rem;
  box-shadow: var(--shadow-md);
  display: grid;
  gap: 1.1rem;
}

@media (min-width: 620px) {
  .booking-form { padding: 2.25rem 2rem; }
}

.field-grid { display: grid; gap: 1.1rem; }

@media (min-width: 620px) {
  .field-grid { grid-template-columns: 1fr 1fr; }
}

.field { display: grid; gap: .4rem; margin: 0; }

.field label {
  font-size: .9rem;
  font-weight: 650;
  color: var(--ink);
  letter-spacing: -0.005em;
}

.field input[type="text"],
.field input[type="email"],
.field input[type="tel"],
.field input[type="date"],
.field select,
.field textarea {
  width: 100%;
  min-height: 50px;
  padding: .8rem .9rem;
  font: inherit;
  font-size: 1rem;
  color: var(--ink);
  background: #fffdfb;
  border: 1.5px solid var(--cream-2);
  border-radius: var(--radius-sm);
  transition: border-color .15s ease, box-shadow .15s ease, background-color .15s ease;
}

.field textarea { min-height: 100px; resize: vertical; line-height: 1.55; }

.field select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 2.5rem;
  background-image: linear-gradient(45deg, transparent 49%, var(--ink-3) 50%, var(--ink-3) 56%, transparent 57%),
                    linear-gradient(-45deg, transparent 49%, var(--ink-3) 50%, var(--ink-3) 56%, transparent 57%);
  background-size: 11px 11px, 11px 11px;
  background-position: right 1.35rem center, right 0.85rem center;
  background-repeat: no-repeat;
}

.field input::placeholder,
.field textarea::placeholder { color: #a3908d; }

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  background: #fff;
  border-color: var(--wine-500);
  box-shadow: 0 0 0 4px rgba(147, 41, 63, .14);
}

.field input:disabled,
.field select:disabled {
  background: var(--cream-2);
  color: var(--ink-3);
  cursor: not-allowed;
}

.booking-step-note {
  font-size: .85rem;
  color: var(--ink-3);
  margin: -.4rem 0 0;
}

.field-consent {
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: .7rem;
  margin-top: .25rem;
}

.field-consent input[type="checkbox"] {
  width: 22px;
  height: 22px;
  margin: .18rem 0 0;
  accent-color: var(--wine-600);
  flex: 0 0 auto;
}

.field-consent label {
  font-size: .92rem;
  font-weight: 400;
  color: var(--ink-2);
  line-height: 1.5;
}

.form-success {
  padding: 2rem 1.6rem;
  text-align: center;
  background: var(--paper);
  border: 1px solid var(--cream-2);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.form-success:focus { outline: none; }

.form-success:focus-visible {
  outline: 2px solid var(--wine-500);
  outline-offset: 3px;
}

.form-success-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  background: var(--wine-600);
  border-radius: 50%;
}

.form-success h3 { font-size: 1.3rem; margin-bottom: .5em; }
.form-success p { margin: 0 auto; max-width: 36ch; }

.demo-warning {
  margin-top: 1.2rem !important;
  padding-top: 1.1rem;
  border-top: 1px solid var(--cream-2);
  font-size: .85rem;
  color: var(--ink-3);
}

.form-fineprint {
  margin: 0;
  font-size: .84rem;
  color: var(--ink-3);
  text-align: center;
}

/* ---------- Next steps ---------- */

.next-steps {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  box-shadow: var(--shadow-sm);
}

.next-steps h3 { font-size: 1.14rem; margin-bottom: 1.25rem; }

.steps {
  list-style: none;
  counter-reset: step;
  margin: 0 0 1.5rem;
  padding: 0;
  display: grid;
  gap: 1.25rem;
}

.steps li {
  counter-increment: step;
  position: relative;
  padding-left: 2.75rem;
  font-size: .95rem;
  color: var(--ink-2);
  line-height: 1.5;
}

.steps li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: -.1rem;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--wine-700);
  color: #fff;
  font-size: .9rem;
  font-weight: 700;
}

.steps strong {
  display: block;
  color: var(--ink);
  font-size: 1rem;
  margin-bottom: .15rem;
}

.next-steps-address {
  margin: 0;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
  font-size: .93rem;
  color: var(--ink-2);
  line-height: 1.55;
}
.next-steps-address strong { display: block; color: var(--ink); }

/* ---------- O poskytovateľovi ---------- */

.provider-card {
  display: grid;
  gap: 1.5rem;
  margin-top: 2.25rem;
  align-items: center;
}

@media (min-width: 760px) {
  .provider-card { grid-template-columns: minmax(0, .38fr) minmax(0, .62fr); gap: 2.5rem; }
}

.provider-mark { display: flex; justify-content: center; }
.provider-mark svg { width: 100%; max-width: 220px; height: auto; }

.provider-text p { font-size: 1.02rem; }

.credential-list {
  list-style: none;
  margin: 1.2rem 0 0;
  padding: 0;
  display: grid;
  gap: .65rem;
}
.credential-list li {
  padding-left: 1.7rem;
  position: relative;
  font-size: .96rem;
  color: var(--ink-2);
}
.credential-list li::before {
  content: "◆";
  position: absolute;
  left: 0;
  top: .05em;
  color: var(--wine-500);
  font-size: .7rem;
}

/* ---------- Kontakt a mapa ---------- */

.contact-layout {
  display: grid;
  gap: 1.4rem;
  margin-top: 1.8rem;
}

@media (min-width: 900px) {
  .contact-layout {
    grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
    gap: 2rem;
    align-items: start;
  }
}

.contact-card {
  background: var(--paper);
  border: 1px solid var(--cream-2);
  border-radius: var(--radius);
  padding: 1.6rem;
  box-shadow: var(--shadow-sm);
}

.contact-row {
  display: grid;
  gap: .2rem;
  margin: 0 0 1.1rem;
}

.contact-label {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--ink-3);
}

.contact-value {
  font-size: .98rem;
  color: var(--ink-2);
  line-height: 1.55;
}

a.contact-value { text-decoration: none; }
a.contact-value:hover { text-decoration: underline; }

.contact-strong {
  font-weight: 700;
  color: var(--wine-600);
}

.contact-card .btn-ghost {
  margin-top: .4rem;
  color: var(--wine-600);
  background: var(--paper);
  border-color: var(--cream-2);
}

.contact-card .btn-ghost:hover {
  background: var(--cream);
  border-color: var(--wine-300);
}

.contact-map {
  overflow: hidden;
  border: 1px solid var(--cream-2);
  border-radius: var(--radius);
  background: #f1e7de;
  box-shadow: var(--shadow-sm);
}

.contact-map iframe {
  display: block;
  width: 100%;
  height: 320px;
  border: 0;
}

@media (min-width: 900px) {
  .contact-map iframe { height: 100%; min-height: 420px; }
}

/* ---------- Footer ---------- */

.site-footer {
  background: var(--wine-900);
  color: #dcbfc4;
  padding: 2.5rem 0 1.75rem;
  font-size: .93rem;
}

.footer-inner { display: grid; gap: 2rem; }

@media (min-width: 820px) {
  .footer-inner {
    grid-template-columns: 1.6fr 1fr 1fr;
    gap: 2.5rem;
    align-items: start;
  }
}

.footer-heading {
  margin: 0 0 .7rem;
  color: #fff;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.social {
  list-style: none;
  display: flex;
  gap: .6rem;
  margin: 1.1rem 0 0;
  padding: 0;
}

.social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #ecd7da;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .13);
  transition: background-color .15s ease, color .15s ease, border-color .15s ease;
}

.social a:hover {
  color: #fff;
  background: var(--wine-600);
  border-color: var(--wine-500);
}

.social a:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 2px;
}

.contact-link {
  display: block;
  padding: .15rem 0;
  color: var(--wine-600);
  text-decoration: none;
  font-weight: 650;
}

.contact-link:hover { text-decoration: underline; }

.contact-hours { display: block; color: var(--ink-3); }

.site-footer .contact-link { color: #ecd7da; }
.site-footer .contact-link:hover { color: #fff; }
.site-footer .contact-hours { color: #b998a0; }

.footer-bottom {
  margin-top: 2rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(255, 255, 255, .13);
  display: flex;
  flex-wrap: wrap;
  gap: .4rem 1.5rem;
  justify-content: space-between;
  font-size: .85rem;
  color: #b998a0;
}

.footer-bottom p { margin: 0; color: inherit; }

.footer-brand {
  margin: 0 0 .3rem;
  color: #fff;
  font-weight: 750;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
}

.footer-line { margin: 0; color: #cdaab0; font-size: .9rem; }

.footer-address {
  font-style: normal;
  color: #dcbfc4;
  line-height: 1.6;
}

.footer-nav { display: flex; flex-wrap: wrap; gap: 1.25rem; }
.footer-nav a { color: #ecd7da; text-decoration: none; font-weight: 600; }
.footer-nav a:hover { color: #fff; text-decoration: underline; }
