:root{
  --ivory:#FBF3EE;
  --ivory-deep:#F5E6DD;
  --rose:#E3A8A0;
  --rose-deep:#C97F76;
  --rosewood:#4A2E2A;
  --sage:#9CAF88;
  --gold:#B99567;
  --white:#FFFDFB;
  --max-w:1180px;
}

*{margin:0;padding:0;box-sizing:border-box;}

html{scroll-behavior:smooth;}

@media (prefers-reduced-motion: reduce){
  html{scroll-behavior:auto;}
  *{animation-duration:0.01ms !important; animation-iteration-count:1 !important; transition-duration:0.01ms !important;}
}

body{
  font-family:'Jost', sans-serif;
  background:var(--ivory);
  color:var(--rosewood);
  line-height:1.6;
  overflow-x:hidden;
}

h1,h2,h3,.display{
  font-family:'Cormorant Garamond', serif;
  font-weight:500;
  letter-spacing:0.01em;
}

a{color:inherit; text-decoration:none;}
button{font-family:inherit; cursor:pointer;}
img{max-width:100%; display:block;}

.wrap{
  max-width:var(--max-w);
  margin:0 auto;
  padding:0 32px;
}

/* ---------- Focus ---------- */
a:focus-visible, button:focus-visible{
  outline:2px solid var(--rosewood);
  outline-offset:3px;
  border-radius:2px;
}

/* ---------- Header ---------- */
header{
  position:fixed;
  top:0; left:0; right:0;
  z-index:100;
  background:rgba(251,243,238,0.85);
  backdrop-filter:blur(10px);
  border-bottom:1px solid rgba(74,46,42,0.08);
  transition:padding .3s ease;
}
.nav-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:20px 32px;
  max-width:var(--max-w);
  margin:0 auto;
}
.logo{
  font-family:'Cormorant Garamond', serif;
  font-size:26px;
  font-weight:600;
  letter-spacing:0.03em;
}
.logo em{font-style:italic; color:var(--rose-deep);}
nav ul{
  display:flex;
  gap:36px;
  list-style:none;
}
nav a{
  font-size:14px;
  letter-spacing:0.06em;
  text-transform:uppercase;
  position:relative;
  padding-bottom:4px;
}
nav a::after{
  content:'';
  position:absolute;
  left:0; bottom:0;
  width:0; height:1px;
  background:var(--rose-deep);
  transition:width .35s ease;
}
nav a:hover::after{width:100%;}
.nav-cta{
  display:flex;
  gap:14px;
  align-items:center;
}
.btn-mini{
  border:1px solid var(--rosewood);
  padding:9px 20px;
  border-radius:30px;
  font-size:13px;
  letter-spacing:0.04em;
  text-transform:uppercase;
  transition:background .3s ease, color .3s ease;
  white-space:nowrap;
}
.btn-mini:hover{background:var(--rosewood); color:var(--white);}
.burger{display:none; background:none; border:none; flex-direction:column; gap:5px; padding:6px;}
.burger span{width:24px; height:1.5px; background:var(--rosewood); display:block;}

/* ---------- Hero ---------- */
.hero{
  position:relative;
  min-height:100vh;
  display:flex;
  align-items:center;
  padding-top:100px;
  overflow:hidden;
}
.hero-grid{
  width:100%;
  display:grid;
  grid-template-columns:1.1fr 0.9fr;
  gap:40px;
  align-items:center;
}
.hero-eyebrow{
  font-size:13px;
  letter-spacing:0.22em;
  text-transform:uppercase;
  color:var(--rose-deep);
  margin-bottom:22px;
  display:flex;
  align-items:center;
  gap:12px;
}
.hero-eyebrow::before{
  content:'';
  width:34px; height:1px;
  background:var(--rose-deep);
}
.hero h1{
  font-size:clamp(48px, 6.2vw, 92px);
  line-height:0.98;
  color:var(--rosewood);
  margin-bottom:28px;
}
.hero h1 .italic{
  font-style:italic;
  color:var(--rose-deep);
}
.hero p{
  font-size:18px;
  max-width:440px;
  color:#6b5450;
  margin-bottom:38px;
}
.hero-actions{
  display:flex;
  gap:16px;
  flex-wrap:wrap;
}
.btn-primary{
  background:var(--rosewood);
  color:var(--white);
  padding:16px 34px;
  border-radius:40px;
  font-size:14px;
  letter-spacing:0.06em;
  text-transform:uppercase;
  display:inline-flex;
  align-items:center;
  gap:10px;
  transition:transform .35s ease, background .35s ease;
}
.btn-primary:hover{transform:translateY(-3px); background:var(--rose-deep);}
.btn-outline{
  border:1px solid var(--rosewood);
  padding:16px 34px;
  border-radius:40px;
  font-size:14px;
  letter-spacing:0.06em;
  text-transform:uppercase;
  transition:background .35s ease, color .35s ease, transform .35s ease;
}
.btn-outline:hover{background:var(--rosewood); color:var(--white); transform:translateY(-3px);}

.hero-visual{
  position:relative;
  height:560px;
}
.blob{
  position:absolute;
  border-radius:44% 56% 62% 38% / 45% 40% 60% 55%;
  animation:morph 12s ease-in-out infinite;
}
@keyframes morph{
  0%,100%{border-radius:44% 56% 62% 38% / 45% 40% 60% 55%;}
  50%{border-radius:58% 42% 40% 60% / 55% 60% 40% 45%;}
}
.blob-1{
  width:420px; height:420px;
  background:linear-gradient(135deg, var(--rose) 0%, var(--ivory-deep) 100%);
  top:10px; right:0;
}
.blob-2{
  width:180px; height:180px;
  background:var(--sage);
  opacity:0.35;
  bottom:20px; left:20px;
  animation-delay:-4s;
}
.hero-ripple{
  position:absolute;
  top:50%; left:50%;
  transform:translate(-50%,-50%);
  width:340px; height:340px;
}
.hero-ripple svg{width:100%; height:100%;}
.ripple-ring{
  fill:none;
  stroke:var(--white);
  stroke-width:1;
  opacity:0.6;
}

.scroll-cue{
  position:absolute;
  bottom:36px;
  left:32px;
  display:flex;
  align-items:center;
  gap:12px;
  font-size:12px;
  letter-spacing:0.15em;
  text-transform:uppercase;
  color:var(--rose-deep);
}
.scroll-line{
  width:1px; height:40px;
  background:var(--rose-deep);
  position:relative;
  overflow:hidden;
}
.scroll-line::after{
  content:'';
  position:absolute;
  top:-40px; left:0;
  width:100%; height:40px;
  background:var(--rosewood);
  animation:scrollDown 2.2s ease-in-out infinite;
}
@keyframes scrollDown{
  0%{top:-40px;}
  100%{top:40px;}
}

/* ---------- Section shared ---------- */
section{
  position:relative;
  padding:130px 0;
}
.section-head{
  max-width:620px;
  margin-bottom:70px;
}
.section-head.center{margin-left:auto; margin-right:auto; text-align:center;}
.eyebrow{
  font-size:13px;
  letter-spacing:0.22em;
  text-transform:uppercase;
  color:var(--rose-deep);
  margin-bottom:18px;
  display:flex;
  align-items:center;
  gap:12px;
}
.section-head.center .eyebrow{justify-content:center;}
.eyebrow::before{content:'';width:34px;height:1px;background:var(--rose-deep);}
.section-head.center .eyebrow::before{display:none;}
.section-head h2{
  font-size:clamp(34px,4vw,56px);
  line-height:1.05;
}

.reveal{
  opacity:0;
  transform:translateY(28px);
  transition:opacity .8s ease, transform .8s ease;
}
.reveal.in{opacity:1; transform:translateY(0);}

/* ---------- About ---------- */
.about{background:var(--white);}
.about-grid{
  display:grid;
  grid-template-columns:0.9fr 1.1fr;
  gap:70px;
  align-items:center;
}
.about-visual{
  position:relative;
  aspect-ratio:4/5;
  border-radius:50% 50% 48% 52% / 55% 55% 45% 45%;
  background:linear-gradient(160deg, var(--rose) 0%, var(--gold) 130%);
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
}
.about-visual::before{
  content:'';
  position:absolute;
  inset:14px;
  border-radius:50% 50% 48% 52% / 55% 55% 45% 45%;
  border:1px solid rgba(255,255,255,0.5);
}
.about-visual span{
  font-family:'Cormorant Garamond', serif;
  font-style:italic;
  font-size:22px;
  color:var(--white);
  text-align:center;
  padding:40px;
}
.about-text p{
  color:#6b5450;
  margin-bottom:20px;
  font-size:16.5px;
}
.about-stats{
  display:flex;
  gap:48px;
  margin-top:40px;
  padding-top:36px;
  border-top:1px solid rgba(74,46,42,0.12);
}
.stat-num{
  font-family:'Cormorant Garamond', serif;
  font-size:44px;
  color:var(--rose-deep);
  line-height:1;
}
.stat-label{
  font-size:13px;
  letter-spacing:0.05em;
  color:#6b5450;
  margin-top:6px;
}

/* ---------- Services ---------- */
.services{background:var(--ivory);}
.service-list{
  display:flex;
  flex-direction:column;
}
.service-row{
  display:grid;
  grid-template-columns:60px 1fr 2fr;
  gap:24px;
  align-items:center;
  padding:32px 0;
  border-top:1px solid rgba(74,46,42,0.14);
  transition:padding-left .4s ease, background .4s ease;
}
.service-list .service-row:last-child{border-bottom:1px solid rgba(74,46,42,0.14);}
.service-row:hover{
  padding-left:18px;
  background:rgba(227,168,160,0.12);
}
.service-index{
  font-family:'Cormorant Garamond', serif;
  font-style:italic;
  font-size:20px;
  color:var(--rose-deep);
}
.service-name{
  font-family:'Cormorant Garamond', serif;
  font-size:26px;
  color:var(--rosewood);
}
.service-desc{
  font-size:14.5px;
  color:#6b5450;
}

/* ---------- Why us ---------- */
.why{background:var(--white);}
.why-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:2px;
  background:rgba(74,46,42,0.12);
  border:1px solid rgba(74,46,42,0.12);
}
.why-card{
  background:var(--white);
  padding:48px 36px;
  transition:background .4s ease;
}
.why-card:hover{background:var(--ivory);}
.why-icon{
  width:44px; height:44px;
  margin-bottom:26px;
}
.why-icon svg{width:100%; height:100%;}
.why-card h3{
  font-size:24px;
  margin-bottom:12px;
  color:var(--rosewood);
}
.why-card p{
  font-size:14.5px;
  color:#6b5450;
}

/* ---------- Testimonials ---------- */
.testimonials{background:var(--rosewood); color:var(--ivory);}
.testimonials .eyebrow, .testimonials .eyebrow::before{color:var(--rose); background:var(--rose);}
.testi-track{
  display:flex;
  gap:28px;
  overflow-x:auto;
  scroll-snap-type:x mandatory;
  padding-bottom:12px;
  -ms-overflow-style:none;
  scrollbar-width:none;
}
.testi-track::-webkit-scrollbar{display:none;}
.testi-card{
  scroll-snap-align:start;
  min-width:340px;
  background:rgba(255,255,255,0.06);
  border:1px solid rgba(255,255,255,0.14);
  border-radius:18px;
  padding:36px;
}
.testi-quote{
  font-family:'Cormorant Garamond', serif;
  font-style:italic;
  font-size:21px;
  line-height:1.5;
  margin-bottom:24px;
  color:var(--ivory);
}
.testi-name{
  font-size:14px;
  letter-spacing:0.05em;
  color:var(--rose);
  text-transform:uppercase;
}
.stars{color:var(--gold); font-size:15px; margin-bottom:16px; letter-spacing:2px;}

/* ---------- Contact ---------- */
.contact{background:var(--ivory-deep);}
.contact-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:70px;
}
.contact-card{
  background:var(--white);
  border-radius:24px;
  padding:44px;
}
.contact-item{
  display:flex;
  gap:18px;
  padding:22px 0;
  border-bottom:1px solid rgba(74,46,42,0.1);
}
.contact-item:last-child{border-bottom:none;}
.contact-icon{
  width:24px; height:24px;
  flex-shrink:0;
  margin-top:2px;
  color:var(--rose-deep);
}
.contact-icon svg{width:100%; height:100%;}
.contact-item h4{
  font-size:13px;
  letter-spacing:0.08em;
  text-transform:uppercase;
  color:var(--rose-deep);
  margin-bottom:6px;
  font-weight:500;
}
.contact-item p, .contact-item a{
  font-size:16px;
  color:var(--rosewood);
}
.contact-actions{
  display:flex;
  flex-direction:column;
  gap:16px;
  margin-top:32px;
}
.action-btn{
  display:flex;
  align-items:center;
  gap:14px;
  padding:18px 24px;
  border-radius:14px;
  font-size:15px;
  letter-spacing:0.02em;
  transition:transform .3s ease, box-shadow .3s ease;
}
.action-btn svg{width:22px; height:22px; flex-shrink:0;}
.action-btn:hover{transform:translateY(-2px);}
.action-whatsapp{background:#3D5A4D; color:var(--white);}
.action-instagram{background:linear-gradient(135deg,#E3A8A0,#C97F76,#B99567); color:var(--white);}
.action-call{border:1px solid var(--rosewood); color:var(--rosewood);}

.contact-map{
  border-radius:24px;
  overflow:hidden;
  position:relative;
  min-height:420px;
  background:linear-gradient(150deg, var(--rose) 0%, var(--sage) 140%);
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:40px;
}
.contact-map .pin{
  width:52px; height:52px;
  margin:0 auto 20px;
}
.contact-map h3{
  color:var(--white);
  font-size:28px;
  margin-bottom:10px;
}
.contact-map p{color:rgba(255,255,255,0.9); font-size:15px;}

/* ---------- Footer ---------- */
footer{
  background:var(--rosewood);
  color:var(--ivory);
  padding:56px 0 30px;
}
.footer-top{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  flex-wrap:wrap;
  gap:30px;
  padding-bottom:36px;
  border-bottom:1px solid rgba(255,255,255,0.14);
}
.footer-logo{
  font-family:'Cormorant Garamond', serif;
  font-size:28px;
}
.footer-logo em{font-style:italic; color:var(--rose);}
.footer-links{
  display:flex;
  gap:40px;
  list-style:none;
  font-size:14px;
}
.footer-social{display:flex; gap:16px;}
.footer-social a{
  width:38px; height:38px;
  border:1px solid rgba(255,255,255,0.3);
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  transition:background .3s ease;
}
.footer-social a:hover{background:rgba(255,255,255,0.14);}
.footer-social svg{width:16px; height:16px;}
.footer-bottom{
  padding-top:24px;
  font-size:13px;
  color:rgba(251,243,238,0.6);
  display:flex;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:10px;
}

/* ---------- Responsive ---------- */
@media (max-width:900px){
  nav ul{display:none;}
  .burger{display:flex;}
  .hero-grid{grid-template-columns:1fr;}
  .hero-visual{height:340px; order:-1;}
  .about-grid{grid-template-columns:1fr;}
  .why-grid{grid-template-columns:1fr;}
  .contact-grid{grid-template-columns:1fr;}
  .service-row{grid-template-columns:36px 1fr; row-gap:8px;}
  .service-desc{grid-column:2/3;}
  section{padding:90px 0;}
  .footer-top{flex-direction:column;}
}