:root {
  --bg: #E9DFCC;
  --text: #1a1a1a;
  --accent: #000;
  --soft: rgba(0, 0, 0, 0.15);
  --overlay: rgba(0, 0, 0, 0.3);
}

/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: "Manrope", sans-serif;
  font-weight: 300;
  overflow-x: hidden;
}

button,
input,
select,
textarea { font-family: "Manrope", sans-serif; }

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Manrope", sans-serif;
  font-weight: 300;
  letter-spacing: 1.5px;
}

h2 {
  font-size: 42px;
  text-align: center;
  margin-bottom: 60px;
  letter-spacing: 2px;
}

p {
  letter-spacing: 0.3px;
}

section {
  padding: 100px 20px;
  max-width: 1200px;
  margin: auto;
}

/* SCROLLBAR & CURSOR GLOW */
.scroll-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  background: black;
  width: 0%;
  z-index: 9999;
}

.cursor-glow {
  position: fixed;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(0,0,0,0.08), transparent 70%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 0;
}

/* HERO */
.hero {
  position: relative;
  height: 100vh;
  max-height: 900px;
  width: 100vw;
  max-width: 100%;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  animation: zoomHero 12s ease-in-out infinite alternate;
}

@keyframes zoomHero {
  from { transform: translate(-50%, -50%) scale(1); }
  to { transform: translate(-50%, -50%) scale(1.08); }
}

.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: var(--overlay);
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.logo {
  width: 520px;
  max-width: 90%;
  filter: invert(1);
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1.5s ease forwards;
}

.hero .btn {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1.5s ease forwards;
  animation-delay: 0.5s;
}

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

/* BUTTONS */
.btn {
  position: relative;
  overflow: hidden;
  padding: 14px 36px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  color: white;
  text-decoration: none;
  letter-spacing: 2px;
  z-index: 1;
  transition: color 0.4s;
}

.btn::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: -100%;
  background: white;
  transition: 0.4s;
  z-index: -1;
}

.btn:hover::after {
  left: 0;
}

.btn:hover {
  color: black;
}

.btn-dark {
  position: relative;
  overflow: hidden;
  display: inline-block;
  padding: 14px 30px;
  border: 1px solid black;
  color: black;
  letter-spacing: 2px;
  font-size: 12px;
  transition: color 0.4s;
  background: transparent;
  z-index: 1;
}

.btn-dark::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: -100%;
  background: black;
  transition: 0.4s;
  z-index: -1;
}

.btn-dark:hover::after {
  left: 0;
}

.btn-dark:hover {
  color: white;
}

/* ABOUT */
.about {
  padding-top: 100px;
  padding-bottom: 60px;
}

.about-grid {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-left {
  max-width: 520px;
  margin: 0 auto;
  padding-left: 20px;
}

.about-title {
  font-size: 48px;
  margin-bottom: 30px;
  letter-spacing: 0.07em;
  text-align: left;
}

.about-text {
  text-align: left;
  letter-spacing: 0.04em;
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-right img {
  height: 500px;
  object-fit: cover;
}

.signature {
  width: 120px;
  margin-top: 30px;
  filter: brightness(0);
  opacity: 0.7;
}

/* MASÁŽE */
.massages {
  max-width: 1100px;
  margin: auto;
  padding-top: 60px;
  padding-bottom: 60px;
}

.massages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.massage-card {
  position: relative;
  height: 300px;
  overflow: hidden;
  text-decoration: none;
  color: white;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.massage-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.6s ease;
}

.massage-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  transition: 0.4s;
}

.massage-card:hover img {
  transform: scale(1.08);
}

.massage-card:hover::after {
  background: rgba(0, 0, 0, 0.55);
}

.massage-card:hover {
  transform: translateY(-6px);
}

.card-overlay.center {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 2;
}

.title-wide {
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  letter-spacing: 0.55em;
  text-transform: uppercase;
  color: white;
  font-weight: 300;
  line-height: 1.6;
  text-align: center;
  padding: 0 10px;
  transition: 0.4s;
}

.massage-card:hover .title-wide {
  transform: scale(1.05);
  letter-spacing: 0.65em;
}

/* MASSAGE DETAIL */
.massage-detail {
  padding: 120px 20px;
  max-width: 1200px;
  margin: auto;
}

.detail-header {
  text-align: center;
  margin-bottom: 80px;
}

.detail-header h1 {
  font-size: 48px;
  letter-spacing: 0.6em;
  margin-bottom: 10px;
}

.subtitle {
  opacity: 0.6;
  margin-bottom: 30px;
}

.detail-logo {
  width: 60px;
  opacity: 0.6;
}

.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.detail-text {
  max-width: 500px;
}

.highlight {
  font-style: italic;
  margin-bottom: 25px;
  opacity: 0.8;
}

.detail-text p {
  margin-bottom: 20px;
  line-height: 1.8;
}

.detail-visual img {
  width: 100%;
  max-width: 500px;
  margin: auto;
  display: block;
}

/* PRICING */
.pricing,
.pricing-preview {
  max-width: 800px;
  margin: auto;
  text-align: center;
  padding-top: 60px;
  padding-bottom: 60px;
}

.pricing-wrapper {
  max-width: 600px;
  margin: 60px auto;
  padding: 50px;
  background: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.pricing-wrapper:hover {
  transform: translateY(-6px);
}

.pricing-block {
  margin-bottom: 50px;
  text-align: center;
}

.pricing-block h3 {
  margin-bottom: 25px;
  font-size: 20px;
  letter-spacing: 2px;
}

.price-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price-item {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding-bottom: 6px;
  font-size: 16px;
}

.price-item span {
  opacity: 0.7;
}

.price-item strong {
  font-weight: 500;
}
/* CONTACT */
.contact {
  padding: 100px 20px;
  max-width: 900px;
  margin: auto;
  text-align: center;
}

.contact-card {
  max-width: 500px;
  margin: auto;
  padding: 50px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-6px);
}

.contact-info {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-info a {
  text-decoration: none;
  color: black;
  opacity: 0.7;
}

.contact-divider {
  margin: 25px auto;
  width: 40px;
  height: 1px;
  background: black;
  opacity: 0.3;
}

/* BOOKING FORM - OPRAVA PREKRÝVANIA TEXTU */
.booking {
  padding: 120px 20px 160px;
  max-width: 900px;
  margin: auto;
  background: var(--bg);
}

.booking-wrapper {
  max-width: 760px;
  margin: 0 auto;
  padding: 60px 50px;
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 4px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
}

.booking-wrapper:hover {
  transform: translateY(-6px);
}

.booking-head {
  text-align: center;
  margin-bottom: 50px;
}

.booking-head h2 {
  font-size: 38px;
  font-weight: 400;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 35px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 35px 25px;
}

.full-width {
  grid-column: span 2;
}

/* FLOATING LABELS & INPUTS */
.form-group {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-top: 20px;
}

.form-group label {
  position: absolute;
  top: 32px;
  left: 0;
  font-family: "Manrope", sans-serif;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.55);
  pointer-events: none;
  transition: all 0.3s ease;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  background: transparent;
  padding: 10px 0;
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  color: #000;
  outline: none;
  border-radius: 0;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group textarea {
  resize: vertical;
  min-height: 80px;
}

/* Zabezpečenie správneho odsadnutia nadpisu pri selecte a zadanom texte */
.form-group select ~ label,
.form-group input:focus ~ label,
.form-group input:not(:placeholder-shown) ~ label,
.form-group textarea:focus ~ label,
.form-group textarea:not(:placeholder-shown) ~ label,
.form-group select:focus ~ label,
.form-group .label-fixed {
  top: 0px;
  font-size: 10px;
  letter-spacing: 2px;
  color: #000;
  font-weight: 600;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-bottom: 1.5px solid #000;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-group select {
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
}

.form-group select option {
  background: #fff;
  color: #000;
  font-family: "Manrope", sans-serif;
  padding: 10px;
}

/* RADIO BUTTONS */
.source-group {
  margin-top: 10px;
}

.source-title {
  font-family: "Manrope", sans-serif;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.6;
  margin-bottom: 18px;
}

.source-options {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 24px;
}

.custom-radio {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  user-select: none;
}

.custom-radio input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.radio-box {
  width: 14px;
  height: 14px;
  border: 1px solid rgba(0, 0, 0, 0.4);
  border-radius: 50%;
  margin-right: 8px;
  position: relative;
  transition: all 0.25s ease;
}

.custom-radio:hover .radio-box {
  border-color: #000;
}

.custom-radio input:checked ~ .radio-box {
  border-color: #000;
  background: #000;
}

.custom-radio input:checked ~ .radio-box::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #fff;
}

.radio-label {
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  letter-spacing: 1px;
  color: rgba(0, 0, 0, 0.8);
  text-transform: uppercase;
}

.btn-submit {
  margin-top: 15px;
  width: 100%;
  padding: 18px;
  background: transparent;
  border: 1px solid #000;
  color: #000;
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: color 0.4s ease;
  z-index: 1;
}

.btn-submit::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #000;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: -1;
}

.btn-submit:hover {
  color: #fff;
}

.btn-submit:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

/* ERRORS & THANK YOU */
.form-group.error input,
.form-group.error select {
  border-bottom: 1px solid #b00020;
}

.error-message {
  display: none;
  color: #b00020;
  font-size: 12px;
  margin-top: 4px;
}

.form-group.error .error-message {
  display: block;
}

.thank-you-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 28px 20px;
  background: var(--bg);
}

.thank-you-panel {
  width: min(100%, 760px);
  padding: clamp(42px, 8vw, 96px) clamp(24px, 8vw, 88px);
  border: 1px solid rgba(23, 60, 32, 0.16);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.18);
  text-align: center;
}

.thank-you-brand,
.thank-you-redirect {
  color: rgba(23, 60, 32, 0.68);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.24em;
  line-height: 1.8;
  text-transform: uppercase;
}

.thank-you-mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin: 34px auto 24px;
  border: 1px solid rgba(23, 60, 32, 0.32);
  border-radius: 50%;
  color: #173c20;
  font-size: 20px;
  font-weight: 300;
}

.thank-you-panel h1 {
  margin: 0;
  color: #173c20;
  font-size: clamp(32px, 6vw, 58px);
  font-weight: 300;
  letter-spacing: 0.19em;
  line-height: 1.2;
  text-transform: uppercase;
}

.thank-you-line {
  width: 42px;
  height: 1px;
  margin: 26px auto;
  background: rgba(23, 60, 32, 0.38);
}

.thank-you-message {
  max-width: 440px;
  margin: 0 auto 34px;
  color: rgba(26, 26, 26, 0.78);
  font-size: 15px;
  font-weight: 300;
  letter-spacing: 0.035em;
  line-height: 1.9;
}

.thank-you-btn {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 30px;
  border: 1px solid #173c20;
  border-radius: 999px;
  background: #173c20;
  color: var(--bg);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease;
}

.thank-you-btn:hover {
  background: transparent;
  color: #173c20;
}

.thank-you-redirect {
  margin-top: 24px;
  font-size: 9px;
  letter-spacing: 0.16em;
}

.reveal {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.8s ease;
}

/* RESPONSIVE (MOBILE FIX) */
@media (max-width: 900px) {
  section {
    padding: 80px 20px;
  }

  h2 {
    font-size: 32px;
    margin-bottom: 40px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-left {
    padding-left: 0;
  }

  .about-title {
    text-align: center;
  }

  .about-right img {
    height: 350px;
  }

  .massages-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .detail-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .detail-text {
    margin: auto;
  }
}

@media (max-width: 768px) {
  .booking-wrapper {
    padding: 40px 24px;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .full-width {
    grid-column: span 1;
  }

  .source-options {
    gap: 14px 18px;
  }
}

@media (max-width: 500px) {
  .logo {
    width: 260px;
  }

  .massages-grid {
    grid-template-columns: 1fr;
  }

  .booking-wrapper,
  .pricing-wrapper,
  .contact-card {
    padding: 30px 20px;
  }

  .detail-header h1 {
    font-size: 32px;
    letter-spacing: 0.3em;
  }
}
/* ==========================================
   PRICING & PRICING PREVIEW (MODERN LUXURY 2027)
   ========================================== */
.pricing,
.pricing-preview {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  padding: 100px 20px;
}

.pricing-wrapper {
  max-width: 680px;
  margin: 40px auto 0;
  padding: 50px 40px;
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.04), 0 1px 3px rgba(0, 0, 0, 0.02);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.pricing-wrapper:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.07);
}

.price-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}

.price-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.price-item:hover {
  background: rgba(255, 255, 255, 0.5);
  padding-left: 24px;
  padding-right: 24px;
  border-bottom-color: rgba(0, 0, 0, 0.15);
}

.price-item span {
  font-family: "Manrope", sans-serif;
  font-size: 15px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #2b2b2b;
  font-weight: 500;
}

.price-item strong {
  font-family: "Manrope", sans-serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #000;
}

/* modernizované tlačidlo cenníka */
.pricing-preview .btn-dark,
.pricing .btn-dark {
  display: inline-block;
  padding: 16px 42px;
  border: 1px solid #000;
  border-radius: 40px;
  font-family: "Manrope", sans-serif;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #000;
  background: transparent;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.pricing-preview .btn-dark::after,
.pricing .btn-dark::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #000;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: -1;
}

.pricing-preview .btn-dark:hover,
.pricing .btn-dark:hover {
  color: #fff;
  border-color: #000;
}

.pricing-preview .btn-dark:hover::after,
.pricing .btn-dark:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}


/* ==========================================
   CONTACT SECTION (MODERN LUXURY 2027)
   ========================================== */
.contact {
  padding: 100px 20px;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.contact-card {
  max-width: 580px;
  margin: 40px auto 0;
  padding: 50px 40px;
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.04);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.07);
}

.contact-name {
  font-family: "Manrope", sans-serif;
  font-size: 24px;
  letter-spacing: 1px;
  margin-bottom: 20px;
  color: #111;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

.contact-info a {
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  letter-spacing: 1.5px;
  color: #333;
  transition: color 0.3s ease, transform 0.3s ease;
  display: inline-block;
}

.contact-info a:hover {
  color: #000;
  transform: scale(1.03);
}

.contact-divider {
  margin: 30px auto;
  width: 50px;
  height: 1px;
  background: rgba(0, 0, 0, 0.15);
}

.contact-note {
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  letter-spacing: 1px;
  line-height: 1.6;
  color: rgba(0, 0, 0, 0.65);
}
/* ==========================================
   MASSAGE DETAIL (MODERN LUXURY 2027)
   ========================================== */
.massage-detail {
  padding: 100px 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.detail-card {
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 20px;
  padding: 60px 50px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.04);
}

.detail-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.detail-text {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.detail-tagline {
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #000;
  font-weight: 600;
  opacity: 0.8;
}

.detail-lead {
  font-family: "Manrope", sans-serif;
  font-size: 22px;
  line-height: 1.5;
  color: #1a1a1a;
  font-style: italic;
}

/* Benefit List - Clean Bullets */
.benefit-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 10px 0;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: #333;
}

.benefit-item::before {
  content: "—";
  color: #000;
  font-weight: bold;
}

/* Duration Tags (Pills) */
.duration-section {
  margin-top: 10px;
}

.duration-title {
  font-family: "Manrope", sans-serif;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.6;
  margin-bottom: 12px;
}

.duration-grid {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.duration-pill {
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 30px;
  padding: 10px 18px;
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  color: #000;
  transition: all 0.3s ease;
}

.duration-pill strong {
  font-weight: 600;
}

.duration-pill:hover {
  background: #000;
  color: #fff;
  border-color: #000;
  transform: translateY(-2px);
}

/* Contraindications Note */
.contraindications {
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  color: rgba(0, 0, 0, 0.5);
  line-height: 1.5;
  margin-top: 10px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding-top: 16px;
}

/* Visual Image Hover Effect */
.detail-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.detail-visual img {
  max-width: 100%;
  height: auto;
  border-radius: 50%;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.08));
}

.detail-card:hover .detail-visual img {
  transform: scale(1.03) rotate(1deg);
}

/* Responsive adjustment */
@media (max-width: 900px) {
  .detail-card {
    padding: 40px 24px;
  }
  .detail-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* Massage catalogue: warm paper, forest green, clear service pricing. */
.massages {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: clamp(72px, 9vw, 120px) 24px;
}

.massages .massages-title {
  width: 100%;
  flex: 0 0 100%;
  margin: 0 0 24px;
  color: #173c20;
  font-family: "Manrope", sans-serif;
  font-size: 20px;
  font-weight: 300;
  letter-spacing: 0.5em;
  text-align: center;
  text-transform: uppercase;
}

.contact > h2 {
  margin: 0 0 24px;
  color: #173c20;
  font-family: "Manrope", sans-serif;
  font-size: 20px;
  font-weight: 300;
  letter-spacing: 0.5em;
  text-align: center;
  text-transform: uppercase;
}

.booking-head h2 {
  margin: 0 0 12px;
  color: #173c20;
  font-family: "Manrope", sans-serif;
  font-size: 20px;
  font-weight: 300;
  letter-spacing: 0.5em;
  text-align: center;
  text-transform: uppercase;
}

.massages .massages-grid {
  width: min(1944px, 100%);
  max-width: 1944px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
  gap: clamp(18px, 2.2vw, 32px);
}

.massages .massage-card {
  flex: 0 1 calc((100% - 64px) / 3);
  max-width: 632px;
  min-width: 0;
  height: auto;
  aspect-ratio: 1 / 1;
  display: block;
  overflow: hidden;
  border: 1px solid rgba(23, 60, 32, 0.13);
  border-radius: 12px;
  background: #f3eee3;
  color: #173c20;
  transition: border-color 220ms ease;
}

.massages .massage-card::after { content: none; }
.massages .massage-card:focus-visible { outline: 2px solid #3f6544; outline-offset: 4px; }

.massages .massage-card > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 450ms ease;
}

.massages .massage-card:hover > img { transform: scale(1.035); }

.massages .massage-card .card-overlay.center {
  position: absolute;
  inset: 0;
  min-height: 0;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.34);
  text-align: center;
  z-index: 2;
}

.massages .massage-card .title-wide {
  margin: 0;
  padding: 0;
  color: #f3eee3;
  font-family: "Manrope", sans-serif;
  font-size: clamp(12px, 1vw, 14px);
  font-weight: 300;
  letter-spacing: 0.5em;
  line-height: 1.6;
  text-align: center;
  text-transform: uppercase;
  text-wrap: balance;
}

.pricing-preview.pricing-button-section {
  width: 100%;
  max-width: none;
  min-height: 150px;
  margin: 0 auto;
  padding: 28px 24px 82px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.pricing-only-button {
  min-width: 190px;
  min-height: 56px;
  padding: 0 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #173c20;
  border-radius: 8px;
  background: #173c20;
  color: #f3eee3;
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  transition: background 180ms ease, transform 180ms ease;
}

.pricing-only-button:hover { transform: translateY(-1px); background: #214c2a; }

@media (max-width: 900px) {
  .massages .massages-grid { gap: 20px; }
  .massages .massage-card { flex-basis: calc((100% - 20px) / 2); max-width: none; }
}

@media (max-width: 560px) {
  .massages { width: 100%; padding: 72px 18px; }
  .massages .massages-title { margin-bottom: 22px; font-size: 18px; }
  .massages .massages-grid { width: 100%; gap: 12px; }
  .massages .massage-card { flex-basis: calc((100% - 12px) / 2); }
  .massages .massage-card .title-wide { font-size: 10px; letter-spacing: 0.2em; }
  .pricing-preview.pricing-button-section { min-height: 120px; padding: 16px 18px 64px; }
}

.site-footer {
  width: 100%;
  padding: 25px 24px;
  background: #173c20;
  color: #f3eee3;
}

.site-footer-inner {
  width: min(1240px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
}

.site-footer-name,
.site-footer-copy,
.site-footer-top {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.18em;
  line-height: 1.6;
  text-transform: uppercase;
}

.site-footer-name { font-weight: 500; }
.site-footer-copy { color: rgba(243, 238, 227, 0.74); text-align: center; }
.site-footer-top { justify-self: end; color: #f3eee3; text-decoration: none; }
.site-footer-top:hover { color: #ffffff; }

@media (max-width: 640px) {
  .site-footer { padding: 25px 18px; }
  .site-footer-inner { grid-template-columns: 1fr; gap: 10px; justify-items: center; text-align: center; }
  .site-footer-top { justify-self: center; }
}

.hero-content {
  width: min(520px, calc(100vw - 40px));
  align-items: center;
}

.hero .btn {
  display: inline-flex;
  width: max-content;
  max-width: 100%;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  align-self: center;
  padding: 16px 30px;
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.35em;
  line-height: 1.4;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
}

@media (max-width: 500px) {
  .hero .btn { padding-inline: 22px; letter-spacing: 0.24em; }
}
