:root{
  --bg:#FFFFFF;
  --ink:#2A2233;
  --ink-soft:#79708A;
  --ochre:#D9C8F0;
  --teal:#8B6FB8;
  --brick:#7952A8;
  --line:#E9DFF5;
  --paper-2:#F8F4FC;
}
*{box-sizing:border-box; margin:0; padding:0;}
body{
  background:var(--bg);
  color:var(--ink);
  font-family:'Inter', sans-serif;
  line-height:1.55;
  -webkit-font-smoothing:antialiased;
}
h1,h2,h3, .serif{
  font-family:'Fraunces', serif;
  font-weight:500;
  letter-spacing:-0.01em;
}
.container{
  max-width:1080px;
  margin:0 auto;
  padding:0 32px;
}
a{color:inherit;}

/* NAV */
nav{
  padding:28px 0 0;
}
nav .container{
  display:flex;
  justify-content:space-between;
  align-items:center;
}
.brand{
  font-family:'Fraunces', serif;
  font-style:italic;
  font-weight:500;
  font-size:20px;
}
.nav-links{
  display:flex;
  gap:32px;
  font-size:15px;
  color:var(--ink-soft);
}
.nav-links a{text-decoration:none;}
.nav-links a:hover{color:var(--ink);}
.book-fab{
  position:fixed;
  top:20px;
  right:24px;
  z-index:1000;
  background:var(--brick);
  color:#fff;
  padding:13px 24px;
  border-radius:30px;
  font-family:'Inter';
  font-weight:600;
  font-size:14px;
  text-decoration:none;
  box-shadow:0 4px 14px rgba(121,82,168,0.35);
  transition:transform .15s ease, box-shadow .15s ease;
}
.book-fab:hover{transform:translateY(-2px); box-shadow:0 6px 18px rgba(121,82,168,0.45);}

/* HERO */
.hero{
  padding:96px 0 88px;
}
.hero .container{
  display:grid;
  grid-template-columns:1.15fr 0.85fr;
  gap:56px;
  align-items:center;
}
.eyebrow-line{
  color:var(--teal);
  font-size:15px;
  margin-bottom:18px;
}
h1.headline{
  font-size:56px;
  line-height:1.08;
  font-weight:500;
}
h1.headline em{
  font-style:italic;
  color:var(--brick);
}
.hero p.sub{
  margin-top:24px;
  font-size:18px;
  color:var(--ink-soft);
  max-width:46ch;
}
.hero-ctas{
  margin-top:36px;
  display:flex;
  align-items:center;
  gap:24px;
  flex-wrap:wrap;
}
.btn-primary{
  display:inline-block;
  background:var(--brick);
  color:#fff;
  padding:14px 26px;
  border-radius:3px;
  text-decoration:none;
  font-size:15.5px;
  font-weight:500;
  transition:background .15s ease;
}
.btn-primary:hover{background:#5F3F85;}
.link-quiet{
  font-size:15px;
  color:var(--ink-soft);
  text-decoration:underline;
  text-decoration-color:var(--line);
  text-underline-offset:4px;
}
.hero-photo{
  aspect-ratio:4/5;
  background:linear-gradient(160deg, var(--ochre) 0%, #F6D9E3 100%);
  border-radius:6px;
  display:flex;
  align-items:center;
  justify-content:center;
  position:relative;
  overflow:hidden;
}
.hero-photo img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.hero-photo span{
  font-family:'Fraunces', serif;
  font-style:italic;
  font-size:120px;
  color:rgba(255,255,255,0.35);
}
.hero-photo .tag{
  position:absolute;
  bottom:16px;
  left:16px;
  right:16px;
  background:rgba(30,42,50,0.72);
  color:#fff;
  font-size:12.5px;
  padding:8px 12px;
  border-radius:3px;
}

/* SECTION HEADERS */
.section{padding:76px 0;}
.section.divider{border-top:1px solid var(--line);}
.section.tint{background:var(--paper-2);}
.section-head{
  display:grid;
  grid-template-columns:1fr 1.6fr;
  gap:48px;
  margin-bottom:44px;
}
.section-head h2{
  font-size:32px;
  font-weight:500;
}
.section-head p{
  color:var(--ink-soft);
  font-size:16.5px;
  max-width:52ch;
}
.price-note{
  margin-top:14px;
  font-family:'Fraunces', serif;
  font-style:italic;
  color:var(--teal);
  font-size:17px;
}

/* ABOUT */
.about-grid{
  display:grid;
  grid-template-columns:0.9fr 1.4fr;
  gap:56px;
}
.about-quote{
  font-family:'Fraunces', serif;
  font-style:italic;
  font-size:22px;
  line-height:1.5;
  color:var(--teal);
  border-left:2px solid var(--teal);
  padding-left:22px;
}
.about-body p{margin-bottom:16px; color:var(--ink-soft); font-size:16px;}
.about-body p strong{color:var(--ink); font-weight:600;}

/* PHOTO STRIP */
.photo-strip{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:24px;
}
.photo-strip figure{margin:0;}
.photo-strip img{
  width:100%;
  aspect-ratio:4/3;
  object-fit:cover;
  border-radius:6px;
  display:block;
}
.photo-strip figcaption{
  margin-top:10px;
  font-family:'Fraunces', serif;
  font-style:italic;
  color:var(--teal);
  font-size:14px;
}
@media (max-width:760px){
  .photo-strip{grid-template-columns:1fr;}
}

/* SERVICES - editorial list, not identical cards */
.service-list{
  border-top:1px solid var(--line);
}
.service-row{
  display:grid;
  grid-template-columns:220px 1fr;
  gap:32px;
  padding:26px 0;
  border-bottom:1px solid var(--line);
}
.service-row h3{
  font-size:20px;
  font-weight:500;
}
.service-row p{
  color:var(--ink-soft);
  font-size:15.5px;
  max-width:56ch;
}

/* HOW IT WORKS - legit sequence, numbered */
.steps{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:40px;
}
.step .num{
  font-family:'Fraunces', serif;
  font-style:italic;
  font-size:34px;
  color:var(--ochre);
  margin-bottom:12px;
}
.step h3{font-size:18px; font-weight:600; font-family:'Inter'; margin-bottom:8px;}
.step p{color:var(--ink-soft); font-size:15px;}

/* CALENDAR */
.calendar-wrap{
  background:var(--paper-2);
  border-radius:6px;
  padding:36px;
}
.cal-note{
  font-size:14px;
  color:var(--ink-soft);
  margin-bottom:24px;
  max-width:60ch;
}
.cal-days{
  display:flex;
  gap:8px;
  overflow-x:auto;
  -webkit-overflow-scrolling:touch;
  padding-bottom:4px;
  margin-bottom:22px;
}
.cal-day-btn{
  flex:0 0 auto;
  font-family:'Inter';
  font-size:13.5px;
  font-weight:500;
  padding:10px 18px;
  border:1px solid var(--line);
  border-radius:8px;
  background:#fff;
  color:var(--ink);
  cursor:pointer;
  text-align:center;
  line-height:1.35;
}
.cal-day-btn .cal-day-date{
  display:block;
  font-size:11px;
  font-weight:400;
  color:var(--ink-soft);
}
.cal-day-btn.selected{background:var(--teal); border-color:var(--teal); color:#fff;}
.cal-day-btn.selected .cal-day-date{color:rgba(255,255,255,0.8);}

.cal-times{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}
.cal-time-btn{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:2px;
  border:1px solid var(--line);
  border-radius:8px;
  min-width:84px;
  padding:11px 10px;
  font-size:13.5px;
  font-family:'Inter';
  cursor:pointer;
  background:#fff;
  color:var(--teal);
  transition:background .12s ease;
}
.cal-time-btn:hover{background:#F0E9F8;}
.cal-time-btn.taken{
  background:#E9E3F0;
  color:#A99BBB;
  cursor:not-allowed;
}
.cal-time-btn.selected{
  background:var(--teal);
  color:#fff;
}
.cal-time-sub{
  font-size:10px;
  text-transform:uppercase;
  letter-spacing:.03em;
  opacity:.75;
}
.cal-legend{
  display:flex;
  gap:24px;
  margin-top:20px;
  font-size:13px;
  color:var(--ink-soft);
}
.cal-legend span{display:flex; align-items:center; gap:8px;}
.dot{width:9px; height:9px; border-radius:50%; display:inline-block;}
.dot.free{background:var(--teal);}
.dot.taken{background:#A99BBB;}

.booking-form{
  margin-top:24px;
  padding-top:24px;
  border-top:1px solid var(--line);
}
.booking-form[hidden]{display:none;}
.booking-form-slot{
  font-family:'Fraunces', serif;
  font-style:italic;
  color:var(--teal);
  margin-bottom:14px;
}
.booking-form-row{
  display:flex;
  gap:12px;
  align-items:center;
  flex-wrap:wrap;
  margin-bottom:12px;
}
.duration-picker{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  margin-bottom:16px;
}
.duration-option{
  font-family:'Inter';
  font-size:13.5px;
  padding:8px 14px;
  border:1px solid var(--line);
  border-radius:20px;
  background:#fff;
  color:var(--ink);
  cursor:pointer;
}
.duration-option.selected{
  background:var(--teal);
  border-color:var(--teal);
  color:#fff;
}
.booking-form input{
  font-family:'Inter';
  font-size:14px;
  padding:10px 12px;
  border:1px solid var(--line);
  border-radius:3px;
  background:#fff;
  color:var(--ink);
  flex:1 1 200px;
}
.booking-form button{border:none; font-family:'Inter'; cursor:pointer;}
.booking-status{font-size:13.5px; color:var(--ink-soft);}
.booking-status.error{color:var(--brick);}
.booking-status.success{color:var(--teal);}
.booking-form textarea{
  font-family:'Inter';
  font-size:14px;
  padding:10px 12px;
  border:1px solid var(--line);
  border-radius:3px;
  background:#fff;
  color:var(--ink);
  width:100%;
  resize:vertical;
}
.hp-field{
  position:absolute;
  left:-9999px;
  width:1px;
  height:1px;
  overflow:hidden;
}
.review-form-toggle{margin-top:32px;}
.review-form-toggle summary{
  cursor:pointer;
  font-family:'Fraunces', serif;
  font-style:italic;
  color:var(--teal);
  font-size:16px;
}
.review-form-toggle .review-form{border-top:none; margin-top:16px; padding-top:0;}

/* TESTIMONIALS */
.testimonials-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:36px;
}
.testimonial-card{
  padding-top:20px;
  border-top:2px solid var(--teal);
}
.testimonial{
  font-family:'Fraunces', serif;
  font-style:italic;
  font-size:19px;
  line-height:1.5;
  margin-bottom:18px;
}
.testimonial-name{
  font-size:13.5px;
  color:var(--ink-soft);
}
.placeholder-note{
  display:inline-block;
  margin-top:28px;
  font-family:'Inter';
  font-size:12.5px;
  color:var(--teal);
  border:1px solid var(--teal);
  padding:4px 10px;
  border-radius:3px;
}
@media (max-width: 760px){
  .testimonials-grid{grid-template-columns:1fr; gap:28px;}
}

/* CTA BAND */
.cta-band{
  background:var(--ink);
  color:var(--bg);
  padding:72px 0;
  text-align:center;
}
.cta-band h2{
  font-size:34px;
  margin-bottom:16px;
}
.cta-band p{
  color:#B9C2C6;
  margin-bottom:32px;
  font-size:16px;
}

/* FOOTER */
footer{padding:40px 0 60px;}
footer .container{
  display:flex;
  justify-content:space-between;
  align-items:center;
  font-size:13.5px;
  color:var(--ink-soft);
}

@media (max-width: 760px){
  .hero .container{grid-template-columns:1fr;}
  .hero-photo{max-width:280px; margin:0 auto;}
  h1.headline{font-size:38px;}
  .section-head{grid-template-columns:1fr;}
  .about-grid{grid-template-columns:1fr;}
  .service-row{grid-template-columns:1fr; gap:8px;}
  .steps{grid-template-columns:1fr; gap:28px;}
  .calendar-wrap{padding:20px 16px;}
  .nav-links{display:none;}
  .book-fab{top:14px; right:14px; padding:11px 18px; font-size:13px;}
}
