/* Horváth Anna Masszázs — főstílus */
:root{
  --bg:#fbf8f5;
  --bg-soft:#f4ede4;
  --ink:#2a2522;
  --ink-soft:#5a4f48;
  --muted:#8a7d73;
  --accent:#b08968;
  --accent-dark:#8a6649;
  --gold:#d4a373;
  --white:#ffffff;
  --radius:18px;
  --shadow:0 20px 60px -25px rgba(80,55,30,.25);
}

*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;overflow-x:hidden;max-width:100%}
body{
  font-family:'Inter',system-ui,sans-serif;
  background:var(--bg);
  color:var(--ink);
  line-height:1.65;
  font-weight:400;
  font-size:17px;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
  max-width:100%;
  width:100%;
}
img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}

h1,h2,h3{font-family:'Cormorant Garamond',serif;font-weight:500;line-height:1.15;letter-spacing:-.01em}
h1{font-size:clamp(2.4rem,6vw,4.5rem)}
h2{font-size:clamp(1.9rem,3.6vw,2.8rem);margin-bottom:.5rem}
h3{font-size:1.35rem}

.container{max-width:1180px;margin:0 auto;padding:0 1.5rem}
.section{padding:5.5rem 0}
.section-head{text-align:center;max-width:680px;margin:0 auto 3rem}
.section-head h2{font-size:clamp(2.1rem,4vw,3.2rem)}
.section-head .lead{font-size:1.15rem;line-height:1.6;margin-top:.8rem}
.section-head.light{color:var(--white)}
.eyebrow{
  text-transform:uppercase;letter-spacing:.25em;font-size:.78rem;
  color:var(--accent);font-weight:500;margin-bottom:.85rem;
}
.hero-eyebrow{
  text-transform:uppercase;letter-spacing:.4em;font-size:1.3rem;
  color:#e9c79f;font-weight:600;margin-bottom:1.5rem;
  display:inline-flex;align-items:center;gap:1rem;
}
.hero-eyebrow::before,.hero-eyebrow::after{
  content:'';display:inline-block;width:32px;height:1px;
  background:#e9c79f;opacity:.7;
}
.lead{color:var(--ink-soft);font-size:1.1rem;margin-top:.6rem;line-height:1.65}
.muted{color:var(--muted)}

/* NAV */
.nav{
  position:sticky;top:0;z-index:50;
  background:rgba(251,248,245,.85);
  backdrop-filter:blur(12px);
  border-bottom:1px solid rgba(0,0,0,.05);
}
.nav-inner{display:flex;align-items:center;justify-content:space-between;padding:1rem 1.5rem}
.logo{font-family:'Cormorant Garamond',serif;font-size:1.5rem;font-weight:600;letter-spacing:.02em}
.logo span{color:var(--accent);font-weight:400;margin-left:.2em}
.nav-links{display:flex;gap:2rem;list-style:none;align-items:center}
.nav-links a{font-size:1rem;color:var(--ink-soft);transition:color .2s;font-weight:500}
.nav-links a:hover{color:var(--accent)}
.nav-toggle{display:none;background:none;border:none;font-size:1.5rem;cursor:pointer}

/* BUTTONS */
.btn{
  display:inline-block;padding:.95rem 2rem;border-radius:999px;
  font-weight:500;font-size:.95rem;letter-spacing:.03em;
  transition:all .25s ease;cursor:pointer;border:none;
  font-family:inherit;
}
.btn-primary{background:var(--accent);color:var(--white)}
.btn-primary:hover{background:var(--accent-dark);transform:translateY(-2px);box-shadow:0 10px 30px -10px rgba(176,137,104,.6)}
.btn-ghost{background:rgba(255,255,255,.15);color:var(--white);border:1px solid rgba(255,255,255,.4)}
.btn-ghost:hover{background:rgba(255,255,255,.25)}
.btn-small{padding:.55rem 1.2rem;font-size:.85rem;background:var(--accent);color:var(--white)}
.btn-small:hover{background:var(--accent-dark);color:var(--white)!important}
.btn-large{padding:1.1rem 2.5rem;font-size:1.05rem;width:100%;margin-top:.5rem}

/* HERO - split layout */
.hero{
  position:relative;height:88vh;max-height:760px;min-height:540px;
  display:grid;grid-template-columns:1fr 1fr;
  overflow:hidden;color:var(--white);
  background:linear-gradient(135deg,#3a302a 0%,#2a2522 100%);
}
.hero-image-side{
  position:relative;overflow:hidden;
  background:#2a2522;
}
.hero-image-side img{
  width:100%;height:100%;object-fit:cover;object-position:center 12%;
  display:block;
}
.hero-text-side{
  display:flex;align-items:center;justify-content:center;
  padding:4rem 3rem;position:relative;
}
.hero-text-side::before{
  content:'';position:absolute;inset:0;
  background:radial-gradient(ellipse at 30% 50%, rgba(176,137,104,.12) 0%, transparent 70%);
  pointer-events:none;
}
.hero-text-inner{max-width:520px;position:relative;z-index:2}
.hero-eyebrow{color:var(--gold)}
.hero h1{color:var(--white);margin-bottom:1rem}
.hero-tagline{font-size:1.35rem;color:rgba(255,255,255,.88);margin-bottom:2.5rem;font-weight:400;line-height:1.5}
.hero-actions{display:flex;gap:1rem;flex-wrap:wrap}

/* SERVICES - 5 egymás mellett */
.services-grid{
  display:grid;grid-template-columns:repeat(5,1fr);
  gap:1.25rem;
}
.service-card{
  background:var(--white);border-radius:var(--radius);
  padding:2.25rem 1.6rem;box-shadow:var(--shadow);
  transition:transform .25s,box-shadow .25s;
  border:1px solid rgba(0,0,0,.04);
  display:flex;flex-direction:column;
}
.service-card:hover{transform:translateY(-6px);box-shadow:0 30px 70px -25px rgba(80,55,30,.35)}
.service-card h3{margin-bottom:1rem;color:var(--ink);font-size:1.55rem;font-weight:600;line-height:1.25}
.service-desc{color:var(--ink-soft);font-size:1.05rem;line-height:1.7}
.service-icon{width:54px;height:54px;border-radius:50%;background:var(--bg-soft);display:flex;align-items:center;justify-content:center;color:var(--accent);font-size:1.5rem;margin-bottom:1.3rem}

/* PRICES */
.section-prices{background:var(--bg-soft)}
.prices-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:1.5rem;max-width:880px;margin:0 auto}
.price-card{
  background:var(--white);border-radius:var(--radius);
  padding:2.5rem 1.5rem;text-align:center;
  box-shadow:var(--shadow);
  border:1px solid rgba(0,0,0,.04);
  transition:transform .25s,box-shadow .25s;
  position:relative;
}
.price-card.featured{transform:scale(1.04);border:2px solid var(--accent)}
.price-card.featured::before{
  content:'Népszerű';position:absolute;top:-12px;left:50%;transform:translateX(-50%);
  background:var(--accent);color:#fff;font-size:.7rem;letter-spacing:.15em;
  padding:.3rem .8rem;border-radius:999px;text-transform:uppercase;font-weight:500;
}
.price-card:hover{transform:translateY(-6px);box-shadow:0 30px 70px -25px rgba(80,55,30,.35)}
.price-card.featured:hover{transform:scale(1.04) translateY(-6px)}
.price-duration{font-family:'Cormorant Garamond',serif;font-size:2.2rem;font-weight:500;color:var(--ink);margin-bottom:.5rem}
.price-amount{font-family:'Cormorant Garamond',serif;font-size:3rem;font-weight:600;color:var(--accent);line-height:1}
.price-note{color:var(--muted);font-size:.92rem;margin-top:.7rem;text-transform:uppercase;letter-spacing:.12em;font-weight:500}

/* ABOUT */
.section-about{background:var(--bg-soft)}
.about-grid{display:grid;grid-template-columns:1fr 1fr;gap:4rem;align-items:center}
.about-image img{border-radius:var(--radius);box-shadow:var(--shadow);aspect-ratio:4/5;object-fit:cover;background:var(--bg)}
.about-text h2{margin-bottom:1rem}
.about-text p{color:var(--ink-soft);margin-bottom:1.5rem;font-size:1.08rem;line-height:1.75}
.features{list-style:none}
.features li{padding:.45rem 0;color:var(--ink-soft);font-size:1.05rem}

/* HOURS */
.hours-grid{
  max-width:540px;margin:0 auto;
  background:var(--white);border-radius:var(--radius);
  padding:2rem;box-shadow:var(--shadow);
}
.hours-row{display:flex;justify-content:space-between;padding:.9rem 0;border-bottom:1px solid rgba(0,0,0,.06);font-size:1.05rem}
.hours-row:last-child{border:none}
.hours-row span:first-child{color:var(--ink-soft);text-transform:capitalize}
.hours-row span:last-child{color:var(--ink);font-weight:600}

/* CERTIFICATES */
.section-certs{background:var(--bg)}
.certs-wrap{display:flex;justify-content:center}
.cert-frame{
  max-width:540px;text-align:center;
  background:var(--white);padding:1.5rem 1.5rem 1.25rem;
  border-radius:var(--radius);box-shadow:var(--shadow);
  border:1px solid rgba(0,0,0,.04);
  transition:transform .25s,box-shadow .25s;
}
.cert-frame:hover{transform:translateY(-4px);box-shadow:0 30px 70px -25px rgba(80,55,30,.35)}
.cert-frame img{
  width:100%;height:auto;border-radius:10px;display:block;
  margin-bottom:1.2rem;
}
.cert-frame figcaption{
  color:var(--ink-soft);font-size:.95rem;letter-spacing:.04em;
  padding:0 .5rem .25rem;
}

/* LOCATION */
.location-info{margin-top:3rem;display:flex;justify-content:center}
.location-card{
  background:var(--white);border-radius:var(--radius);
  padding:2rem 2.25rem;box-shadow:var(--shadow);
  text-align:center;max-width:540px;
}
.location-card h3{font-size:1.5rem;margin-bottom:.5rem}
.location-address{color:var(--ink);font-weight:500;margin-bottom:.5rem}

/* BOOKING */
.section-booking{
  background:linear-gradient(135deg,#3a302a 0%,#2a2522 100%);
  color:var(--white);
}
.section-booking .lead{color:rgba(255,255,255,.75)}
.booking-form{
  max-width:760px;margin:0 auto;
  background:var(--white);color:var(--ink);
  padding:2.5rem;border-radius:var(--radius);
  box-shadow:0 30px 80px -20px rgba(0,0,0,.4);
}
.form-row{display:grid;grid-template-columns:1fr 1fr;gap:1.25rem;margin-bottom:1.25rem}
.form-group{margin-bottom:1.25rem;display:flex;flex-direction:column}
.form-row .form-group{margin-bottom:0}
.form-group label{font-size:.85rem;color:var(--ink-soft);margin-bottom:.5rem;font-weight:500;letter-spacing:.02em}
.form-group input,.form-group select,.form-group textarea{
  width:100%;padding:.9rem 1rem;
  border:1px solid #e5dcd1;border-radius:10px;
  font-family:inherit;font-size:.95rem;color:var(--ink);
  background:var(--bg);transition:border-color .2s,box-shadow .2s;
}
.form-group input:focus,.form-group select:focus,.form-group textarea:focus{
  outline:none;border-color:var(--accent);
  box-shadow:0 0 0 3px rgba(176,137,104,.15);
}
.form-check label{display:flex;gap:.6rem;font-size:.88rem;color:var(--ink-soft);align-items:flex-start;cursor:pointer}
.form-check input{width:auto;margin-top:.2rem}
.form-status{margin-top:1rem;text-align:center;font-size:.95rem;min-height:1.5em}
.form-status.success{color:#2d8a4f}
.form-status.error{color:#c0392b}

/* FOOTER */
.footer{background:#1f1b18;color:rgba(255,255,255,.65);padding:3.5rem 0 1.5rem;margin-top:0}
.footer-inner{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:2rem;padding-bottom:2rem;border-bottom:1px solid rgba(255,255,255,.08)}
.footer .logo{color:var(--white);font-size:1.4rem;margin-bottom:.5rem}
.footer-title{color:var(--white);font-weight:500;margin-bottom:.6rem;letter-spacing:.05em;text-transform:uppercase;font-size:.85rem}
.footer a{color:rgba(255,255,255,.85);transition:color .2s}
.footer a:hover{color:var(--gold)}
.footer-bottom{padding-top:1.5rem;text-align:center}
.footer .muted{color:rgba(255,255,255,.5)}

/* RESPONSIVE */
@media (max-width:1100px){
  .services-grid{grid-template-columns:repeat(3,1fr)}
}
@media (max-width:880px){
  .services-grid{grid-template-columns:repeat(2,1fr)}
}
@media (max-width:880px){
  .nav-links{display:none}
  .nav-toggle{display:block}
  .about-grid{grid-template-columns:1fr;gap:2rem}
  .form-row{grid-template-columns:1fr;gap:0}
  .form-row .form-group{margin-bottom:1.25rem}
  .booking-form{padding:1.75rem}
  .section{padding:4rem 0}
  .hero{grid-template-columns:1fr;min-height:auto;height:auto;max-height:none}
  .hero-image-side{height:auto;min-height:0;aspect-ratio:5/4}
  .hero-image-side img{object-position:center 8%}
  .hero-text-side{padding:2rem 1.25rem 2.5rem;text-align:center}
  .hero-actions{justify-content:center;gap:.75rem;flex-direction:column;width:100%;max-width:340px;margin:0 auto}
  .hero-actions .btn{width:100%}
  .hero h1{font-size:clamp(1.7rem,7.5vw,2.4rem);margin-bottom:.75rem;word-wrap:break-word;hyphens:auto}
  .hero-tagline{font-size:.95rem;line-height:1.55;margin-bottom:1.5rem;word-wrap:break-word}
  .hero-text-inner{max-width:100%;width:100%}
  .hero-eyebrow{font-size:.85rem;letter-spacing:.24em;gap:.5rem;margin-bottom:1rem}
  .hero-eyebrow::before,.hero-eyebrow::after{width:18px}
}
@media (max-width:560px){
  .services-grid{grid-template-columns:1fr}
}
