:root{
  --bg-pink:#efe1e3;
  --bg-pink-2:#f2e7ea;
  --ink:#101010;
  --muted:#6a6a6a;
  --accent:#b88f9a;      /* mauve */
  --line:#caaab2;
  --card:#ffffff;
  --shadow: 0 10px 22px rgba(0,0,0,.10);
}

*{ box-sizing:border-box; }
html,body{ margin:0; padding:0; }
body{
  font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--ink);
  background:#fff;
}

/* HEADER */
.site-header{
  background: var(--bg-pink);
  border-bottom: 1px solid rgba(0,0,0,.06);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner{
  max-width: 1280px;
  margin: 0 auto;
  padding: 14px 18px 10px;
}

.header-top{
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
}

.social{
  display:flex;
  align-items:center;
  gap:10px;
  justify-self:start;
}

.icon-btn{
  width:30px;
  height:30px;
  border-radius:50%;
  display:grid;
  place-items:center;
  text-decoration:none;
  color:#111;
}

.icon-btn svg{
  width:18px;
  height:18px;
  fill:#111;
}

.brand{
  text-align:center;
}

.brand-logo{
  font-family:"Playfair Display", serif;
  font-size: 44px;
  line-height: 1;
  color:#3e2f33;
}

.brand-sub{
  margin-top:4px;
  font-size:10px;
  letter-spacing:4px;
  color:#6e5a60;
}

.menu-toggle{
  justify-self:end;
  width:44px;
  height:44px;
  border:0;
  background:transparent;
  display:none;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  gap:5px;
  cursor:pointer;
}

.menu-toggle span{
  display:block;
  width:22px;
  height:2px;
  background:#222;
  border-radius:2px;
}

.nav{
  margin-top: 16px;
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap:22px;
}

.nav-link{
  font-size:11px;
  letter-spacing:.5px;
  text-decoration:none;
  color:#222;
  padding:8px 0;
  white-space:nowrap;
}

.nav-link.is-active{
  font-weight:600;
}

/* HERO */
.hero{ width:100%; background:#ddd; }
.hero-img{
  display:block;
  width:100%;
  height: 520px;
  object-fit: cover;
}

/* COOKIE */
.cookie{
  position:fixed;
  right:18px;
  bottom:18px;
  width:min(380px, calc(100vw - 36px));
  background:var(--bg-pink-2);
  border:1px solid rgba(0,0,0,.10);
  border-radius:10px;
  padding:16px 16px 14px;
  box-shadow: var(--shadow);
  z-index: 50;
}
.cookie-title{
  font-weight:600;
  margin-bottom:8px;
}
.cookie-text{
  font-size:12px;
  line-height:1.45;
  color:#333;
}
.cookie-btn{
  margin-top:14px;
  width:100%;
  height:40px;
  border-radius:999px;
  border:0;
  background:#111;
  color:#fff;
  font-weight:600;
  letter-spacing:.5px;
  cursor:pointer;
}
.cookie.is-hidden{ display:none; }

/* SECTIONS */
.section{
  padding: 70px 22px;
}
.section-essence{ padding-top: 55px; }
.section-title-line{
  max-width:1200px;
  margin:0 auto 40px;
  display:flex;
  align-items:center;
  gap:22px;
}
.section-title-line .line{
  height:1px;
  background:var(--line);
  flex:1;
}
.section-title{
  font-family:"Playfair Display", serif;
  font-weight:500;
  color: var(--accent);
  margin:0;
  font-size: 44px;
}
.section-title.small{ font-size: 24px; color:#111; }
.section-title-line.is-small{
  margin-bottom: 32px;
}

.two-col{
  max-width:1200px;
  margin: 0 auto;
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  align-items:center;
  gap: 60px;
}

.circle-media{
  width: min(520px, 78vw);
  aspect-ratio: 1 / 1;
  border-radius: 999px;
  overflow:hidden;
  margin: 0 auto;
}
.circle-media img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.text-block{
  text-align:center;
}
.h3-accent{
  font-family:"Playfair Display", serif;
  font-weight:500;
  color: var(--accent);
  font-size: 44px;
  margin: 0 0 18px;
}
.centered{
  max-width: 520px;
  margin: 0 auto;
  font-size: 13px;
  line-height: 1.9;
  color:#222;
}
.pill-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  margin-top: 22px;
  width: 160px;
  height: 44px;
  border-radius:999px;
  background:#ead7dc;
  color:#111;
  text-decoration:none;
  font-weight:600;
  letter-spacing:.6px;
  font-size: 11px;
  border:1px solid rgba(0,0,0,.08);
}

/* DIFF (pink background area) */
.section-diff{
  background: var(--bg-pink);
  padding-top: 45px;
  padding-bottom: 60px;
}
.diff-grid{
  max-width: 980px;
  margin: 0 auto;
  display:flex;
  flex-direction:column;
  gap: 54px;
}
.diff-row{
  display:grid;
  grid-template-columns: 280px 1fr;
  gap: 46px;
  align-items:center;
}
.diff-row.reverse{
  grid-template-columns: 1fr 280px;
}
.circle-media.sm{
  width: 260px;
  aspect-ratio:1/1;
}
.diff-row.reverse .circle-media.sm{ order:2; }
.diff-row.reverse .diff-text{ order:1; text-align:left; }

.diff-text h3{
  font-family:"Playfair Display", serif;
  font-weight:500;
  font-size: 22px;
  margin: 0 0 10px;
}
.diff-text p{
  margin:0;
  font-size: 11px;
  line-height:1.8;
  color:#222;
  max-width: 520px;
}
.diff-row:not(.reverse) .diff-text{ text-align:right; }
.diff-row:not(.reverse) .diff-text p{ margin-left:auto; }

/* REVIEWS */
.section-reviews{
  background:#fff;
  padding-top: 60px;
  padding-bottom: 55px;
}
.reviews-title{
  font-family:"Playfair Display", serif;
  font-weight:500;
  text-align:center;
  margin:0 0 18px;
  font-size: 26px;
}
.rating{
  display:flex;
  justify-content:center;
  margin-bottom: 26px;
}
.fb-badge{
  display:flex;
  gap:10px;
  align-items:center;
  color:#333;
  font-size:12px;
}
.fb-dot{
  width:18px;height:18px;
  border-radius:50%;
  background:#1877F2;
  color:#fff;
  display:grid;
  place-items:center;
  font-weight:700;
  font-family: system-ui, sans-serif;
  font-size: 12px;
}
.rating-name{ font-weight:500; }
.rating-meta{ font-size:12px; }
.rating-small{ font-size:10px; color:#666; }

.carousel{
  max-width: 980px;
  margin: 0 auto;
  display:grid;
  grid-template-columns: 50px 1fr 50px;
  align-items:center;
  gap: 18px;
}
.car-arrow{
  border:0;
  background:transparent;
  font-size: 26px;
  cursor:pointer;
  color:#666;
}
.car-viewport{
  overflow:hidden;
}
.car-track{
  display:flex;
  gap: 22px;
  transition: transform .35s ease;
  will-change: transform;
}
.review-card{
  width: 240px;
  min-width: 240px;
  background: var(--card);
  box-shadow: var(--shadow);
  border-radius: 2px;
  padding: 18px 16px 14px;
  text-align:center;
}
.avatar{
  width:60px;height:60px;
  border-radius:50%;
  background:#f1f1f1;
  margin: 0 auto 10px;
  display:grid;
  place-items:center;
  font-weight:600;
  color:#999;
  font-size: 22px;
}
.rec{
  font-size:10px;
  color:#666;
  margin-bottom: 10px;
}
.review-text{
  font-size:11px;
  line-height:1.6;
  color:#222;
  min-height: 72px;
  margin: 0 0 10px;
}
.review-link{
  font-size:10px;
  color:#8a6b74;
  text-decoration:none;
}
.review-foot{
  margin-top: 12px;
  font-size:10px;
  color:#666;
}

.dots{
  margin-top: 14px;
  display:flex;
  justify-content:center;
  gap: 8px;
}
.dot{
  width:6px;height:6px;
  background:#111;
  border-radius:50%;
  opacity:.25;
}
.dot.is-active{ opacity:.9; }

/* QUOTE BANNER */
.quote-banner{
  position:relative;
  height: 260px;
  overflow:hidden;
}
.quote-bg{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.quote-overlay{
  position:absolute; inset:0;
  background: rgba(0,0,0,.45);
}
.quote-content{
  position:absolute; inset:0;
  display:grid;
  place-items:center;
  text-align:center;
  color:#fff;
  padding: 0 18px;
}
.quote-top{
  font-size: 52px;
  line-height: 1;
  opacity:.9;
  margin-bottom: -10px;
}
.quote-content h3{
  margin:0;
  font-family:"Playfair Display", serif;
  font-weight:500;
  font-size: 28px;
}
.quote-line{
  width: 26px;
  height:1px;
  background:#fff;
  margin: 14px auto 10px;
  opacity:.8;
}
.quote-brand{
  font-size:10px;
  letter-spacing:.7px;
  opacity:.9;
}

/* PRESS + NEWSLETTER */
.section-press{
  background: var(--bg-pink);
  text-align:center;
  padding-top: 42px;
  padding-bottom: 48px;
}
.press-top{
  font-size: 14px;
  margin-bottom: 10px;
}
.press-logos{
  display:flex;
  justify-content:center;
  gap: 18px;
  margin-bottom: 28px;
}
.press-logos img{
  height: 34px;
  width:auto;
  object-fit:contain;
  background:#fff;
  padding: 6px;
  border: 1px solid rgba(0,0,0,.08);
}
.newsletter-title{
  font-family:"Playfair Display", serif;
  font-weight:500;
  margin: 0 0 18px;
  font-size: 26px;
}
.newsletter{
  display:flex;
  justify-content:center;
  gap: 12px;
  align-items:center;
}
.newsletter input{
  width: 320px;
  height: 34px;
  border: 1px solid rgba(0,0,0,.18);
  background:transparent;
  outline:none;
  padding: 0 10px;
}
.newsletter button{
  height: 34px;
  padding: 0 18px;
  border-radius:999px;
  border:0;
  background:#111;
  color:#fff;
  font-size:10px;
  font-weight:600;
  letter-spacing:.6px;
  cursor:pointer;
}

/* FOOTER */
.site-footer{
  background:#111;
  color:#fff;
}
.footer-inner{
  max-width: 1200px;
  margin: 0 auto;
  padding: 28px 22px 40px;
  text-align:center;
}
.footer-social{
  display:flex;
  justify-content:center;
  gap: 12px;
  margin-bottom: 10px;
}
.footer-ico{
  width:22px;height:22px;
  display:grid;place-items:center;
  opacity:.9;
  text-decoration:none;
}
.footer-ico svg{ width:18px;height:18px; fill:#fff; }

.footer-copy{
  font-size:10px;
  opacity:.85;
  margin: 10px 0 14px;
}
.footer-nav{
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap: 16px;
  font-size:10px;
  opacity:.9;
}
.footer-nav a{
  color:#fff;
  text-decoration:none;
}
.footer-line{
  margin: 18px auto 0;
  width: 30px;
  height:1px;
  background:#fff;
  opacity:.35;
}

/* Responsive */
@media (max-width: 980px){
  .nav{ gap:14px; }
  .hero-img{ height: 380px; }
  .two-col{ grid-template-columns: 1fr; gap: 36px; }
  .h3-accent{ font-size: 34px; }
  .section-title{ font-size: 34px; }
  .diff-row, .diff-row.reverse{
    grid-template-columns: 1fr;
    text-align:center !important;
  }
  .diff-row.reverse .circle-media.sm{ order:0; }
  .diff-row:not(.reverse) .diff-text,
  .diff-row.reverse .diff-text{ text-align:center; }
  .diff-row:not(.reverse) .diff-text p{ margin:0 auto; }
  .carousel{ grid-template-columns: 40px 1fr 40px; }
  .review-card{ width: 230px; min-width:230px; }
}

/* ===== Csomagok/árak oldal ===== */
.book-top{
  background:#fff;
  text-align:center;
  padding: 58px 22px 44px;
}
.book-top h1{
  font-family:"Playfair Display", serif;
  font-weight:500;
  color: var(--accent);
  margin:0;
  font-size: 44px;
}
.book-sub{
  margin-top:6px;
  font-size:10px;
  color:#777;
}
.book-pills{
  margin-top: 26px;
  display:grid;
  gap: 12px;
  max-width: 520px;
  margin-left:auto;
  margin-right:auto;
}
.book-pill{
  display:flex;
  align-items:center;
  justify-content:center;
  height: 32px;
  border-radius:999px;
  background:#e9dbe0;
  border:1px solid rgba(0,0,0,.05);
  text-decoration:none;
  color:#111;
  font-size: 9px;
  letter-spacing:.6px;
  font-weight:600;
}

.prices-wrap{
  background: var(--bg-pink);
  padding: 40px 22px 60px;
}
.price-block{
  max-width: 920px;
  margin: 0 auto;
  padding: 6px 0 0;
}
.price-block h3{
  font-family:"Playfair Display", serif;
  font-weight:500;
  margin: 6px 0 6px;
  font-size: 20px;
}
.price-meta{
  font-size: 9px;
  color:#666;
  margin-bottom: 16px;
}
.price-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items:start;
}
.price-grid ul{
  margin:0;
  padding-left: 0;
  list-style:none;
  font-size: 10px;
  line-height: 2.3;
}
.price-grid li{ color:#111; }
.price-sep{
  height:1px;
  background: rgba(184,143,154,.45);
  margin: 24px 0 18px;
}

.treatments{
  max-width: 920px;
  margin: 22px auto 0;
}
.treat-title{
  font-family:"Playfair Display", serif;
  font-weight:500;
  margin: 0 0 12px;
  font-size: 22px;
}
.treat-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}
.treat-col h3{
  font-size: 11px;
  margin: 14px 0 6px;
  font-weight:700;
}
.treat-col p{
  margin:0 0 10px;
  font-size: 9px;
  line-height: 1.9;
  color:#333;
}

/* alsó képcsík */
.bottom-strip{
  display:grid;
  grid-template-columns: repeat(5, 1fr);
  height: 150px;
  overflow:hidden;
}
.bottom-strip img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

/* ===== Rólunk oldal ===== */
.about-wrap{
  background:#fff;
  padding: 46px 22px 70px;
}
.about-top, .about-bottom{
  max-width: 980px;
  margin: 0 auto;
  display:grid;
  grid-template-columns: 420px 1fr;
  align-items:center;
  gap: 70px;
  padding-top: 30px;
}
.about-bottom{
  grid-template-columns: 1fr 420px;
  padding-top: 62px;
}
.about-circle{
  width: 380px;
  margin: 0 auto;
}
.about-text{
  text-align:center;
  max-width: 420px;
  margin: 0 auto;
}
.about-text h3{
  font-family:"Playfair Display", serif;
  font-weight:500;
  color: var(--accent);
  font-size: 28px;
  margin: 0 0 10px;
}
.about-text p{
  font-size: 10px;
  line-height: 1.9;
  color:#333;
  margin:0;
}

/* ===== Galéria oldal ===== */
.gallery-page{
  background: var(--bg-pink);
  padding: 42px 22px 0;
}
.gallery-frame{
  max-width: 980px;
  margin: 0 auto;
  position:relative;
  padding: 14px 0 10px;
}
.gallery-three{
  display:grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 18px;
  align-items:stretch;
}
.g-panel{
  height: 520px;
  background-size: cover;
  background-position:center;
  border: 1px solid rgba(0,0,0,.12);
}
.g-panel.dim{
  opacity:.35;
}
.g-arrow{
  position:absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 52px;
  border:0;
  background: rgba(0,0,0,.25);
  color:#fff;
  font-size: 22px;
  cursor:pointer;
}
.g-arrow.left{ left: 6px; }
.g-arrow.right{ right: 6px; }

.gallery-thumbs{
  max-width: 980px;
  margin: 10px auto 0;
  display:flex;
  gap: 6px;
  padding: 8px 0 16px;
  overflow:auto;
}
.thumb{
  width: 44px;
  height: 34px;
  border: 2px solid rgba(255,255,255,.0);
  background-size: cover;
  background-position:center;
  cursor:pointer;
  flex: 0 0 auto;
}
.thumb.is-active{
  border-color: rgba(0,0,0,.35);
}

/* responsive */
@media (max-width: 980px){
  .price-grid, .treat-grid{ grid-template-columns: 1fr; gap: 24px; }
  .bottom-strip{ grid-template-columns: repeat(3, 1fr); height: 120px; }
  .about-top, .about-bottom{ grid-template-columns: 1fr; gap: 26px; }
  .gallery-three{ grid-template-columns: 1fr; }
  .g-panel{ height: 360px; }
}

/* =========================
   TABLET
========================= */
@media (max-width: 1024px){
  .header-inner{
    padding: 12px 16px 10px;
  }

  .brand-logo{
    font-size: 36px;
  }

  .brand-sub{
    font-size: 9px;
    letter-spacing: 3px;
  }

  .nav{
    gap: 14px;
    margin-top: 14px;
  }

  .nav-link{
    font-size: 10px;
  }

  .hero-img{
    height: 360px;
  }

  .section{
    padding: 52px 16px;
  }

  .section-title{
    font-size: 34px;
  }

  .h3-accent{
    font-size: 32px;
  }

  .two-col{
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .diff-row,
  .diff-row.reverse{
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .diff-row .diff-text,
  .diff-row.reverse .diff-text{
    text-align:center;
  }

  .diff-row .diff-text p,
  .diff-row.reverse .diff-text p{
    margin:0 auto;
  }

  .about-top,
  .about-bottom{
    grid-template-columns: 1fr;
    gap: 28px;
    padding-top: 30px;
  }

  .about-circle{
    width: min(360px, 82vw);
  }

  .price-grid,
  .treat-grid{
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .gallery-three{
    grid-template-columns: 1fr;
  }

  .g-panel{
    height: 420px;
  }

  .g-panel.dim{
    display:none;
  }

  .bottom-strip{
    grid-template-columns: repeat(3, 1fr);
    height: 120px;
  }
}

/* =========================
   MOBILE
========================= */
@media (max-width: 768px){
  .site-header{
    position: sticky;
  }

  .header-inner{
    padding: 10px 14px;
  }

  .header-top{
    grid-template-columns: auto 1fr auto;
    gap: 10px;
  }

  .social{
    gap: 6px;
  }

  .icon-btn{
    width:28px;
    height:28px;
  }

  .brand{
    text-align:center;
  }

  .brand-logo{
    font-size: 28px;
  }

  .brand-sub{
    font-size: 8px;
    letter-spacing: 2.5px;
  }

  .menu-toggle{
    display:flex;
  }

  .nav{
    display:none;
    flex-direction:column;
    align-items:flex-start;
    gap:0;
    margin-top: 12px;
    padding: 10px 0 4px;
    border-top: 1px solid rgba(0,0,0,.08);
  }

  .nav.is-open{
    display:flex;
  }

  .nav-link{
    width:100%;
    font-size:12px;
    padding:12px 2px;
    border-bottom: 1px solid rgba(0,0,0,.06);
  }

  .hero-img{
    height: 240px;
  }

  .section{
    padding: 40px 14px;
  }

  .section-title-line{
    gap: 12px;
    margin-bottom: 28px;
  }

  .section-title{
    font-size: 26px;
    text-align:center;
  }

  .section-title.small{
    font-size: 22px;
  }

  .h3-accent{
    font-size: 26px;
  }

  .centered{
    font-size: 13px;
    line-height: 1.7;
  }

  .circle-media{
    width: min(320px, 86vw);
  }

  .circle-media.sm{
    width: min(240px, 72vw);
  }

  .review-card{
    width: 220px;
    min-width: 220px;
  }

  .carousel{
    grid-template-columns: 32px 1fr 32px;
    gap: 8px;
  }

  .car-arrow{
    font-size: 24px;
  }

  .quote-banner{
    height: 220px;
  }

  .quote-content h3{
    font-size: 22px;
    line-height: 1.3;
  }

  .newsletter{
    flex-direction:column;
    gap:10px;
  }

  .newsletter input{
    width:100%;
    max-width: 320px;
  }

  .newsletter button{
    width:100%;
    max-width: 320px;
  }

  .book-top h1{
    font-size: 30px;
  }

  .book-pills{
    max-width:100%;
  }

  .book-pill{
    height:40px;
    font-size:10px;
    text-align:center;
    padding:0 12px;
  }

  .price-block h3{
    font-size: 28px;
    line-height: 1.2;
  }

  .price-meta{
    font-size: 11px;
    line-height: 1.5;
  }

  .price-grid{
    gap: 8px;
  }

  .price-grid ul{
    font-size: 13px;
    line-height: 1.9;
  }

  .treat-title{
    font-size: 28px;
  }

  .treat-col h3{
    font-size: 14px;
  }

  .treat-col p{
    font-size: 12px;
    line-height: 1.7;
  }

  .about-text h3{
    font-size: 24px;
  }

  .about-text p{
    font-size: 12px;
    line-height: 1.8;
  }

  .g-panel{
    height: 300px;
  }

  .gallery-thumbs{
    gap: 5px;
  }

  .thumb{
    width: 54px;
    height: 42px;
  }

  .bottom-strip{
    grid-template-columns: repeat(2, 1fr);
    height: auto;
  }

  .bottom-strip img{
    aspect-ratio: 1 / 1;
  }

  .footer-inner{
    padding: 24px 14px 34px;
  }

  .footer-nav{
    flex-direction:column;
    gap: 10px;
    align-items:center;
  }

  .footer-copy{
    font-size: 11px;
    line-height: 1.6;
  }
}

/* =========================
   VERY SMALL MOBILE
========================= */
@media (max-width: 480px){
  .brand-logo{
    font-size: 24px;
  }

  .brand-sub{
    font-size: 7px;
    letter-spacing: 2px;
  }

  .hero-img{
    height: 210px;
  }

  .section-title{
    font-size: 24px;
  }

  .h3-accent{
    font-size: 24px;
  }

  .price-block h3{
    font-size: 24px;
  }

  .g-panel{
    height: 260px;
  }
}