/*
Local font loading (no Google Fonts CDN).

Place the following font files in the "fonts/" folder:
  - Inter_18pt-Regular.ttf
  - Inter_18pt-Medium.ttf
  - Inter_18pt-SemiBold.ttf
  - Inter_18pt-Bold.ttf
  - CormorantGaramond-Medium.ttf
  - CormorantGaramond-SemiBold.ttf
  - CormorantGaramond-Bold.ttf

If you prefer woff/woff2, you can convert these .ttf files with a font tool or re-download from Google Fonts.
*/

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("./fonts/Inter_18pt-Regular.ttf") format("truetype");
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("./fonts/Inter_18pt-Medium.ttf") format("truetype");
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("./fonts/Inter_18pt-SemiBold.ttf") format("truetype");
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("./fonts/Inter_18pt-Bold.ttf") format("truetype");
}

@font-face {
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("./fonts/CormorantGaramond-Medium.ttf") format("truetype");
}

@font-face {
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("./fonts/CormorantGaramond-SemiBold.ttf") format("truetype");
}

@font-face {
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("./fonts/CormorantGaramond-Bold.ttf") format("truetype");
}
:root {
        --bg: #f6f5f1;
        --bg-soft: #eef2eb;
        --bg-card: #ffffff;
        --bg-alt: #f8f8f5;
        --text: #263127;
        --text-soft: #556152;
        --muted: #6f7b6d;
        --line: rgba(219, 226, 215, 0.9);
        --line-strong: #cfd8cb;
        --accent: #435a43;
        --accent-2: #6d826c;
        --accent-soft: #e7efe3;
        --warm: #faf8f4;
        --shadow: 0 20px 60px rgba(58, 78, 52, 0.08);
        --radius-xl: 32px;
        --radius-lg: 24px;
        --radius-md: 18px;
        --container: 1200px;
        --header-height: 82px;
      }

      * { box-sizing: border-box; }
      html {
        scroll-behavior: smooth;
        overflow-x: clip;
      }
      body {
        margin: 0;
        font-family: "Inter", sans-serif;
        background: var(--bg);
        color: var(--text);
        line-height: 1.65;
        overflow-x: clip;
      }
      img { max-width: 100%; display: block; }
      a { color: inherit; text-decoration: none; }
      .container { width: min(var(--container), calc(100% - 32px)); margin: 0 auto; }
      .serif { font-family: "Cormorant Garamond", serif; }
      .serif--light { font-weight: 400; font-size: clamp(1.9rem, 3.8vw, 2.2rem); }
      .section { padding: 96px 0; }
      .gallery-break { padding: 56px 0; }
      .section-header { max-width: 760px; margin-bottom: 40px; }
      .badge {
        display: inline-flex; align-items: center; padding: 10px 16px; border-radius: 999px;
        border: 1px solid rgba(255,255,255,0.45); background: rgba(255,255,255,0.18);
        color: rgba(255,255,255,0.94); font-size: 14px; backdrop-filter: blur(8px);
      }
      .badge--light {
        border-color: var(--line-strong); background: rgba(255,255,255,0.75); color: var(--muted);
      }
      h1,h2,h3,h4,p { margin: 0; }
      h1 { font-family: "Inter", sans-serif; }
      h2,h3 { font-family: "Cormorant Garamond", serif; }
      h1 { font-size: clamp(3rem, 6vw, 5.5rem); line-height: 0.95; margin-top: 20px; }
      h2 { font-size: clamp(2.4rem, 4vw, 4.2rem); line-height: 0.98; margin-top: 18px; }
      h3 { font-size: 2rem; line-height: 1.05; }
      .lead { margin-top: 24px; font-size: 1.12rem; color: var(--text-soft); max-width: 760px; }

      .reveal {
        opacity: 0;
        transform: translateY(28px);
        transition: opacity 0.75s ease, transform 0.75s ease;
        will-change: opacity, transform;
      }
      .reveal.is-visible {
        opacity: 1;
        transform: translateY(0);
      }

      .topbar {
        position: sticky; top: 0; z-index: 100; backdrop-filter: blur(14px);
        background: rgba(246,245,241,0.9); border-bottom: 1px solid rgba(219, 226, 215, 0.75);
      }
      .topbar-inner {
        min-height: var(--header-height); display: flex; align-items: center; justify-content: space-between; gap: 20px;
      }
      .progress-wrap {
        position: absolute; left: 0; right: 0; bottom: 0; height: 3px; background: rgba(67,90,67,0.08);
      }
      .progress-bar {
        height: 100%; width: 0%; background: linear-gradient(90deg, #7a8f77 0%, #435a43 100%);
        transition: width 0.08s linear;
      }

      .brand { display: flex; align-items: center; gap: 14px; }
      .brand-logo {
        width: 52px; height: 52px; border-radius: 50%; background: rgba(255,255,255,0.92);
        border: 1px solid #cfd8cb; box-shadow: 0 10px 25px rgba(58,78,52,0.08); padding: 7px;
        object-fit: contain; flex: 0 0 auto;
      }
      .brand-title { font-size: 1.5rem; line-height: 1; }
      .brand-subtitle { margin-top: 4px; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.28em; color: var(--muted); }

      .nav { display: flex; align-items: center; gap: 26px; }
      .nav a {
        position: relative; font-size: 0.95rem; color: #4b5648; padding: 6px 0; transition: color 0.22s ease;
      }
      .nav a::after {
        content: ""; position: absolute; left: 0; bottom: -2px; width: 100%; height: 2px;
        background: var(--accent); transform: scaleX(0); transform-origin: left; transition: transform 0.28s ease;
      }
      .nav a:hover,
      .nav a.is-active { color: var(--text); }
      .nav a:hover::after,
      .nav a.is-active::after { transform: scaleX(1); }

      .btn,.btn-secondary,.btn-outline {
        display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 14px 24px;
        border-radius: 999px; font-weight: 600; transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
      }
      .btn:hover,.btn-secondary:hover,.btn-outline:hover { transform: translateY(-1px); }
      .btn { background: var(--accent); color: #fff; box-shadow: var(--shadow); }
      .btn-secondary { background: rgba(255,255,255,0.85); border: 1px solid rgba(255,255,255,0.55); color: #334132; backdrop-filter: blur(6px); }
      .btn-outline { background: #fff; border: 1px solid #afbdab; color: #344232; }

      .hero {
        position: relative;
        overflow: hidden;
        min-height: calc(100vh - var(--header-height));
        display: flex;
        align-items: center;
        padding: 84px 0 72px;
        background:
            linear-gradient(
            100deg,
            rgba(15, 20, 15, 0.78) 0%,
            rgba(15, 20, 15, 0.56) 38%,
            rgba(15, 20, 15, 0.38) 62%,
            rgba(15, 20, 15, 0.22) 100%
            ),
            url('./images/hero_image.webp') center center / cover no-repeat;
        }

      .hero h1,
      .hero .lead,
      .hero .badge,
      .hero-point,
      .hero-point span,
      .hero-point strong {
      text-shadow: 0 2px 10px rgba(0, 0, 0, 0.28);
      }
      .hero::before {
        content: ""; position: absolute; inset: 0;
        background: linear-gradient(180deg, rgba(246,245,241,0.03) 0%, rgba(246,245,241,0.04) 100%);
      }
      .hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr; gap: 24px; align-items: center; }
      .hero-content { max-width: 760px; }
      .hero-logo {
        width: 124px; background: rgba(255,255,255,0.9); padding: 14px; border-radius: 24px;
        border: 1px solid rgba(255,255,255,0.45); box-shadow: var(--shadow); margin-bottom: 24px;
      }
      .hero h1, .hero .lead { color: #fff; }
      .hero .lead { max-width: 700px; color: rgba(255,255,255,0.88); }
      .hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
      .hero-points {
        margin-top: 38px; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; max-width: 820px;
      }
      .hero-point {
        padding: 16px 18px; border-radius: 20px; background: rgba(255,255,255,0.14); backdrop-filter: blur(10px);
        border: 1px solid rgba(255,255,255,0.18); color: #fff;
      }
      .hero-point strong { display: block; font-size: 1rem; }
      .hero-point span { display: block; margin-top: 6px; font-size: 0.94rem; color: rgba(255,255,255,0.82); }

      .hero::after{
        content:"";
        position:absolute;
        right:26%;
        top:25%;
        width:150px;
        height:150px;
        background:
            radial-gradient(circle, rgba(255, 223, 160, 0.42) 0%, rgba(255, 205, 120, 0.22) 30%, rgba(255, 190, 90, 0.10) 52%, transparent 74%);
        filter: blur(7px);
        pointer-events:none;
        z-index:0;
        transform-origin:center;
        animation:candleFlicker 2.4s infinite;
        }

        @keyframes candleFlicker{
        0%{
            opacity:0.42;
            transform:translate3d(0, 0, 0) scale(0.96);
        }
        8%{
            opacity:0.58;
            transform:translate3d(2px, -1px, 0) scale(1.02);
        }
        16%{
            opacity:0.46;
            transform:translate3d(-1px, 1px, 0) scale(0.98);
        }
        27%{
            opacity:0.72;
            transform:translate3d(1px, -2px, 0) scale(1.08);
        }
        38%{
            opacity:0.5;
            transform:translate3d(-2px, 1px, 0) scale(1.01);
        }
        49%{
            opacity:0.78;
            transform:translate3d(2px, -1px, 0) scale(1.12);
        }
        61%{
            opacity:0.47;
            transform:translate3d(-1px, 2px, 0) scale(0.99);
        }
        74%{
            opacity:0.67;
            transform:translate3d(1px, -2px, 0) scale(1.06);
        }
        86%{
            opacity:0.45;
            transform:translate3d(-2px, 0, 0) scale(0.97);
        }
        100%{
            opacity:0.42;
            transform:translate3d(0, 0, 0) scale(0.96);
        }
        }

       .about-grid{
        display:grid;
        grid-template-columns: 0.95fr 1.05fr;
        gap: 44px;
        align-items: center;
        }

        .about-photo{
        border-radius: var(--radius-xl);
        overflow: hidden;
        border: 1px solid var(--line);
        box-shadow: 0 12px 30px rgba(58,78,52,0.05);
        background:#fff;
        }

        .about-photo img{
        width:100%;
        height:100%;
        min-height:520px;
        object-fit:cover;
        object-position:center;
        }

        .about-text h2{
        margin-top: 18px;
        }

        .about-text .lead{
        max-width: 100%;
        }

        @media (max-width: 1100px){
        .about-grid{
            grid-template-columns: 1fr;
            gap: 28px;
        }

        .about-photo img{
            min-height: 360px;
        }
        }

        @media (max-width: 640px){
        .about-photo img{
            min-height: 280px;
        }
        } 

      .grid-2 { display: grid; grid-template-columns: 1.02fr 0.98fr; gap: 38px; }
      .panel {
        background: #fff; border: 1px solid var(--line); border-radius: var(--radius-xl); padding: 34px;
        box-shadow: 0 12px 30px rgba(58,78,52,0.05);
      }
      .panel-soft { background: linear-gradient(180deg, #eef2eb 0%, #ffffff 100%); }
      .feature-stack { display: grid; gap: 18px; }
      .feature-row {
        padding: 22px 0; border-bottom: 1px solid rgba(219,226,215,0.85);
      }
      .feature-row:last-child { border-bottom: 0; }
      .feature-row h3 { font-size: 1.45rem; }
      .feature-row p { margin-top: 10px; color: #5d6a59; }

      .section-white { background: #fff; }
      .cards-grid-2,.cards-grid-3 { display: grid; gap: 24px; }
      .cards-grid-2 { grid-template-columns: repeat(2, 1fr); }
      .cards-grid-3 { grid-template-columns: repeat(3, 1fr); }

      .gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 32px; }
      .gallery-item {
        border: 1px solid var(--line); border-radius: var(--radius-xl); overflow: hidden; background: #fff;
        cursor: pointer; transition: transform 0.2s ease, box-shadow 0.2s ease;
      }
      .gallery-item:hover { transform: translateY(-4px); box-shadow: 0 18px 35px rgba(58,78,52,0.12); }
      .gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; }

      .lightbox { display: none; position: fixed; inset: 0; z-index: 999; background: rgba(0,0,0,0.85);
        align-items: center; justify-content: center; padding: 24px; }
      .lightbox.is-open { display: flex; }
      .lightbox-content { position: relative; max-width: 96vw; max-height: 90vh; display: flex;
        align-items: center; justify-content: center; }
      .lightbox-image { max-width: 100%; max-height: 100%; border-radius: 18px;
        box-shadow: 0 20px 60px rgba(0,0,0,0.5); }
      .lightbox-close, .lightbox-nav { position: absolute; border: none; background: rgba(0,0,0,0.45);
        color: #fff; width: 44px; height: 44px; border-radius: 50%; cursor: pointer;
        display: flex; align-items: center; justify-content: center; font-size: 1.3rem;
        transition: background 0.2s ease; }
      .lightbox-close:hover, .lightbox-nav:hover { background: rgba(0,0,0,0.65); }
      .lightbox-close { top: -22px; right: -22px; }
      .lightbox-prev { left: -22px; }
      .lightbox-next { right: -22px; }

      .service-card {
        background: var(--bg-alt); border: 1px solid var(--line); border-radius: var(--radius-xl); padding: 28px;
        box-shadow: 0 12px 30px rgba(58,78,52,0.05);
      }
      .service-top {
        display: flex; justify-content: space-between; gap: 16px; align-items: flex-end; padding-bottom: 20px;
        border-bottom: 1px solid #d9e1d5;
      }
      .service-meta { text-transform: uppercase; letter-spacing: 0.22em; color: #73806f; font-size: 0.78rem; margin-top: 8px; }
      .price-box {
        background: #fff; padding: 14px 16px; border-radius: 18px; text-align: right; box-shadow: 0 10px 24px rgba(58,78,52,0.05); min-width: 122px;
      }
      .price-box span { display: block; color: #6a7767; font-size: 0.9rem; }
      .price-box strong { font-size: 1.2rem; color: #334231; }
      .service-list,.bullet-list { list-style: none; padding: 0; margin: 24px 0 0; }
      .service-list li,.bullet-list li {
        position: relative; padding-left: 24px; color: #4f5d4d; margin-bottom: 12px;
      }
      .service-list li::before,.bullet-list li::before {
        content: ""; position: absolute; left: 0; top: 11px; width: 10px; height: 10px; border-radius: 50%; background: var(--accent-2);
      }
      .massage-card {
        display: flex; flex-direction: column; height: 100%; background: #fff; border: 1px solid var(--line);
        border-radius: var(--radius-xl); padding: 28px; box-shadow: 0 12px 30px rgba(58,78,52,0.05);
      }
      .massage-top { display: flex; justify-content: space-between; gap: 16px; align-items: flex-start; }
      .massage-top h3,
      .service-top > div:first-child {
        min-width: 0;
      }
      .massage-top h3 {
        flex: 1 1 auto;
        overflow-wrap: anywhere;
      }

      .massage-benefits-list{
        list-style: none;
        padding: 0;
        margin: 28px 0 0;
        display: grid;
        gap: 16px;
        }

        .massage-benefits-list li{
        position: relative;
        padding-left: 24px;
        color: #4f5d4d;
        font-size: 1.04rem;
        line-height: 1.7;
        }

        .massage-benefits-list li::before{
        content: "";
        position: absolute;
        left: 0;
        top: 11px;
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: var(--accent-2);
      }
      .price-tag {
        background: var(--accent-soft); padding: 12px 14px; border-radius: 16px; min-width: 110px; text-align: right;
        flex: 0 0 auto;
        max-width: 100%;
      }
      .price-tag span { display: block; font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); }
      .price-tag strong { color: #334131; }
      .duration { margin-top: 12px; font-size: 0.8rem; letter-spacing: 0.22em; text-transform: uppercase; color: #748070; }
      .card-action { margin-top: auto; padding-top: 14px; }

      .dual-grid { display: grid; grid-template-columns: 1.02fr 0.98fr; gap: 24px; }
      .benefit-list { display: grid; gap: 18px; margin-top: 28px; }
      .benefit-line {
        padding: 0 0 18px 0; border-bottom: 1px solid rgba(219,226,215,0.85); color: #51604f;
      }
      .benefit-line:last-child { border-bottom: 0; padding-bottom: 0; }

      .warm-card {
        background: var(--warm); border: 1px solid #ddd9d0; border-radius: var(--radius-xl); padding: 34px;
        box-shadow: 0 12px 30px rgba(89,76,63,0.04);
      }
      .warm-card h3,.warm-card li,.warm-card p { color: #6d635a; }
      .warm-card .badge { border-color: #e4ddd2; background: rgba(255,255,255,0.84); color: #7a6d61; }
      .warm-card li::before { background: #b9977f; }

      .cosmetics-intro{
        margin-bottom: 72px;
        }

        .cosmetics-services-header{
        margin-bottom: 40px;
        }

        .cosmetics-extra{
        margin-top: 24px;
      }

      .pricing-wrap {
        background: var(--bg-soft); border: 1px solid var(--line); border-radius: 36px; padding: 40px;
        box-shadow: 0 12px 30px rgba(58,78,52,0.05);
      }
      .pricing-columns { margin-top: 40px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
      .pricing-table { overflow: hidden; border-radius: 24px; border: 1px solid #d7dfd3; background: #fff; }
      .pricing-row { display: grid; grid-template-columns: 1fr auto auto; gap: 16px; padding: 16px 20px; align-items: center; }
      .pricing-row:not(:last-child) { border-bottom: 1px solid #e4e9e1; }
      .pricing-row span:nth-child(2) { color: #6c7969; }
      .pricing-row strong { color: #31402f; }

      .product-grid { display: grid; grid-template-columns: 1.02fr 0.98fr; gap: 32px; }
      .product-visual {
        position: relative; min-height: 100%; border-radius: var(--radius-xl); overflow: hidden; border: 1px solid var(--line);
        box-shadow: 0 12px 30px rgba(58,78,52,0.05); background: #fff;
      }
      .product-visual img { width: 100%; height: 100%; min-height: 420px; object-fit: cover; }
      .product-caption {
        position: absolute; left: 24px; right: 24px; bottom: 24px; padding: 18px 20px; border-radius: 22px;
        background: rgba(255,255,255,0.82); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.45);
      }
      .product-caption p { color: #5c6a59; margin-top: 8px; }

      .product-text{
        display: flex;
        flex-direction: column;
        justify-content: center;
        }

        .product-text .lead{
        max-width: 100%;
        }

      .reviews-section{
        background: var(--bg);
        }

        .reviews-grid{
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
        }

        .review-card{
        background: #fff;
        border: 1px solid var(--line);
        border-radius: var(--radius-xl);
        padding: 30px;
        box-shadow: 0 12px 30px rgba(58,78,52,0.05);
        }

        .review-top{
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        gap: 16px;
        padding-bottom: 18px;
        border-bottom: 1px solid rgba(219,226,215,0.85);
        }

        .review-top h3{
        font-size: 1.35rem;
        line-height: 1.15;
        }

        .review-meta{
        margin-top: 8px;
        font-size: 0.82rem;
        letter-spacing: 0.16em;
        text-transform: uppercase;
        color: #73806f;
        }

        .review-rating{
        text-align: right;
        flex: 0 0 auto;
        }

        .review-rating span{
        display: block;
        font-size: 1rem;
        letter-spacing: 0.14em;
        color: #b9977f;
        }

        .review-rating strong{
        display: block;
        margin-top: 6px;
        color: #31402f;
        font-size: 1rem;
        }

        .review-text{
        margin-top: 22px;
        color: #4f5d4d;
        font-size: 1.04rem;
        line-height: 1.8;
        }

        .reviews-action{
        margin-top: 28px;
        display: flex;
        justify-content: center;
        }

        @media (max-width: 860px){
        .reviews-grid{
            grid-template-columns: 1fr;
        }

        .review-top{
            flex-direction: column;
            align-items: flex-start;
        }

        .review-rating{
            text-align: left;
        }
    }

      .contact-grid { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 24px; }
      .contact-list { margin-top: 28px; display: grid; gap: 18px; font-size: 1.08rem; color: #51604f; }
      .contact-list strong { color: #2f3b2d; }
      .contact-actions { 
        margin-top: 28px; 
        display: flex; 
        flex-direction: row; 
        justify-content: center;
        align-items: center;
        gap: 14px; }
      .social_wrap{
        display: flex;
        flex-direction: row;
        gap: 14px;
        }
      .map-shell{
        position: relative;
        overflow: hidden;
        border: 1px solid var(--line);
        border-radius: var(--radius-xl);
        min-height: 520px;
        padding: 0;
        background: #e9efe6;
        box-shadow: 0 12px 30px rgba(58,78,52,0.05);
        }

        .map-shell iframe{
        display: block;
        width: 100%;
        height: 100%;
        min-height: 520px;
        border: 0;
        }

        .map-overlay-link{
        position: absolute;
        left: 50%;
        bottom: 22px;
        transform: translateX(-50%);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 14px 24px;
        border-radius: 999px;
        background: rgba(255,255,255,0.72);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border: 1px solid rgba(255,255,255,0.6);
        color: #2f3b2d;
        font-weight: 600;
        box-shadow: 0 10px 30px rgba(58,78,52,0.14);
        transition: transform 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
        z-index: 2;
        }

        .map-overlay-link:hover{
        transform: translateX(-50%) translateY(-2px);
        background: rgba(255,255,255,0.84);
        box-shadow: 0 16px 34px rgba(58,78,52,0.18);
        }


      .footer {
        position: relative;
        border-top: 1px solid var(--line);
        padding: 36px 0 ;
        background:
            linear-gradient(rgba(255,255,255,0.58), rgba(255,255,255,0.66)),
            url("./images/footer.webp") center center / cover no-repeat;
        }
      .footer-inner{
        display: flex;
        justify-content: space-between;
        gap: 20px;
        align-items: center;
        flex-wrap: wrap;
        color: #647161;
        font-size: 0.95rem;
        }
      .footer-title { font-size: 2rem; color: #2e3a2b; }
      .footer-right{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-end;
        min-width: 0;
      }
      .footer-left{
        display: flex;
        align-items: flex-start;
        gap: 24px;
        flex-wrap: wrap;
        min-width: 0;
      }
      .socials{
        display: flex;
        align-items: center;
        gap: 12px;
      }

      .footer-social-row{
        margin-top: 18px;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 14px;
        flex-wrap: nowrap;
        }


      .footer-social-text{
        margin: 0;
        color: #4d5a4a;
        font-size: 0.96rem;
      }
      .social-link {
        width: 42px; height: 42px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center;
        border: 1px solid #d6dfd2; background: #f7f9f6; color: #3f543f; transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
      }
      .social-link:hover { transform: translateY(-2px); background: var(--accent); color: #fff; }
      .by-link {
        position: relative;
        color: #4d5a4a;
        padding-bottom: 2px;
        display: inline-flex;
        align-items: center;
        gap: 10px;
        max-width: 100%;
        flex-wrap: wrap;
        overflow-wrap: anywhere;
      }
      .by-link-avatar {
        width: 24px;
        height: 24px;
        border-radius: 50%;
        object-fit: cover;
        flex: 0 0 auto;
      }
      .by-link::after {
        content: ""; position: absolute; left: 0; bottom: 0; width: 100%; height: 1px; background: currentColor;
        transform: scaleX(0); transform-origin: left; transition: transform 0.28s ease;
      }
      .by-link:hover::after { transform: scaleX(1); }

      .mobile-bar {
        display: none; position: fixed; left: 0; right: 0; bottom: 0; z-index: 90; padding: 12px; background: rgba(246,245,241,0.96);
        border-top: 1px solid var(--line); backdrop-filter: blur(12px);
      }
      .mobile-bar-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
      .mobile-toggle {
        display: none; width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--line-strong); background: #fff; cursor: pointer;
        align-items: center; justify-content: center; flex-direction: column; gap: 4px;
        transition: transform 0.2s ease;
      }
      .mobile-toggle span {
        width: 18px; height: 2px; background: var(--accent); border-radius: 999px; transition: transform 0.2s ease, opacity 0.2s ease;
      }
      .mobile-toggle.is-open span:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
      }
      .mobile-toggle.is-open span:nth-child(2) {
        opacity: 0;
      }
      .mobile-toggle.is-open span:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
      }

      @media (max-width: 1100px) {
        .grid-2,.dual-grid,.product-grid,.contact-grid { grid-template-columns: 1fr; }
        .cards-grid-3 { grid-template-columns: repeat(2, 1fr); }
        .gallery-grid { grid-template-columns: repeat(2, 1fr); }
      }

      @media (max-width: 860px) {
        .nav {
          display: none; position: absolute; top: calc(100% + 8px); left: 16px; right: 16px; flex-direction: column; align-items: stretch; gap: 8px;
          background: rgba(255,255,255,0.98); border: 1px solid var(--line); border-radius: 22px; padding: 14px; box-shadow: var(--shadow);
        }
        .nav.is-open { display: flex; }
        .nav a { padding: 10px 12px; border-radius: 14px; }
        .nav a:hover { background: var(--bg-soft); }
        .nav a::after { bottom: 6px; left: 12px; width: calc(100% - 24px); }
        .mobile-toggle { display: inline-flex; }
        .topbar-inner { position: relative; }
        .topbar .btn { display: none; }
        .hero-points,.cards-grid-2,.cards-grid-3,.pricing-columns { grid-template-columns: 1fr; }
        .service-top,.massage-top,.footer-inner { align-items: flex-start; }
        .pricing-row { grid-template-columns: 1fr auto; }
        .pricing-row span:nth-child(2) { grid-column: 1 / 2; font-size: 0.9rem; }
        .pricing-row strong { grid-column: 2 / 3; grid-row: 1 / span 2; align-self: center; }
      }

      @media (max-width: 640px) {
        .section { padding: 72px 0; }
        .container { width: min(var(--container), calc(100% - 24px)); }
        .panel,.service-card,.massage-card,.warm-card,.pricing-wrap,.map-shell { padding: 22px; }
        .hero { min-height: auto; padding-top: 56px; padding-bottom: 56px; background-position: 64% center; }
        .hero-point { padding: 14px 16px; }
        .product-caption { display: none;}
        .service-top { flex-direction: column; align-items: flex-start; }
        .massage-top {
          flex-direction: column;
          align-items: flex-start;
        }
        .price-tag {
          text-align: left;
        }
        .brand-title { font-size: 1.2rem; }
        .badge { font-size: 13px; }
        .lead { font-size: 1rem; }
        .mobile-bar { display: block; }
        .gallery-grid { grid-template-columns: 1fr; }
        .contact-actions { 
          margin-top: 28px; 
          display: flex; 
          flex-direction: column; 
          justify-content: center;
          align-items: center;
          gap: 14px; 
        }
        .callbtn{
          width: 80%;
          justify-content: center;
        }

        .social_wrap{
        flex-direction: column;
        width: 80%;
        }
        .footer { padding-bottom: 100px; }
        .footer-title { 
          font-size: 1.5rem;
          text-align: center;
          }
        .footer-social-row{
          flex-direction: column;
          gap: 8px;
        }
        .footer-left{
            width: 100%;
            flex-direction: column;
            align-items: flex-start;
            gap: 14px;
        }

        .footer-right{
            width: 100%;
            justify-content: flex-start;
            align-items: flex-start;
        }
      }

      .back-to-top{
  position: fixed;
  right: 22px;
  bottom: 92px;
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 50%;
  background: rgba(67, 90, 67, 0.92);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 14px 30px rgba(58,78,52,0.18);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease, background 0.2s ease;
  z-index: 120;
}

.back-to-top:hover{
  background: #314231;
  transform: translateY(8px);
}

.back-to-top.is-visible{
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top svg{
  width: 22px;
  height: 22px;
}

@media (max-width: 640px){
  .back-to-top{
    right: 16px;
    bottom: 92px;
    width: 48px;
    height: 48px;
  }
}

/* LEGAL */

.legal-page {
  max-width: 940px;
}

.legal-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 0 0 28px;
}

.legal-nav a {
  text-decoration: none;
  color: inherit;
  padding: 10px 16px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 999px;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.legal-nav a:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 0, 0, 0.2);
  background: rgba(0, 0, 0, 0.03);
}

.legal-block {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 24px;
  padding: 32px;
  margin-top: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.legal-block h2 {
  margin-bottom: 18px;
  font-size: 2rem;
}

.legal-block p {
  margin-top: 14px;
  line-height: 1.8;
  color: #4b4b4b;
}

.legal-list {
  margin: 14px 0 0;
  padding-left: 20px;
  color: #4b4b4b;
  line-height: 1.8;
}

.legal-back {
  margin-top: 28px;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 18px;
}

.footer-legal a {
  color: inherit;
  text-decoration: none;
  position: relative;
}

.footer-legal a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width 0.3s ease;
}

.footer-legal a:hover::after {
  width: 100%;
}

#ochrana-osobnich-udaju,
#cookies {
  scroll-margin-top: 120px;
}

@media (max-width: 768px) {
  .legal-block {
    padding: 24px;
    border-radius: 20px;
  }

  .legal-block h2 {
    font-size: 1.6rem;
  }
}
