*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
img{display:block;max-width:100%}
a{text-decoration:none}
ul{list-style:none}

:root{
  --bg:      #faf8f5;
  --bg2:     #f2ede6;
  --black:   #1a1410;
  --dark:    #2d2420;
  --rose:    #c8836a;
  --rose2:   #e8a898;
  --blush:   #f5e8e2;
  --taupe:   #9a8478;
  --text:    #2d2420;
  --muted:   #7a6860;
  --white:   #fffdfb;
}

html{scroll-behavior:smooth;}
body{
  background:var(--bg);
  color:var(--text);
  font-family:'DM Sans',sans-serif;
  overflow-x:hidden;
}

/* ── NAV ── */
nav{
  position:fixed;top:0;left:0;right:0;z-index:100;
  display:grid;grid-template-columns:1fr auto 1fr;
  align-items:center;
  padding:1.4rem 3rem;
  background:rgba(250,248,245,0.9);
  backdrop-filter:blur(14px);
  border-bottom:1px solid rgba(200,131,106,0.12);
  transition:all 0.3s;
}
.nav-links-left,.nav-links-right{display:flex;gap:2rem;align-items:center;}
.nav-links-right{justify-content:flex-end;}
.nav-links-left a,.nav-links-right a{
  font-size:0.72rem;font-weight:500;
  letter-spacing:0.14em;text-transform:uppercase;
  color:var(--muted);transition:color 0.2s;
}
.nav-links-left a:hover,.nav-links-right a:hover{color:var(--rose);}
.nav-brand{
  font-family:'Cormorant Garamond',serif;
  font-size:1.45rem;font-weight:600;
  letter-spacing:0.06em;
  color:var(--black);
  text-align:center;
}
.nav-book{
  background:var(--rose);color:var(--white);
  padding:0.45rem 1.2rem;
  font-size:0.7rem;font-weight:600;
  letter-spacing:0.1em;text-transform:uppercase;
  transition:background 0.2s,transform 0.2s;
}
.nav-book:hover{background:#b5705a;transform:translateY(-1px);}

/* ── HERO — asymmetric split ── */
.hero{
  min-height:100vh;
  display:grid;grid-template-columns:1.1fr 0.9fr;
  padding-top:78px;
  position:relative;overflow:hidden;
}

.hero-left{
  background:var(--blush);
  padding:5rem 4rem 5rem 3rem;
  display:flex;flex-direction:column;justify-content:center;
  position:relative;
  overflow:hidden;
}
/* diagonal cut */
.hero-left::after{
  content:'';
  position:absolute;
  right:-60px;top:0;bottom:0;
  width:120px;
  background:var(--bg);
  transform:skewX(-4deg);
  z-index:1;
}

.hero-tag{
  display:inline-flex;align-items:center;gap:0.5rem;
  font-size:0.68rem;font-weight:500;
  letter-spacing:0.22em;text-transform:uppercase;
  color:var(--rose);margin-bottom:1.5rem;
}
.hero-tag-line{width:20px;height:1px;background:var(--rose);}

.hero-title{
  font-family:'Cormorant Garamond',serif;
  font-size:clamp(3rem,5vw,5.5rem);
  font-weight:300;
  line-height:1.05;
  letter-spacing:-0.01em;
  color:var(--black);
  margin-bottom:1.5rem;
  opacity:0;animation:fadeUp 0.9s 0.2s ease forwards;
}
.hero-title strong{font-weight:600;}
.hero-title em{font-style:italic;color:var(--rose);}

.hero-desc{
  font-size:0.95rem;font-weight:300;
  line-height:1.85;color:var(--muted);
  max-width:380px;
  margin-bottom:2.5rem;
  opacity:0;animation:fadeUp 0.9s 0.4s ease forwards;
}

.hero-cta{
  display:flex;gap:1rem;flex-wrap:wrap;
  opacity:0;animation:fadeUp 0.9s 0.6s ease forwards;
}

.btn-rose{
  background:var(--rose);color:var(--white);
  padding:0.85rem 2rem;
  font-size:0.75rem;font-weight:600;
  letter-spacing:0.1em;text-transform:uppercase;
  transition:background 0.2s,transform 0.2s;
  border-radius:0;
}
.btn-rose:hover{background:#b5705a;transform:translateY(-2px);}

.btn-outline{
  border:1.5px solid var(--rose);
  color:var(--rose);
  padding:0.85rem 2rem;
  font-size:0.75rem;font-weight:600;
  letter-spacing:0.1em;text-transform:uppercase;
  transition:all 0.2s;
}
.btn-outline:hover{background:var(--rose);color:var(--white);}

.hero-right{
  background:var(--dark);
  display:flex;flex-direction:column;
  justify-content:center;align-items:center;
  position:relative;overflow:hidden;
  padding:3rem;
}

/* scissor decorative mark */
.hero-scissors-art{
  width:100%;max-width:360px;
  position:relative;
}
.scissors-svg{width:100%;height:auto;}

/* floating review badge */
.hero-review{
  position:absolute;bottom:3rem;left:2rem;
  background:rgba(250,248,245,0.95);
  padding:1rem 1.2rem;
  width:200px;
  backdrop-filter:blur(8px);
  animation:float 3.5s ease-in-out infinite;
}
.review-stars{color:var(--rose);font-size:0.8rem;letter-spacing:2px;margin-bottom:0.2rem;}
.review-text{font-size:0.72rem;font-weight:300;color:var(--muted);line-height:1.4;}
.review-name{font-size:0.65rem;font-weight:600;letter-spacing:0.1em;text-transform:uppercase;color:var(--rose);margin-top:0.4rem;}

/* ── SERVICES STRIP ── */
.services-strip{
  background:var(--dark);
  display:flex;overflow-x:auto;
  scrollbar-width:none;
  gap:0;
}
.services-strip::-webkit-scrollbar{display:none;}
.service-strip-item{
  flex:1;min-width:180px;
  padding:2rem 1.5rem;
  border-right:1px solid rgba(255,255,255,0.06);
  text-align:center;
  transition:background 0.3s;
  cursor:default;
}
.service-strip-item:hover{background:rgba(200,131,106,0.1);}
.service-strip-icon{font-size:0.65rem;font-weight:700;letter-spacing:0.08em;margin-bottom:0.5rem;}
.service-strip-name{
  font-size:0.72rem;font-weight:500;
  letter-spacing:0.12em;text-transform:uppercase;
  color:rgba(250,248,245,0.7);
}

/* ── SECTION SHARED ── */
.section-wrap{padding:6rem 3rem;max-width:1200px;margin:0 auto;}
.section-label-rose{
  display:inline-flex;align-items:center;gap:0.5rem;
  font-size:0.68rem;font-weight:500;
  letter-spacing:0.22em;text-transform:uppercase;
  color:var(--rose);margin-bottom:0.8rem;
}
.section-title{
  font-family:'Cormorant Garamond',serif;
  font-size:clamp(2.2rem,4vw,3.5rem);
  font-weight:300;line-height:1.1;
  color:var(--black);margin-bottom:1rem;
}
.section-title em{font-style:italic;color:var(--rose);}

/* ── SERVICES ── */
.services-grid{
  display:grid;grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
  gap:1px;
  background:var(--bg2);
  border:1px solid var(--bg2);
  margin-top:3rem;
}
.service-card{
  background:var(--white);
  padding:2.2rem;
  position:relative;
  transition:background 0.3s;
  cursor:default;
}
.service-card:hover{background:var(--blush);}
.service-card:hover .service-arrow{transform:translateX(4px);}
.service-num{
  font-family:'Cormorant Garamond',serif;
  font-size:2.5rem;font-weight:300;
  color:rgba(200,131,106,0.2);
  line-height:1;margin-bottom:0.8rem;
}
.service-name{
  font-family:'Cormorant Garamond',serif;
  font-size:1.35rem;font-weight:600;
  color:var(--black);margin-bottom:0.5rem;
}
.service-desc{
  font-size:0.82rem;font-weight:300;
  color:var(--muted);line-height:1.65;
  margin-bottom:1.2rem;
}
.service-price{
  font-size:0.78rem;font-weight:600;
  letter-spacing:0.08em;
  color:var(--rose);
}
.service-arrow{
  position:absolute;bottom:1.5rem;right:1.5rem;
  color:var(--rose);font-size:1rem;
  transition:transform 0.2s;
}

/* ── TEAM ── */
.team-section{background:var(--blush);}
.team-grid{
  display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:2rem;margin-top:3rem;
}
.team-card{text-align:center;}
.team-avatar{
  width:120px;height:120px;
  border-radius:50%;
  margin:0 auto 1rem;
  display:flex;align-items:center;justify-content:center;
  font-size:3rem;
  position:relative;
  overflow:hidden;
}
.team-avatar-bg{
  position:absolute;inset:0;border-radius:50%;
}
.team-name{
  font-family:'Cormorant Garamond',serif;
  font-size:1.2rem;font-weight:600;
  color:var(--black);margin-bottom:0.2rem;
}
.team-role{
  font-size:0.7rem;font-weight:500;
  letter-spacing:0.14em;text-transform:uppercase;
  color:var(--rose);margin-bottom:0.6rem;
}
.team-spec{
  font-size:0.8rem;font-weight:300;
  color:var(--muted);line-height:1.5;
}

/* ── TESTIMONIALS ── */
.testimonials-grid{
  display:grid;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:1.5rem;margin-top:3rem;
}
.testimonial-card{
  background:var(--white);
  padding:2rem;
  border-top:2px solid var(--rose2);
  transition:box-shadow 0.3s;
}
.testimonial-card:hover{box-shadow:0 8px 30px rgba(200,131,106,0.12);}
.testimonial-stars{color:var(--rose);font-size:0.8rem;letter-spacing:2px;margin-bottom:0.8rem;}
.testimonial-text{
  font-family:'Cormorant Garamond',serif;
  font-size:1.05rem;font-style:italic;font-weight:300;
  color:var(--dark);line-height:1.6;
  margin-bottom:1rem;
}
.testimonial-author{
  font-size:0.68rem;font-weight:600;
  letter-spacing:0.14em;text-transform:uppercase;
  color:var(--muted);
}

/* ── BOOKING CTA ── */
.booking-cta{
  background:var(--dark);
  padding:6rem 3rem;
  text-align:center;
  position:relative;overflow:hidden;
}
.booking-cta::before{
  content:'✂';
  position:absolute;
  font-size:20rem;
  color:rgba(255,255,255,0.02);
  left:50%;top:50%;
  transform:translate(-50%,-50%) rotate(-20deg);
  pointer-events:none;
}
.booking-cta-label{
  font-size:0.68rem;font-weight:500;
  letter-spacing:0.22em;text-transform:uppercase;
  color:var(--rose2);margin-bottom:1rem;
}
.booking-cta-title{
  font-family:'Cormorant Garamond',serif;
  font-size:clamp(2.5rem,5vw,4.5rem);
  font-weight:300;
  color:var(--bg);
  line-height:1.1;margin-bottom:0.5rem;
}
.booking-cta-title em{font-style:italic;color:var(--rose2);}
.booking-cta-sub{
  font-size:0.88rem;font-weight:300;
  color:rgba(250,248,245,0.5);
  margin-bottom:2.5rem;
}
.booking-phone{
  display:inline-block;
  font-family:'Cormorant Garamond',serif;
  font-size:2rem;font-weight:300;
  color:var(--rose2);
  letter-spacing:0.05em;
  margin-bottom:1.5rem;
}

/* ── CONTACT ── */
.contact-section{
  padding:6rem 3rem;
  max-width:1200px;margin:0 auto;
  display:grid;grid-template-columns:1fr 1fr;
  gap:4rem;align-items:start;
}
.contact-detail{
  display:flex;gap:1rem;align-items:flex-start;
  margin-bottom:1.5rem;
}
.contact-detail-icon{
  font-size:1.1rem;margin-top:2px;flex-shrink:0;
}
.contact-detail-label{
  font-size:0.62rem;font-weight:600;
  letter-spacing:0.18em;text-transform:uppercase;
  color:var(--rose);margin-bottom:0.2rem;
}
.contact-detail-value{
  font-size:0.9rem;font-weight:300;
  color:var(--dark);line-height:1.6;
}
.hours-list{margin-top:1rem;}
.hours-row{
  display:flex;justify-content:space-between;
  padding:0.6rem 0;
  border-bottom:1px solid rgba(200,131,106,0.12);
  font-size:0.85rem;font-weight:300;
  color:var(--dark);
}
.hours-row span:last-child{color:var(--rose);font-weight:500;}

/* ── FOOTER ── */
footer{
  background:var(--black);
  padding:2.5rem 3rem;
  display:flex;justify-content:space-between;align-items:center;
  flex-wrap:wrap;gap:1rem;
}
.footer-brand{
  font-family:'Cormorant Garamond',serif;
  font-size:1.25rem;font-weight:600;
  letter-spacing:0.06em;
  color:var(--bg);
}
.footer-copy{font-size:0.68rem;color:rgba(250,248,245,0.35);}
.footer-credit{font-size:0.65rem;letter-spacing:0.1em;text-transform:uppercase;color:rgba(200,131,106,0.4);}

/* ── REVEAL ── */
.reveal{opacity:0;transform:translateY(24px);transition:opacity 0.6s ease,transform 0.6s ease;}
.reveal.visible{opacity:1;transform:none;}

/* ── ANIMATIONS ── */
@keyframes fadeUp{from{opacity:0;transform:translateY(18px)}to{opacity:1;transform:none}}
@keyframes fadeIn{from{opacity:0}to{opacity:1}}
@keyframes float{0%,100%{transform:translateY(0)}50%{transform:translateY(-8px)}}

/* ── RESPONSIVE ── */
@media(max-width:860px){
  nav{grid-template-columns:1fr 1fr;gap:0.5rem;padding:1rem 1.5rem;}
  .nav-links-left{display:none;}
  .nav-brand{text-align:left;}
  .nav-links-right{justify-content:flex-end;}
  .hero{grid-template-columns:1fr;}
  .hero-left{padding:5rem 1.5rem 3rem;}
  .hero-left::after{display:none;}
  .hero-right{padding:2rem 1.5rem;min-height:280px;}
  .section-wrap{padding:4rem 1.5rem;}
  .contact-section{grid-template-columns:1fr;padding:4rem 1.5rem;}
  footer{flex-direction:column;text-align:center;padding:2rem 1.5rem;}
  .services-grid{grid-template-columns:1fr;}
  .team-grid{grid-template-columns:1fr 1fr;}
  .testimonials-grid{grid-template-columns:1fr;}
}
@media(max-width:640px){
  nav{padding:0.8rem 1rem;}
  .nav-links-right a:not(.nav-book){display:none;}
  .hero-title{font-size:clamp(2.4rem,9vw,3.2rem);}
  .hero-left{padding:5.5rem 1.2rem 2.5rem;}
  .hero-cta{flex-direction:column;align-items:stretch;}
  .hero-cta a{text-align:center;}
  .btn-rose,.btn-outline{display:block;text-align:center;}
  .hero-right{min-height:220px;padding:1.5rem 1.2rem;}
  .hero-review{display:none;}
  .section-wrap{padding:3.5rem 1.2rem;}
  .services-grid{grid-template-columns:1fr;gap:1px;}
  .service-card{padding:1.6rem;}
  .team-grid{grid-template-columns:1fr 1fr;gap:1.2rem;}
  .testimonials-grid{grid-template-columns:1fr;}
  .booking-cta{padding:3rem 1.2rem;}
  .booking-cta-title{font-size:clamp(1.8rem,7vw,2.8rem);}
  .booking-phone{font-size:1.5rem;}
  .contact-section{padding:3.5rem 1.2rem;}
  .hours-row{font-size:0.8rem;}
  footer{flex-direction:column;text-align:center;padding:1.8rem 1.2rem;}
  .services-strip{padding:0;}
  .service-strip-item{min-width:80px;padding:1.2rem 0.8rem;}
  .section-title{font-size:clamp(1.75rem,7vw,2.5rem);}
  /* prevent iOS zoom */
  .form-input,.form-textarea,.form-select{font-size:1rem;}
}
@media(max-width:380px){
  .hero-title{font-size:2rem;}
  .team-grid{grid-template-columns:1fr;}
  nav{padding:0.7rem 0.9rem;}
}
