* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  body {
    font-family: "Lato", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: #333;
    background: linear-gradient(180deg, #faf7f3 0%, #f5f0ea 50%, #f2ebe4 100%);
    min-height: 100vh;
  }
  body.page-typy-masazi,
  body.page-kontakt {
    background: linear-gradient(180deg, rgba(250, 247, 243, 0.45) 0%, rgba(245, 240, 234, 0.75) 50%, rgba(242, 235, 228, 0.92) 100%), url("images/pozadie.jpg") center/cover no-repeat;
    background-attachment: scroll;
  }

  /* SEO / accessibility: nadpis H1 len pre vyhľadávače a čítačky */
  .visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
  }

  /* Calm, spa-like animations */
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(24px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }
  @keyframes softFadeInUp {
    from {
      opacity: 0;
      transform: translateY(16px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* Scroll-triggered reveal (JS adds .is-visible when in viewport) */
  .animate-on-scroll {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
  }
  .animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
  }
  .animate-on-scroll .animate-on-scroll-child {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
  }
  .animate-on-scroll.is-visible .animate-on-scroll-child {
    opacity: 1;
    transform: translateY(0);
  }
  .animate-on-scroll.is-visible .animate-on-scroll-child:nth-child(1) { transition-delay: 0.1s; }
  .animate-on-scroll.is-visible .animate-on-scroll-child:nth-child(2) { transition-delay: 0.2s; }
  .animate-on-scroll.is-visible .animate-on-scroll-child:nth-child(3) { transition-delay: 0.3s; }
  .animate-on-scroll.is-visible .animate-on-scroll-child:nth-child(4) { transition-delay: 0.4s; }

  .site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: linear-gradient(180deg, #ebe5de 0%, #e6dfd6 100%);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
    border-bottom: 1px solid rgba(0, 0, 0, 0.07);
  }
  .site-header-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #3d3530;
    transition: opacity 0.2s ease;
  }
  .logo:hover {
    opacity: 0.88;
  }
  .logo-img {
    height: 76px;
    max-height: 76px;
    width: auto;
    max-width: 120px;
    display: block;
    object-fit: contain;
  }
  .logo-text {
    font-weight: 700;
    letter-spacing: 0.14em;
    font-size: 17px;
    color: #9a8772;
  }
  .main-nav {
    display: flex;
    gap: 36px;
  }
  .nav-link {
    position: relative;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    text-decoration: none;
    color: #5c5349;
    padding: 6px 0;
    transition: color 0.3s ease;
  }
  .nav-link::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 2px;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #9a5c2e, #a04211);
    border-radius: 1px;
    transform: translateX(-50%);
    transition: width 0.3s ease;
  }
  .nav-link:hover {
    color: #3d3530;
  }
  .nav-link:hover::after {
    width: max(80%, 4.5ch);
  }
  .nav-link.active {
    color: #3d3530;
    font-weight: 600;
  }
  .nav-link.active::after {
    width: max(80%, 4.5ch);
  }
  /* Mobile layout */
  .nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 6px;
  }
  .nav-toggle span {
    width: 22px;
    height: 2px;
    background: #3d3530;
    border-radius: 1px;
    transition: background 0.2s ease;
  }
  @media (max-width: 768px) {
    .site-header-inner {
      padding: 16px 20px;
    }
    .main-nav {
      position: absolute;
      top: calc(100% + 6px);
      left: 12px;
      right: 12px;
      flex-direction: column;
      background: linear-gradient(180deg, #faf7f3 0%, #f5f0ea 100%);
      padding: 20px 24px;
      border-radius: 12px;
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
      border: 1px solid rgba(0, 0, 0, 0.06);
      display: none;
    }
    .main-nav.open {
      display: flex;
    }
    /* Responsive navbar: remove underline and highlight the active choice */
    .main-nav.open .nav-link {
      display: block;
      width: 100%;
      padding: 14px 0;
      border-radius: 0;
      text-align: center;
      line-height: 1;
      /* center vertically within the full-width row */
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .main-nav.open .nav-link::after {
      content: none;
      display: none;
    }
    .main-nav.open .nav-link:hover {
      background: rgba(167, 147, 106, 0.14);
      color: #3d3530;
    }
    .main-nav.open .nav-link.active {
      background: rgba(154, 135, 114, 0.26);
      box-shadow: inset 0 0 0 1px rgba(167, 147, 106, 0.42);
      font-weight: 700;
    }
    .nav-toggle {
      display: flex;
    }
  }
  /* Hero section just for demo */
  .hero {
    margin-top: 80px; /* space for fixed nav */
    min-height: 120vh;
    background: url("images/pozadie.jpg")
      center/cover no-repeat;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    text-align: center;
    padding: 130px 16px 60px;
    position: relative;
    overflow: hidden;
  }
  .hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(250, 247, 243, 0.3) 0%, rgba(245, 240, 234, 0.5) 50%, rgba(242, 235, 228, 0.85) 100%);
    z-index: 0;
  }
  .hero::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -80px;
    height: 160px;
    background: linear-gradient(180deg, #f2ebe4 0%, #f5f0ea 100%);
    transform: skewY(7deg);
    transform-origin: 0 0;
    z-index: 1;
  }
  .hero-content {
    position: relative;
    max-width: 600px;
    z-index: 2;
  }
  .hero-title {
    font-family: "Playfair Display", serif;
    font-size: 40px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #4a4038;
    margin-bottom: 8px;
    animation: fadeInUp 0.9s ease-out both;
  }
  .hero-tagline {
    text-transform: uppercase;
    letter-spacing: 0.25em;
    font-size: 11px;
    color: #555;
    animation: fadeInUp 0.8s ease-out 0.25s both;
  }

  /* Services container (middle card) */
  .services-section {
    padding: 0 16px 60px;
    margin-top: calc(-120vh + 320px);
    position: relative;
    z-index: 2;
  }
  .services-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12), 0 2px 10px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.06);
    overflow: hidden;
    animation: softFadeInUp 0.9s ease-out 0.2s both;
  }
  .services-col {
    flex: 1;
    padding: 40px 36px;
  }
  .services-col-left {
    background: #f4e5d9;
    border-right: 1px solid rgba(0, 0, 0, 0.05);
  }
  .services-col-left .intro-tagline {
    animation: fadeIn 0.7s ease-out 0.35s both;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: #8b7d6e;
    margin-bottom: 10px;
  }
  .services-col-left .intro-heading {
    animation: fadeIn 0.7s ease-out 0.4s both;
    font-family: "Playfair Display", serif;
    font-size: 23px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #3d3530;
    margin-bottom: 22px;
    line-height: 1.28;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  }
  .services-col-left .intro-text {
    animation: softFadeInUp 0.8s ease-out 0.5s both;
    font-size: 15px;
    line-height: 1.78;
    color: #5c5349;
  }
  .services-col-left .intro-text p {
    margin: 0 0 1.05em;
  }
  .services-col-left .intro-text p:last-child {
    margin-bottom: 0;
  }
  .services-col-left .intro-lead {
    font-size: 17px;
    font-style: italic;
    font-weight: 500;
    color: #9a5c2e;
    line-height: 1.65;
    margin-bottom: 0.2em;
  }
  .intro-photo-wrap {
    float: right;
    margin: 0 0 1em 1.5em;
    max-width: 42%;
  }
  .intro-photo {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    object-fit: cover;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
  }
  .intro-photo-wrap:hover .intro-photo {
    transform: scale(1.02);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
  }
  .services-col-left .intro-text::after {
    content: "";
    display: table;
    clear: both;
  }
  .services-tagline {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #9a8b7a;
    margin-bottom: 8px;
  }
  .services-heading {
    font-family: "Playfair Display", serif;
    font-size: 22px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: #3d3530;
    margin-bottom: 28px;
  }
  .services-list {
    list-style: none;
  }
  .service-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 0;
    padding-left: 25px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  }
  .service-item:last-child {
    border-bottom: none;
  }
  .service-item {
    animation: softFadeInUp 0.6s ease-out both;
  }
  .services-list .service-item:nth-child(1) { animation-delay: 0.1s; }
  .services-list .service-item:nth-child(2) { animation-delay: 0.18s; }
  .services-list .service-item:nth-child(3) { animation-delay: 0.26s; }
  .services-list .service-item:nth-child(4) { animation-delay: 0.34s; }
  .services-list .service-item:nth-child(5) { animation-delay: 0.42s; }
  .services-list .service-item:nth-child(6) { animation-delay: 0.5s; }
  .services-list .service-item:nth-child(7) { animation-delay: 0.58s; }
  .service-thumb {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    background: #eee;
    transition: transform 0.25s ease;
  }
  .service-link:hover .service-thumb {
    transform: scale(1.1);
  }
  .service-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
    transition: transform 0.25s ease;
  }
  .service-link:hover .service-info {
    transform: scale(1.05);
  }
  .service-name {
    transition: color 0.2s ease;
  }
  .service-link:hover .service-name {
    color: #a04211;
  }
  .service-name {
    font-weight: 700;
    font-size: 16px;
    color: #333;
  }
  .service-desc {
    font-size: 14px;
    color: #777;
  }
  .service-price {
    font-weight: 700;
    font-size: 15px;
    color: #0b8b8b;
  }
  .services-col-right {
    background: linear-gradient(165deg, #9a8772 0%, #8b7958 50%, #7d6d4f 100%);
  
  }
  .services-col-right .services-tagline {
    color: rgba(255, 255, 255, 0.85);
  }
  .services-col-right .services-heading {
    color: #fff;
  }
  .services-col-right .service-name {
    color: #fff;
  }
  .services-col-right .service-desc {
    color: rgba(255, 255, 255, 0.82);
  }
  .services-col-right .service-price {
    display: none;
  }
  .services-col-right .service-item {
    border-bottom-color: rgba(255, 255, 255, 0.15);
    margin: 0 -36px;
    padding: 16px 36px 16px 25px;
    transition: background 0.25s ease;
  }
  .services-col-right .service-item:hover {
    background: rgba(255, 255, 255, 0.08);
  }
  .services-col-right .service-link:hover .service-name {
    color: #e8dcc8;
  }
  .services-col-right .service-thumb {
    border: 2px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
  }
  .services-col-right .service-link:hover .service-thumb {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  }
  .service-link {
    display: flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
    color: inherit;
    flex: 1;
    transition: opacity 0.2s ease;
  }
  .service-link:hover {
    opacity: 1;
  }
  @media (max-width: 768px) {
    .services-section {
      margin-top: calc(-100vh + 280px);
    }
    .services-container {
      flex-direction: column;
    }
  }

  /* Effects section (full width, under services) – background blends up behind service card */
  .effects-section {
    width: 100%;
    margin-top: -180px;
    padding: 196px 24px 64px;
    background: linear-gradient(180deg, #e4dcd2 0%, #d9cfc2 50%, #d0c4b5 100%);
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 1;
  }
  .effects-inner {
    max-width: 1100px;
    margin: 0 auto;
  }
  .effects-heading {
    font-family: "Playfair Display", serif;
    font-size: 28px;
    font-weight: 700;
    color: #3d3530;
    text-align: center;
    margin-bottom: 36px;
    letter-spacing: 0.04em;
    padding-bottom: 14px;
    border-bottom: 2px solid rgba(167, 147, 106, 0.35);
  }
  .effects-content {
    display: flex;
    gap: 40px;
    align-items: flex-start;
  }
  .effects-image-wrap {
    flex: 0 0 340px;
    min-width: 0;
  }
  .effects-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    object-fit: cover;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
  }
  .effects-image-wrap:hover .effects-image {
    transform: scale(1.02);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  }
  .effects-text {
    flex: 1;
    min-width: 0;
  }
  .effects-text p {
    font-size: 15px;
    line-height: 1.8;
    color: #4a443d;
    margin: 0 0 1.1em;
  }
  .effects-text p:last-child {
    margin-bottom: 0;
  }
  .highlight-lomi {
    color: #9a5c2e;
    font-weight: 600;
  }
  @media (max-width: 768px) {
    .effects-section {
      margin-top: -120px;
      padding: 136px 20px 48px;
    }
    .effects-content {
      flex-direction: column;
      gap: 28px;
    }
    .effects-image-wrap {
      flex: none;
      max-width: 100%;
    }
    .effects-heading {
      font-size: 24px;
      margin-bottom: 24px;
    }
  }

  /* Kontraindikácie section (full width, under effects) */
  .contra-section {
    width: 100%;
    padding: 56px 24px 64px;
    background: linear-gradient(180deg, #f0e8dc 0%, #ebe2d6 100%);
    border-top: 1px solid rgba(0, 0, 0, 0.14);
  }
  .contra-inner {
    max-width: 1100px;
    margin: 0 auto;
  }
  .contra-heading {
    font-family: "Playfair Display", serif;
    font-size: 28px;
    font-weight: 700;
    color: #3d3530;
    text-align: center;
    margin-bottom: 36px;
    letter-spacing: 0.04em;
    padding-bottom: 14px;
    border-bottom: 2px solid rgba(167, 147, 106, 0.35);
  }
  .contra-content {
    display: flex;
    gap: 40px;
    align-items: flex-start;
  }
  .contra-image-wrap {
    flex: 0 0 340px;
    min-width: 0;
  }
  .contra-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    object-fit: cover;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
  }
  .contra-image-wrap:hover .contra-image {
    transform: scale(1.02);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  }
  .contra-text {
    flex: 1;
    min-width: 0;
  }
  .contra-intro {
    font-size: 15px;
    line-height: 1.8;
    color: #4a443d;
    margin: 0 0 1.25em;
  }
  .contra-highlight {
    color: #9a5c2e;
    font-weight: 600;
  }
  .contra-list {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .contra-list li {
    font-size: 15px;
    line-height: 1.75;
    color: #4a443d;
    padding: 0.4em 0 0.4em 1.75em;
    position: relative;
  }
  .contra-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: calc(0.4em + (1.75em * 0.5) - 2.5px);
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #a7936a;
  }
  @media (max-width: 768px) {
    .contra-section {
      padding: 40px 20px 48px;
    }
    .contra-content {
      flex-direction: column;
      gap: 28px;
    }
    .contra-image-wrap {
      flex: none;
      max-width: 100%;
    }
    .contra-heading {
      font-size: 22px;
      margin-bottom: 24px;
    }
  }

  /* Massage type slider (typy-masazi page) – same vibe as services-col-left */
  .massage-slider-section {
    padding: 40px 44px;
    background: linear-gradient(165deg, #faf4ee 0%, #f2e6dc 25%, #ecdccf 50%, #e6d4c4 75%, #e0cdbc 100%);
    border-radius: 12px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.06);
  }
  .massage-slider-section--under-nav {
    margin-top: 140px;
    margin-bottom: 0;
    padding-left: 32px;
    padding-right: 32px;
  }
  @media (max-width: 768px) {
    .massage-slider-section--under-nav {
      margin-top: 120px;
      padding-left: 16px;
      padding-right: 16px;
    }
  }
  .slider-current-info {
    text-align: center;
    margin-bottom: 24px;
  }
  .slider-current-name {
    font-family: "Playfair Display", serif;
    font-size: 22px;
    font-weight: 700;
    color: #3d3530;
    margin: 0 0 8px;
    line-height: 1.3;
  }
  .slider-current-desc {
    font-size: 15px;
    color: #4a443d;
    margin: 0;
    line-height: 1.5;
  }
  .slider-row {
    display: flex;
    gap: 24px;
    align-items: flex-start;
  }
  .slider-long-desc-wrap {
    flex: 1;
    min-width: 0;
    text-align: left;
    margin-top: 0;
  }
  .slider-images-col {
    flex: 0 0 auto;
    min-width: 0;
  }
  .massage-slider {
    display: flex;
    align-items: center;
    gap: 16px;
    position: relative;
  }
  .slider-inner {
    flex: 1;
    overflow: hidden;
    width: 380px;
  }
  .slider-track {
    display: flex;
    transition: transform 0.4s ease;
  }
  .slider-slide {
    flex: 0 0 100%;
    width: 100%;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0;
  }
  .slider-thumb {
    display: block;
    width: 100%;
    max-width: 380px;
    height: 280px;
    object-fit: cover;
    border-radius: 12px;
    background: #eee;
  }
  .slider-slide .slider-long-desc {
    display: none;
  }
  .slider-dots-wrap {
    padding-bottom: 20px;
    margin-bottom: 4px;
  }
  .slider-cta-wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 28px 40px;
    margin-top: 28px;
  }
  .slider-cta-label {
    font-size: 14px;
    font-weight: 600;
    color: #3d3530;
  }
  .slider-cta-select {
    padding: 12px 16px;
    font-size: 15px;
    font-weight: 500;
    color: #3d3530;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 8px;
    cursor: pointer;
    min-width: 160px;
    appearance: auto;
  }
  .slider-cta-select:hover,
  .slider-cta-select:focus {
    border-color: rgba(167, 147, 106, 0.5);
    outline: none;
  }
  .slider-cta-btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-decoration: none;
    color: #fff;
    background: #3d3530;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
  }
  .slider-cta-btn:hover {
    background: #5c5349;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  }
  .slider-cta-btn:focus-visible {
    outline: 2px solid #a7936a;
    outline-offset: 3px;
  }
  @media (max-width: 900px) {
    .slider-row {
      flex-direction: column;
      align-items: center;
    }
    .slider-arrow-prev,
    .slider-images-col,
    .slider-arrow-next {
      order: 1;
    }
    .slider-long-desc-wrap {
      order: 2;
      margin-top: 20px;
      width: 100%;
    }
    .slider-inner {
      width: 100%;
      max-width: 560px;
      margin: 0 auto;
    }
    .slider-thumb {
      max-width: 100%;
    }
  }

  /* Typy masáží (mobil): daj šípky vedľa seba */
  @media (max-width: 900px) {
    .page-typy-masazi .massage-slider-section--under-nav .slider-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      grid-template-areas:
        "images images"
        "prev next"
        "longdesc longdesc";
      align-items: center;
      justify-items: center;
      gap: 16px;
    }
    .page-typy-masazi .massage-slider-section--under-nav .slider-arrow-prev {
      grid-area: prev;
      justify-self: end;
    }
    .page-typy-masazi .massage-slider-section--under-nav .slider-arrow-next {
      grid-area: next;
      justify-self: start;
    }
    .page-typy-masazi .massage-slider-section--under-nav .slider-images-col {
      grid-area: images;
      width: 100%;
      justify-self: center;
    }
    .page-typy-masazi .massage-slider-section--under-nav .slider-long-desc-wrap {
      grid-area: longdesc;
      width: 100%;
      margin-top: 0;
    }
  }
  .slider-long-desc-current {
    font-size: 15px;
    line-height: 1.7;
    color: #4a443d;
  }
  .slider-long-desc-current p {
    margin: 0 0 1em;
  }
  .slider-long-desc-current p:last-child {
    margin-bottom: 0;
  }
  .slider-arrow {
    flex-shrink: 0;
    align-self: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 1px solid rgba(61, 53, 48, 0.15);
    background: #fff;
    color: #3d3530;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, transform 0.2s ease;
  }
  .slider-arrow svg {
    display: block;
  }
  .slider-arrow:hover {
    background: #3d3530;
    color: #fff;
    border-color: #3d3530;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
    transform: scale(1.02);
  }
  .slider-arrow:focus-visible {
    outline: 2px solid #a7936a;
    outline-offset: 2px;
  }
  .slider-arrow-end {
    flex-shrink: 0;
    align-self: center;
  }
  .slider-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 0;
    margin-bottom: 0;
  }
  .slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    padding: 0;
    background: rgba(61, 53, 48, 0.15);
    cursor: pointer;
    transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.2s ease;
  }
  .slider-dot:hover {
    background: #5c554d;
    transform: scale(1.15);
  }
  .slider-dot.active {
    background: #a7936a;
    transform: scale(1.25);
    box-shadow: 0 0 0 2px rgba(167, 147, 106, 0.3);
  }
  .slider-dot:focus-visible {
    outline: 2px solid #a7936a;
    outline-offset: 2px;
  }

  /* Typy masáží – mobil: CTA pod sebou, väčšie ťukacie ciele */
  @media (max-width: 640px) {
    .slider-cta-wrap {
      flex-direction: column;
      align-items: stretch;
      gap: 14px;
      margin-top: 22px;
    }
    .slider-cta-label {
      text-align: center;
      width: 100%;
    }
    .slider-cta-btn {
      width: 100%;
      text-align: center;
      box-sizing: border-box;
      padding: 16px 24px;
    }
  }
  @media (max-width: 768px) {
    .massage-slider-section {
      overflow-x: hidden;
    }
    .slider-dots-wrap {
      padding-bottom: 16px;
    }
    .slider-dots {
      flex-wrap: wrap;
      row-gap: 10px;
      column-gap: 10px;
      max-width: 100%;
      padding: 0 8px;
    }
    .slider-dot {
      width: 12px;
      height: 12px;
      min-width: 12px;
      min-height: 12px;
    }
    .slider-current-name {
      font-size: 20px;
      padding: 0 8px;
      word-break: break-word;
      hyphens: auto;
    }
    .slider-long-desc-current {
      font-size: 15px;
      line-height: 1.75;
    }
  }

  /* Subpages (Typy masáží, Cenník, Kontakt) */
  .page-content {
    padding: calc(80px + 2.5rem) 28px 3rem;
    max-width: 1100px;
    margin: 0 auto;
  }
  .content-section {
    animation: softFadeInUp 0.7s ease-out both;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 20px 56px rgba(0, 0, 0, 0.12), 0 4px 16px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 28px 30px 32px;
    margin: 0 12px;
  }
  .page-title {
    font-family: "Playfair Display", serif;
    font-size: 30px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: #3d3530;
    margin-bottom: 1rem;
  }
  .page-content .intro-tagline {
    margin-bottom: 5px;
  }
  .page-content .intro-tagline + .page-title {
    margin-top: 0;
  }
  .prose {
    font-size: 15.5px;
    line-height: 1.6;
    color: #4a443d;
  }
  .prose p {
    margin: 0 0 0.65em;
  }
  .prose p:last-child {
    margin-bottom: 0;
  }
  .prose a {
    color: #a7936a;
    text-decoration: none;
    border-bottom: 1px solid rgba(167, 147, 106, 0.4);
    transition: color 0.2s ease, border-color 0.2s ease;
  }
  .prose a:hover {
    color: #8b7a5a;
    border-bottom-color: #8b7a5a;
  }

  /* Contact page: info section under navbar, then form */
  /* Contact page: stable load animation for split columns */
  @keyframes contactColumnReveal {
    from {
      opacity: 0;
      transform: translateY(14px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  .page-kontakt .contact-col-left {
    animation: contactColumnReveal 0.55s ease-out both;
  }
  .page-kontakt .contact-col-right {
    animation: contactColumnReveal 0.55s ease-out 0.12s both;
  }
  .contact-split-section {
    padding: calc(80px + 3.5rem) 24px 18px;
  }
  .contact-split-container {
    max-width: 1100px;
    margin: 0 auto;
    align-items: stretch;
  }
  .contact-col-left .contact-intro {
    max-width: none;
    margin: 0 0 16px;
    padding: 0;
  }
  .contact-col-left {
    display: flex;
    flex-direction: column;
  }
  .contact-col-left .contact-info-section-inner {
    width: 100%;
    max-width: 100%;
    flex-wrap: wrap;
    /* center: card + map aligned in the middle; stretch is avoided so the map column doesn’t grow with empty space below */
    align-items: center;
    gap: 10px;
    margin-top: 16px;
  }
  .contact-col-left .contact-info-section-inner .contact-info-card {
    flex: 1 1 240px;
    min-width: 0;
  }
  .contact-col-left .contact-info-section-inner .contact-map-wrap {
    flex: 0 1 220px;
    max-width: 220px;
  }
  .contact-col-left .contact-info-section-inner .contact-map-wrap .contact-map {
    height: 130px;
    min-height: 130px;
    max-height: 130px;
  }
  .contact-col-left .contact-info-row {
    font-size: 16px;
    margin: 0 0 13px;
  }
  .contact-col-left .contact-info-icon {
    width: 22px;
    height: 22px;
  }
  .contact-col-left .contact-info-row a {
    overflow-wrap: anywhere;
  }
  .contact-col-left .contact-gallery-title {
    margin: 26px 0 10px;
  }
  .contact-col-left .contact-gallery {
    margin: 0;
  }
  .contact-col-right {
    display: flex;
    align-items: stretch;
    padding: 0;
    overflow: hidden;
  }
  .contact-col-right .reservation-form-card {
    width: 100%;
    height: 100%;
    margin: 0;
    border-radius: 0;
    box-shadow: none;
    border: none;
    padding: 36px 30px 40px;
  }

  .contact-info-section {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: linear-gradient(180deg, #e8ddd4 0%, #e0d4c9 100%);
    padding: 24px 24px 40px;
    padding-top: 40px;
    margin-top: 200px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    min-height: 420px;
  }
  .contact-intro {
    max-width: 820px;
    margin: 0 0 12px;
    padding: 0 4px;
    color: #4a443d;
  }
  .contact-intro-lead {
    font-family: "Playfair Display", serif;
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 14px;
  }
  .contact-intro-text {
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
  }
  .contact-info-section-inner {
    max-width: 1100px;
    margin-left: 0;
    margin-right: auto;
    width: fit-content;
    min-height: 0;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 12px;
    align-items: center;
    position: relative;
    z-index: 1;
  }
  .contact-info-section-inner .contact-map-wrap {
    flex: 0 0 260px;
    max-width: 260px;
    margin-top: 0;
  }
  .contact-info-section-inner .contact-map-wrap .contact-map {
    height: 150px;
    min-height: 150px;
    max-height: 150px;
  }
  .contact-info-section-inner .contact-info-card {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .contact-form-overlap {
    position: absolute;
    right: 24px;
    top: -70px;
    bottom: 40px;
    z-index: 10;
    width: 480px;
    max-width: calc(100% - 48px);
    display: flex;
    align-items: flex-start;
  }
  .contact-form-overlap .reservation-form-card {
    width: 100%;
  }
  .reservation-form-card {
    background: linear-gradient(180deg, #e8ddd4 0%, #e0d4c9 100%);
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1), 0 2px 10px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.06);
    padding: 32px 28px 40px;
  }

  /* Priestor thumbnails (click-to-zoom) - Kontakt page */
  .contact-gallery-title {
    margin: 14px 0 10px 28px;
    font-size: 18px;
    font-weight: 700;
    color: #3d3530;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
    z-index: 20; /* stay above absolute-positioned reservation form */
  }
  .contact-gallery {
    width: fit-content;
    max-width: none;
    margin: 24px 0 64px 28px;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(4, 120px);
    gap: 14px;
    position: relative;
    z-index: 20; /* Ensure thumbnails stay above the absolute-positioned reservation form */
    align-items: start;
  }
  .contact-gallery-item {
    display: block;
    border-radius: 12px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.06);
    transform: translateZ(0);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    aspect-ratio: 1 / 1;
    width: 120px;
    height: 120px;
    position: relative; /* for plus overlay */
  }
  .contact-gallery-item img {
    width: 100%;
    display: block;
    height: 100%;
    object-fit: cover;
    opacity: 0.82;
    transition: opacity 0.2s ease;
  }
  .contact-gallery-plus {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 38px;
    font-weight: 700;
    line-height: 1;
    color: #ffffff;
    opacity: 0.85;
    transition: opacity 0.2s ease, transform 0.2s ease, background 0.2s ease;
    pointer-events: none; /* click should still go to the link */
  }
  /* Circle removed: keep only the + icon */
  .contact-gallery-item:hover .contact-gallery-plus {
    opacity: 1;
  }
  .contact-gallery-item:hover {
    transform: scale(1.03);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.1);
    border-color: rgba(0, 0, 0, 0.12);
  }
  .contact-gallery-item:hover img {
    opacity: 1;
  }
  .contact-gallery-item:hover .contact-gallery-plus {
    transform: scale(1.03);
    background: transparent;
  }
  .contact-lightbox {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(0, 0, 0, 0.65);
    opacity: 0;
    transition: opacity 0.2s ease;
  }
  .contact-lightbox.is-open {
    display: flex;
    opacity: 1;
  }
  .contact-lightbox-img {
    max-width: 1100px;
    width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 14px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
    transform: scale(0.98);
    transition: transform 0.25s ease;
  }
  .contact-lightbox.is-open .contact-lightbox-img {
    transform: scale(1);
  }
  .contact-lightbox-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, transform 0.2s ease;
  }
  .contact-lightbox-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.04);
  }
  .contact-info-card {
    padding: 0;
    min-width: 260px;
  }
  .contact-map-wrap {
    margin-top: 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.06);
    background: #e8ddd4;
    line-height: 0;
  }
  .contact-map-open-link {
    display: block;
    margin-top: 8px;
    font-size: 13px;
    color: #5c5349;
    text-decoration: none;
  }
  .contact-map-open-link:hover {
    color: #9a5c2e;
    text-decoration: underline;
  }
  #contact-map-canvas.contact-map {
    width: 100%;
    height: 150px;
    min-height: 150px;
    max-height: 150px;
    background: #e8ddd4;
  }
  .contact-map {
    display: block;
    width: 100%;
    border: none;
  }
  .contact-info-row {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: #4a443d;
    margin: 0 0 16px;
  }
  .contact-info-row:last-child {
    margin-bottom: 0;
  }
  .contact-info-row-ico {
    margin-left: 3px;
  }
  .contact-info-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
  }
  .contact-info-row a {
    color: #4a443d;
    text-decoration: none;
    transition: color 0.2s ease;
  }
  .contact-info-row a:hover {
    color: #9a5c2e;
  }
  .reservation-form-title {
    font-family: "Lato", system-ui, sans-serif;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #3d3530;
    text-align: center;
    margin: 0 0 28px;
  }
  .reservation-success {
    margin: -8px 0 22px;
    padding: 14px 16px;
    border-radius: 10px;
    background: rgba(76, 125, 90, 0.14);
    border: 1px solid rgba(76, 125, 90, 0.38);
    color: #2d4a35;
    font-size: 15px;
    line-height: 1.55;
    text-align: center;
  }
  .reservation-success[hidden] {
    display: none !important;
  }
  .reservation-success strong {
    display: block;
    margin-bottom: 6px;
    font-size: 16px;
    font-weight: 700;
    color: #1e3d28;
  }
  .reservation-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .reservation-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }
  .reservation-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #5c5349;
  }
  .reservation-input {
    font-family: inherit;
    font-size: 15px;
    color: #3d3530;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    padding: 10px 0 8px;
    outline: none;
    transition: border-color 0.2s ease;
    appearance: none;
    -webkit-appearance: none;
  }
  .reservation-input::placeholder {
    color: #8b8580;
  }
  .reservation-input:hover {
    border-bottom-color: rgba(0, 0, 0, 0.3);
  }
  .reservation-input:focus {
    border-bottom-color: #a7936a;
  }
  .reservation-textarea {
    min-height: 100px;
    resize: vertical;
    padding: 12px 14px 10px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 8px;
    background-color: #eae3dc;
  }
  .reservation-textarea:focus {
    border-color: rgba(167, 147, 106, 0.5);
    outline: none;
  }
  .reservation-select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%235c5349' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0 center;
    padding-right: 24px;
  }
  .reservation-submit {
    font-family: inherit;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #5c5349;
    background: #f8f4f0;
    border: 1px solid rgba(0, 0, 0, 0.08);
    transition: background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease, transform 0.25s ease;
    border-radius: 8px;
    padding: 14px 24px;
    margin-top: 8px;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  }
  .reservation-submit:hover {
    background: #fff;
    color: #3d3530;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
    transform: translateY(-1px);
  }
  .reservation-submit:focus-visible {
    outline: 2px solid #a7936a;
    outline-offset: 2px;
  }
  @media (max-width: 1100px) {
    .contact-split-section {
      padding-left: 20px;
      padding-right: 20px;
      text-align: center;
    }
    .contact-split-container {
      flex-direction: column;
      align-items: center;
    }
    .contact-col-left {
      align-items: center;
      width: 100%;
      max-width: 100%;
    }
    .contact-col-left .contact-intro {
      text-align: center;
      margin-left: auto;
      margin-right: auto;
    }
    .contact-col-left .contact-info-section-inner {
      justify-content: center;
      margin-left: auto;
      margin-right: auto;
    }
    .contact-col-left .contact-info-row {
      justify-content: center;
    }
    .contact-col-left .contact-gallery-title {
      text-align: center;
      margin-left: 0;
      margin-right: 0;
      width: 100%;
    }
    .contact-col-left .contact-gallery {
      margin-left: auto;
      margin-right: auto;
    }
    .contact-col-left .contact-info-section-inner .contact-map-wrap {
      margin-left: auto;
      margin-right: auto;
      flex: 1 1 100%;
      max-width: min(640px, 100%);
      width: 100%;
    }
    .contact-col-left .contact-info-section-inner .contact-map-wrap .contact-map,
    .contact-col-left .contact-info-section-inner .contact-map-wrap #contact-map-canvas.contact-map {
      height: 280px;
      min-height: 280px;
      max-height: 280px;
    }
    /* Form column: full width, not centered (undo form-only centering) */
    .contact-col-right {
      align-self: stretch;
      width: 100%;
      max-width: 100%;
    }
    .contact-col-right .reservation-form-card {
      max-width: none;
      margin-left: 0;
      margin-right: 0;
      text-align: left;
    }
  }
  /* Kontakt: make the reservation form drop under the text earlier */
  @media (max-width: 1350px) {
    .contact-info-section {
      padding-left: 20px;
      padding-right: 20px;
      min-height: 0;
    }
    .contact-info-section-inner {
      width: 100%;
      flex-direction: column;
    }
    .contact-info-section-inner .contact-map-wrap {
      flex: none;
      width: 100%;
    }
    .contact-form-overlap {
      position: static;
      width: 100%;
      max-width: none;
      margin-top: 32px;
    }
    .contact-info-card {
      min-width: 0;
    }
  }
  /* Kontakt: 1101px–1350px – center email/phone/address; clip embed footer so only map area shows */
  @media (max-width: 1350px) and (min-width: 1101px) {
    .contact-col-left .contact-intro {
      text-align: center;
      margin-left: auto;
      margin-right: auto;
    }
    .contact-col-left .contact-info-section-inner {
      align-items: center;
      justify-content: center;
      margin-left: auto;
      margin-right: auto;
      width: 100%;
    }
    .contact-col-left .contact-info-card {
      width: 100%;
      max-width: 100%;
      text-align: center;
    }
    .contact-col-left .contact-info-row {
      justify-content: center;
    }
    .contact-col-left .contact-info-row-ico {
      margin-left: 0;
    }
    .contact-col-left .contact-info-section-inner .contact-map-wrap {
      flex: 1 1 100%;
      max-width: min(640px, 100%);
      width: 100%;
      margin-left: auto;
      margin-right: auto;
      /* Hide Google Maps embed footer (attribution strip) – keep top = map only */
      max-height: 232px;
      overflow: hidden;
    }
    .contact-col-left .contact-info-section-inner .contact-map-wrap .contact-map,
    .contact-col-left .contact-info-section-inner .contact-map-wrap #contact-map-canvas.contact-map {
      height: 280px;
      min-height: 280px;
      max-height: 280px;
      display: block;
    }
  }
  @media (max-width: 768px) {
    .contact-info-section {
      padding-left: 20px;
      padding-right: 20px;
      min-height: 0;
    }
    .contact-info-section-inner {
      width: 100%;
      flex-direction: column;
    }
    .contact-info-section-inner .contact-map-wrap {
      flex: none;
      width: 100%;
    }
    .contact-form-overlap {
      position: static;
      width: 100%;
      max-width: none;
      margin-top: 32px;
    }
    .contact-info-card {
      min-width: 0;
    }
    .contact-gallery {
      grid-template-columns: repeat(2, 110px);
      margin-left: auto;
      margin-right: auto;
      padding: 0;
      gap: 12px;
    }
    .contact-gallery-title {
      margin-left: auto;
      margin-right: auto;
      text-align: center;
    }
    .contact-gallery-item {
      width: 110px;
      height: 110px;
    }
    .contact-gallery-plus {
      font-size: 34px;
    }
  }

  .price-list {
    list-style: none;
    margin: 1rem 0;
  }
  .price-list li {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    flex-wrap: wrap;
    padding: 0.45rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  }
  .price-list li:last-child {
    border-bottom: none;
  }
  .price-name {
    font-weight: 500;
    color: #3d3530;
  }
  .price-value {
    font-weight: 700;
    color: #0b8b8b;
    text-align: right;
    min-width: 0;
  }

  /* Site footer */
  .site-footer {
    width: 100%;
    padding: 28px 20px 32px;
    background: linear-gradient(180deg, #ebe4dc 0%, #e4dcd2 100%);
    border-top: 1px solid rgba(0, 0, 0, 0.08);
  }
  .footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 18px 32px;
    align-items: center;
    justify-content: space-between;
  }
  .footer-col {
    min-width: 0;
  }
  .footer-col-left {
    flex: 1;
  }
  .footer-col-right {
    flex: 0 1 auto;
  }
  .footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #3d3530;
    margin-bottom: 16px;
  }
  .footer-logo-img {
    height: 56px;
    width: auto;
    display: block;
  }
  .footer-brand {
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 0.12em;
  }
  .footer-desc {
    font-size: 14px;
    line-height: 1.7;
    color: #5c5349;
    margin: 0;
  }
  .footer-col-right {
    text-align: right;
  }
  .footer-col-left .footer-tagline {
    font-family: "Lato", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 23px;
    font-weight: 700;
    font-style: normal;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #3d3530;
    margin: 0 0 10px;
    line-height: 1.28;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    display: inline-block;
  }
  .footer-tagline-link {
    color: inherit;
    text-decoration: none;
    display: inline-block;
    transition: color 0.25s ease, opacity 0.25s ease, transform 0.25s ease;
  }
  .footer-tagline-link:hover {
    color: #9a5c2e;
    opacity: 0.9;
    transform: scale(1.05);
  }
  .footer-tagline-link:focus-visible {
    outline: 2px solid #a7936a;
    outline-offset: 2px;
  }
  .footer-heading {
    font-family: "Lato", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: #8b7d6e;
    margin: 0;
  }
  .footer-tagline {
    font-size: 13px;
    color: #6b6259;
    margin: 0 0 20px;
    font-style: italic;
  }
  .footer-contact p {
    font-size: 15px;
    line-height: 1.6;
    color: #4a443d;
    margin: 0 0 10px;
  }
  .footer-contact p:last-child {
    margin-bottom: 0;
  }
  .footer-contact-row {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: flex-end;
  }
  .footer-contact-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
  }
  .footer-contact a {
    color: #4a443d;
    text-decoration: none;
    transition: color 0.2s ease;
  }
  .footer-contact a:hover {
    color: #9a5c2e;
  }
  @media (max-width: 768px) {
    .footer-inner {
      flex-direction: column;
      align-items: stretch;
      gap: 24px;
      text-align: center;
    }
    .footer-col-left {
      min-width: 0;
    }
    .footer-heading {
      display: block;
      text-align: center;
    }
    .footer-col-right {
      text-align: center;
    }
    .footer-contact-row {
      justify-content: center;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .hero-content,
    .services-container,
    .intro-tagline,
    .intro-heading,
    .intro-text,
    .service-item {
      animation: none;
    }
    .content-section {
      animation: none;
    }
  }

  /* Extra small phones: make navigation/touch targets and layout easier */
  @media (max-width: 480px) {
    /* Header / nav */
    .site-header-inner {
      padding: 12px 14px;
    }
    .main-nav {
      left: 10px;
      right: 10px;
      top: calc(100% + 4px);
      padding: 16px 16px;
      max-height: calc(100vh - 90px);
      overflow-y: auto;
    }
    .nav-link {
      font-size: 13px;
      letter-spacing: 0.14em;
      padding: 10px 0;
    }

    /* Subpages/cards */
    .page-content {
      padding: calc(80px + 1.5rem) 16px 2.5rem;
    }
    .content-section {
      margin: 0;
      padding: 20px 18px 24px;
    }
    .page-title {
      font-size: 26px;
      margin-bottom: 0.75rem;
    }

    /* Services card */
    .services-col {
      padding: 24px 18px;
    }
    .services-col-right .service-item {
      margin: 0 -18px;
      padding: 16px 18px 16px 14px;
    }

    /* Effects / Contra */
    .effects-section {
      padding: 140px 16px 48px;
    }
    .contra-section {
      padding: 40px 16px 48px;
    }

    /* Slider (typy masáží) */
    .massage-slider-section {
      padding: 24px 12px 28px;
    }
    .massage-slider-section--under-nav {
      margin-top: 112px;
      padding-left: 12px;
      padding-right: 12px;
    }
    .slider-current-info {
      margin-bottom: 18px;
    }
    .slider-current-name {
      font-size: 18px;
      line-height: 1.35;
    }
    .slider-current-desc {
      font-size: 14px;
      padding: 0 4px;
    }
    .slider-thumb {
      height: min(52vw, 240px);
      max-height: 240px;
    }
    .slider-arrow {
      width: 48px;
      height: 48px;
      min-width: 48px;
      min-height: 48px;
    }
    .slider-row {
      gap: 16px;
    }
    .slider-long-desc-wrap {
      margin-top: 16px;
    }
    .slider-cta-select {
      width: 100%;
      min-width: 0;
    }

    /* Cenník (mobile): lepšia čitateľnosť cien */
    .price-list {
      margin: 0.75rem 0 0;
      padding: 0;
    }
    .price-list li {
      flex-direction: column;
      align-items: flex-start;
      gap: 0.4rem;
      padding: 0.9rem 0.85rem;
      border-bottom: none;
      border: 1px solid rgba(0, 0, 0, 0.06);
      border-radius: 12px;
      background: rgba(255, 255, 255, 0.65);
      margin: 0 0 12px;
      width: 100%;
    }
    .price-name {
      font-size: 15px;
      font-weight: 700;
    }
    .price-value {
      font-size: 14px;
      text-align: left;
      white-space: normal;
      overflow-wrap: anywhere;
      word-break: break-word;
      line-height: 1.6;
    }

    /* Reservation form */
    .reservation-form-card {
      padding: 24px 16px 28px;
    }
    .reservation-submit {
      width: 100%;
      text-align: center;
    }

    /* Contact map + gallery (scoped so stacked layout keeps a taller map) */
    .contact-col-left .contact-map-wrap .contact-map,
    .contact-col-left .contact-map-wrap #contact-map-canvas.contact-map {
      height: 220px;
      min-height: 220px;
      max-height: 220px;
    }
    .contact-gallery {
      margin-left: auto;
      margin-right: auto;
    }
  }