:root{
  --wine:#5e3542;
  --rose:#c8788c;
  --blush:#f9e9ec;
  --cream:#fffcfa;
  --ink:#33252a;
  --muted:#76666b;
}

*{box-sizing:border-box}

html{scroll-behavior:smooth}

body{
  margin:0;
  background:var(--cream);
  color:var(--ink);
  font-family:"DM Sans",sans-serif;
}

.topline{
  background:var(--wine);
  color:#fff5f6;
  text-align:center;
  padding:10px 20px;
  font-size:13px;
  letter-spacing:.02em;
}

.topline span{
  margin:0 9px;
  color:#dbaab5;
}

.header{
  height:118px;
  max-width:1200px;
  margin:auto;
  padding:0 32px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.brand img{
  display:block;
  width:205px;
  height:106px;
  object-fit:contain;
  mix-blend-mode:multiply;
}

.nav{
  display:flex;
  gap:34px;
}

.nav a,
footer button{
  color:var(--ink);
  font:500 14px "DM Sans";
  text-decoration:none;
  background:none;
  border:0;
  cursor:pointer;
}

.nav a{
  position:relative;
}

.nav a:after{
  content:"";
  position:absolute;
  height:1px;
  width:0;
  bottom:-7px;
  left:0;
  background:var(--rose);
  transition:.25s;
}

.nav a:hover:after{
  width:100%;
}

.menu-button{
  display:none;
  border:0;
  background:none;
  font-size:24px;
}

/* =========================
   HERO
   ========================= */

.hero{
  min-height:725px;
  overflow:hidden;
  position:relative;

  background:
    radial-gradient(
      circle at 72% 48%,
      rgba(242,203,212,.55) 0%,
      rgba(242,203,212,0) 30%
    ),
    linear-gradient(
      105deg,
      #fdf5f5 0%,
      #f8e5e9 68%,
      #f0ced6 100%
    );

  display:grid;
  grid-template-columns:minmax(0,1.08fr) minmax(0,.92fr);
  align-items:center;

  padding:70px max(32px,calc((100vw - 1136px)/2));
}

.hero:after{
  content:"";
  position:absolute;
  width:580px;
  height:580px;
  right:-235px;
  bottom:-340px;
  border:1px solid #e5b9c3;
  border-radius:50%;
  pointer-events:none;
}

/* ĽAVÁ ČASŤ – text */
.hero-copy{
  position:relative;
  z-index:2;

  width:100%;
  max-width:620px;
  height:auto;

  justify-self:start;

  display:flex;
  flex-direction:column;
  align-items:flex-start;
  justify-content:center;

  overflow:visible;
  text-align:left;
}

.hero-copy h1{
  width:100%;
  max-width:590px;
  margin:0 0 24px;

  font-family:"Playfair Display",serif;
  font-size:clamp(48px,5.2vw,72px);
  line-height:1.02;
  letter-spacing:-.035em;
}

.hero-copy h1 em{
  color:var(--rose);
}

.hero-copy > p{
  max-width:520px;
  margin:0 0 28px;

  font-size:18px;
  line-height:1.55;
  color:#4e4145;
}

/* Tlačidlá v hero */
.hero-actions{
  display:flex;
  align-items:center;
  gap:14px;
  flex-wrap:wrap;
}

/* PRAVÁ ČASŤ – ilustrácia */
.hero-art{
  position:relative;
  z-index:1;

  width:100%;
  max-width:520px;
  height:520px;

  justify-self:end;

  display:flex;
  align-items:center;
  justify-content:center;

  overflow:visible;
}

.hero-banner{
  display:block;

  width:82%;
  height:82%;

  object-fit:contain;
  object-position:center;

  mix-blend-mode:multiply;
  opacity:.92;
}

/* =========================
   NOTICE
   ========================= */

.section{
  max-width:1136px;
  margin:auto;
  padding:108px 32px;
}

.notice-wrap{
  max-width:1180px;
  margin:-43px auto 0;
  padding:0 24px;
  position:relative;
  z-index:2;
}

.notice{
  display:flex;
  gap:19px;
  position:relative;
  overflow:hidden;
  background:#fffafb;
  border:1px solid #e8bbc5;
  border-radius:12px;
  padding:27px 31px;
  box-shadow:0 20px 48px #682a3b2b;
}

.notice:before{
  content:"";
  position:absolute;
  left:0;
  top:0;
  bottom:0;
  width:7px;
  background:var(--rose);
}

.notice-icon{
  background:#f4dce1;
  color:var(--wine);
  width:36px;
  height:36px;
  border-radius:50%;
  display:grid;
  place-items:center;
  font:600 20px "Playfair Display";
  flex:none;
}

.notice-label{
  font-size:11px;
  color:#b65f76;
  letter-spacing:.14em;
  font-weight:700;
  margin:1px 0 6px;
}

.notice p:last-child{
  margin:0;
  line-height:1.5;
  font-size:16px;
  font-weight:500;
}

.intro{
  display:block;
}

.intro-head{
  max-width:720px;
  margin-bottom:38px;
}

.intro h2,
.section-heading h2,
.services h2,
.contact h2{
  font-size:clamp(34px,4vw,52px);
  line-height:1.1;
}

.intro-main{
  display:grid;
  grid-template-columns:1.12fr .88fr;
  gap:18px;
  align-items:stretch;
}

.intro-copy{
  font-size:17px;
  line-height:1.75;
  color:#5f5054;
  background:#fff;
  border:1px solid #efdde1;
  border-radius:12px;
  padding:30px 34px;
  box-shadow:0 12px 30px #6b35430b;
}

.intro-copy>p{
  margin:0;
}

.intro-copy>p+p{
  border-top:1px solid #efdee2;
  margin-top:21px;
  padding-top:21px;
}

.intro-copy>p:first-child{
  color:#49383e;
}

.care-overview{
  background:linear-gradient(135deg,#f9e7eb,#fff7f8);
  border-radius:12px;
  padding:30px 32px;
}

.care-overview .eyebrow{
  color:#b65f76;
  margin-bottom:11px;
}

.care-overview h3{
  font-size:29px;
  color:var(--wine);
  margin-bottom:9px;
}

.care-overview>p:last-child{
  font-size:15px;
  line-height:1.65;
  margin:0;
  color:#65565a;
}

.care-list{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
  margin-top:18px;
}

.care-list article{
  background:#fff;
  border:1px solid #ecd9de;
  border-radius:12px;
  padding:23px 24px;
  min-height:168px;
  box-shadow:0 10px 25px #6b35430a;
  transition:.22s;
}

.care-list article:hover{
  transform:translateY(-4px);
  box-shadow:0 16px 30px #6b354315;
}

.care-list span{
  display:block;
  color:#c8788c;
  font-size:11px;
  font-weight:700;
  letter-spacing:.12em;
  margin-bottom:26px;
}

.care-list b{
  display:block;
  color:var(--wine);
  font-family:"Playfair Display",serif;
  font-size:23px;
  font-weight:500;
  margin-bottom:8px;
}

.care-list p{
  font-size:14px;
  line-height:1.55;
  color:#65565a;
  margin:0;
}

/* =========================
   HOURS
   ========================= */

.hours-section{
  background:#fbf1f3;
  max-width:none;
  padding-left:max(32px,calc((100vw - 1136px)/2));
  padding-right:max(32px,calc((100vw - 1136px)/2));
}

.section-heading,
.services-heading{
  display:flex;
  justify-content:space-between;
  align-items:end;
  margin-bottom:38px;
}

.section-heading>p,
.services-heading>p{
  max-width:315px;
  color:var(--muted);
  font-size:14px;
  line-height:1.5;
  margin:0;
}

.hours-card{
  background:#fff;
  border-radius:10px;
  padding:7px 28px;
  box-shadow:0 10px 36px #6b354410;
}

.day{
  display:flex;
  justify-content:space-between;
  padding:21px 0;
  border-bottom:1px solid #f0e0e4;
}

.day b{
  font-size:15px;
}

.day span{
  font-weight:700;
  color:var(--wine);
}

.hours-foot{
  font-size:13px;
  color:var(--muted);
  padding:16px 0;
}

/* =========================
   SERVICES
   ========================= */

.services{
  text-align:left;
}

.services-heading>p{
  max-width:290px;
  font-size:15px;
}

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

.service-grid article{
  background:#fff;
  position:relative;
  border:1px solid #edd8dd;
  padding:27px;
  min-height:238px;
  border-radius:8px;
  transition:.25s;
}

.service-grid article:hover{
  transform:translateY(-5px);
  box-shadow:0 15px 34px #61334113;
  border-color:#e2b2bf;
}

.service-grid span{
  color:var(--rose);
  font-size:12px;
  font-weight:700;
}

.service-grid i{
  position:absolute;
  right:24px;
  top:22px;
  color:var(--rose);
  font-size:21px;
  font-style:normal;
}

.service-grid h3{
  font-size:24px;
  margin:36px 0 10px;
}

.service-grid p{
  font-size:15px;
  color:var(--muted);
  line-height:1.6;
  margin:0;
}

/* =========================
   CONTACT
   ========================= */

.contact{
  background:var(--wine);
  color:#fff;
  max-width:none;
  padding-left:max(32px,calc((100vw - 1136px)/2));
  padding-right:max(32px,calc((100vw - 1136px)/2));
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:120px;
}

.contact .eyebrow{
  color:#eab9c4;
}

.contact h2{
  margin-bottom:18px;
}

.contact-copy>p:not(.eyebrow){
  line-height:1.6;
  color:#f3dfe3;
  max-width:480px;
  margin-bottom:25px;
}

address{
  border-left:1px solid #9c6876;
  padding-left:30px;
  font-style:normal;
  line-height:1.7;
  font-size:15px;
}

address a{
  color:#fff;
}

address p{
  margin-top:0;
  margin-bottom:20px;
}

/* =========================
   FOOTER
   ========================= */

footer{
  max-width:1136px;
  margin:auto;
  padding:25px 32px;
  display:flex;
  gap:24px;
  align-items:center;
  justify-content:space-between;
}

footer img{
  width:75px;
  height:38px;
  object-fit:contain;
  mix-blend-mode:multiply;
}

footer p{
  font-size:12px;
  color:var(--muted);
  margin:0;
}

footer button{
  color:#a58e95;
  font-size:11px;
  letter-spacing:.04em;
}

footer button:hover{
  color:var(--wine);
}

/* =========================
   MODAL
   ========================= */

dialog{
  border:0;
  border-radius:8px;
  padding:0;
  width:min(94vw,460px);
  box-shadow:0 20px 50px #25121744;
}

dialog::backdrop{
  background:#3a1b2488;
}

.modal-content{
  padding:38px;
}

.modal-content h2{
  font-size:35px;
  margin-bottom:10px;
}

.modal-content>p:not(.eyebrow){
  color:var(--muted);
  font-size:14px;
  line-height:1.5;
}

.close{
  position:absolute;
  right:15px;
  top:9px;
  background:none;
  border:0;
  font-size:28px;
  color:var(--wine);
  cursor:pointer;
}

form{
  margin-top:25px;
  display:grid;
  gap:15px;
}

label{
  display:grid;
  gap:7px;
  font-size:13px;
  font-weight:700;
}

input,
textarea{
  border:1px solid #e5ced4;
  border-radius:4px;
  padding:12px;
  font:14px "DM Sans";
  resize:vertical;
}

input:focus,
textarea:focus{
  outline:2px solid #e8bbc5;
  border-color:var(--rose);
}

small{
  color:var(--muted);
  font-size:11px;
  line-height:1.5;
}

.form-error{
  font-size:13px;
  color:#a22842;
  margin:0;
}

.admin-actions{
  display:flex;
  align-items:center;
  gap:16px;
  flex-wrap:wrap;
}

.text-button{
  background:none;
  border:0;
  color:var(--wine);
  text-decoration:underline;
  cursor:pointer;
  font:13px "DM Sans";
}

/* =========================
   MOBILE
   ========================= */

@media(max-width:720px){

  .topline{
    font-size:11px;
  }

  .header{
    height:92px;
    padding:0 20px;
  }

  .brand img{
    width:145px;
    height:82px;
  }

  .menu-button{
    display:block;
  }

  .nav{
    display:none;
    position:absolute;
    top:92px;
    left:0;
    right:0;
    background:#fff;
    padding:18px 20px;
    flex-direction:column;
    align-items:stretch;
    z-index:5;
    box-shadow:0 12px 20px #0001;
  }

  .nav.open{
    display:flex;
  }

  .nav a{
    text-align:center;
  }

  .hero{
    min-height:auto;
    display:flex;
    flex-direction:column;
    padding:60px 24px 40px;
  }

  .hero-copy{
    width:100%;
    max-width:600px;
    align-items:flex-start;
    text-align:left;
  }

  .hero-copy h1{
    max-width:100%;
    font-size:clamp(42px,12vw,58px);
    line-height:1.04;
  }

  .hero-copy > p{
    max-width:520px;
    font-size:17px;
    line-height:1.5;
  }

  .hero-art{
    width:calc(100% + 36px);
    max-width:none;
    height:390px;
    margin:0 -18px -20px;
  }

  .hero-banner{
    width:112%;
    height:112%;
    max-width:none;
    object-fit:contain;
    object-position:center;
    transform:translateY(8px);
  }

  .notice-wrap{
    padding:0 20px;
    margin:-17px auto 0;
  }

  .notice{
    padding:16px;
    gap:12px;
  }

  .notice p:last-child{
    font-size:13px;
  }

  .section{
    padding:75px 24px;
  }

  .intro-main,
  .contact{
    grid-template-columns:1fr;
    gap:18px;
  }

  .section-heading,
  .services-heading{
    display:block;
  }

  .section-heading>p,
  .services-heading>p{
    margin-top:15px;
  }

  .hours-section,
  .contact{
    padding-left:24px;
    padding-right:24px;
  }

  .hours-card{
    padding:6px 18px;
  }

  .day{
    padding:18px 0;
  }

  .care-list,
  .service-grid{
    grid-template-columns:1fr;
  }

  .service-grid article{
    min-height:auto;
  }

  .contact{
    gap:37px;
  }

  address{
    border-left:0;
    border-top:1px solid #9c6876;
    padding:25px 0 0;
  }

  footer{
    padding:20px;
    gap:12px;
    flex-wrap:wrap;
  }

  footer p{
    order:3;
    width:100%;
  }

  .hero-actions{
    width:100%;
    flex-direction:column;
    align-items:stretch;
    flex-wrap:nowrap;
    gap:14px;
  }

  .hero-actions a,
  .hero-actions button{
    width:100%;
    min-height:68px;
    justify-content:center;
  }
}

@media(max-width:420px){

  .hero{
    padding-left:20px;
    padding-right:20px;
  }

  .hero-art{
    width:calc(100% + 32px);
    height:370px;
    margin-left:-16px;
    margin-right:-16px;
  }

  .hero-banner{
    width:116%;
    height:116%;
  }
}