/* ==========================================================================
   LOFT OF BEAUTY — BBS HIEMT landing page
   Design tokens derived from the brand logo (black script monogram,
   thin-tracked caps wordmark, warm gold ring) and the approved layout.
   ========================================================================== */

:root{
  /* Colors */
  --ink:            #17140f;   /* near-black, warm */
  --ink-soft:       #241f18;
  --cream:          #faf6ee;   /* page background */
  --cream-2:        #f2ead9;   /* alt section background */
  --white:          #ffffff;
  --gold-deep:      #a8791f;
  --gold:           #c9982f;
  --gold-light:     #e8c877;
  --gold-pale:      #f4e3b0;
  --text:           #241f18;
  --text-muted:     #6f6656;
  --text-on-dark:   #f2ece0;
  --text-on-dark-muted: #bdb4a2;
  --line:           #e3d8c0;

  --gold-gradient: linear-gradient(120deg, var(--gold-deep) 0%, var(--gold-light) 45%, var(--gold-deep) 100%);
  --gold-gradient-soft: linear-gradient(120deg, var(--gold) 0%, var(--gold-pale) 50%, var(--gold) 100%);

  /* Type */
  --font-display: 'Playfair Display', 'Georgia', serif;
  --font-body: 'Jost', 'Segoe UI', sans-serif;
  --font-script: 'Mrs Saint Delafield', cursive;

  /* Layout */
  --max-w: 1180px;
  --radius: 4px;
  --shadow-soft: 0 20px 50px -25px rgba(23, 20, 15, 0.35);
}

*, *::before, *::after{ box-sizing: border-box; }

html{ scroll-behavior: smooth; }

body{
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img{ max-width: 100%; display: block; }

a{ color: inherit; text-decoration: none; }

ul{ list-style: none; margin: 0; padding: 0; }

button{ font-family: inherit; cursor: pointer; }

.container{
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow{
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 14px;
}
.eyebrow.on-dark{ color: var(--gold-light); }

h1, h2, h3{
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 18px;
  color: var(--ink);
}

h1{ font-size: clamp(2.3rem, 5vw, 3.4rem); }
h2{ font-size: clamp(1.9rem, 4vw, 2.6rem); }
h3{ font-size: 1.25rem; }

p{ margin: 0 0 16px; color: var(--text-muted); }

.section{ padding: 96px 0; position: relative; }
.section-head{ max-width: 640px; margin: 0 auto 56px; text-align: center; position: relative; z-index: 2; }
.section-head p{ font-size: 1.05rem; }

/* ---- Brand signature motif (echoes the logo: script word + gold ring + speckle) ---- */
.signature-word{
  display: block;
  font-family: var(--font-script);
  font-size: 2.6rem;
  line-height: 1;
  color: var(--gold-deep);
  margin-bottom: 6px;
}
.signature-word.on-dark{ color: var(--gold-light); }

.watermark-ring{
  position: absolute;
  width: 620px; height: 620px;
  opacity: 0.07;
  pointer-events: none;
  z-index: -1;
}
.watermark-ring.on-dark{ opacity: 0.1; }

.section-divider{
  display: flex; align-items: center; justify-content: center; gap: 18px;
  padding: 0 0 8px;
}
.section-divider .line{
  width: 72px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.section-divider .ring-dot{
  width: 10px; height: 10px; border-radius: 50%;
  border: 1.4px solid var(--gold);
  position: relative;
  flex-shrink: 0;
}
.section-divider .ring-dot::after{
  content: ''; position: absolute; inset: 2.5px; border-radius: 50%;
  background: var(--gold-light);
}

/* Ring-framed circular media: same visual language as the logo ring */
.ring-frame{
  position: relative;
  border-radius: 50%;
  padding: 8px;
  background: var(--gold-gradient);
  display: inline-flex;
  flex-shrink: 0;
}
.ring-frame img{
  border-radius: 50%;
  display: block;
  border: 3px solid var(--cream);
}
.ring-frame.on-dark img{ border-color: var(--ink); }

/* Buttons */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 34px;
  border-radius: var(--radius);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid transparent;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
  white-space: nowrap;
}
.btn-primary{
  background: var(--gold-gradient);
  background-size: 200% 100%;
  background-position: 0% 0;
  color: var(--ink);
}
.btn-primary:hover{ background-position: 100% 0; box-shadow: var(--shadow-soft); transform: translateY(-2px); }

.btn-outline{
  background: transparent;
  border-color: var(--ink);
  color: var(--ink);
}
.btn-outline:hover{ background: var(--ink); color: var(--white); }

.btn-outline-light{
  background: transparent;
  border-color: rgba(242,236,224,.5);
  color: var(--text-on-dark);
}
.btn-outline-light:hover{ background: var(--text-on-dark); color: var(--ink); }

.btn-block{ width: 100%; }

.play-link{
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ink);
}
.play-link .play-circle{
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--ink);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

/* ==================== HEADER ==================== */
.site-header{
  position: sticky; top: 0; z-index: 100;
  background: rgba(23, 20, 15, 0.96);
  backdrop-filter: blur(6px);
}
.site-header .container{
  display: flex; align-items: center; justify-content: space-between;
  min-height: 84px;
}
.logo{ display: flex; align-items: center; gap: 10px; }
.logo img{ height: 58px; width: auto; }
.logo-text{ display: flex; flex-direction: column; line-height: 1; }
.logo-text .lg-top{
  font-family: var(--font-display); font-style: italic; font-size: 1.35rem;
  color: var(--text-on-dark);
}
.logo-text .lg-bottom{
  font-size: 0.6rem; letter-spacing: 0.32em; color: var(--gold-light);
  margin-top: 4px;
}

.main-nav{ display: flex; align-items: center; gap: 36px; }
.main-nav a{
  font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-on-dark-muted); font-weight: 500;
  transition: color .2s ease;
}
.main-nav a:hover{ color: var(--gold-light); }

.header-actions{ display: flex; align-items: center; gap: 20px; }

.nav-toggle{
  display: none; background: none; border: 0; padding: 6px;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after{
  content:''; display:block; width: 24px; height: 2px; background: var(--text-on-dark);
  position: relative; transition: all .25s ease;
}
.nav-toggle span::before{ position:absolute; top:-8px; }
.nav-toggle span::after{ position:absolute; top:8px; }

/* ==================== HERO ==================== */
.hero{
  background: var(--ink);
  color: var(--text-on-dark);
  position: relative;
  overflow: hidden;
}
.hero .container{
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 40px;
  align-items: center;
  padding-top: 72px;
  padding-bottom: 72px;
}
.hero h1{ color: var(--text-on-dark); }
.hero .accent{
  background: var(--gold-gradient-soft);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-kicker{
  font-size: 0.95rem; font-weight: 500; letter-spacing: 0.06em;
  color: var(--text-on-dark);
  margin-bottom: 20px;
}
.hero p.lead{ color: var(--text-on-dark-muted); font-size: 1.02rem; max-width: 480px; }
.hero-cta{ display: flex; align-items: center; gap: 28px; flex-wrap: wrap; margin-top: 28px; }
.hero .play-link{ color: var(--text-on-dark); }
.hero .play-link .play-circle{ border-color: rgba(242,236,224,.5); }

.hero-media{ position: relative; }
.hero-media img{
  border-radius: 10px;
  box-shadow: var(--shadow-soft);
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}

/* ==================== BENEFIT STRIP ==================== */
.benefits{
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  padding: 56px 0;
}
.benefits ul{
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}
.benefit{ text-align: center; padding: 0 8px; }
.benefit .icon{
  width: 54px; height: 54px; margin: 0 auto 16px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-deep);
}
.benefit .icon svg{ width: 24px; height: 24px; }
.benefit h3{
  font-family: var(--font-body); font-size: 0.8rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 6px;
}
.benefit p{ font-size: 0.86rem; margin: 0; }

/* ==================== PROCESS ==================== */
.process{ background: var(--cream); }
.steps{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  align-items: start;
  position: relative;
}
.step{ text-align: center; position: relative; }
.step .step-circle{
  width: 92px; height: 92px; border-radius: 50%;
  background: var(--ink);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
  position: relative;
  color: var(--text-on-dark);
  box-shadow: 0 0 0 3px var(--cream), 0 0 0 5px var(--gold);
}
.step .step-circle svg{ width: 30px; height: 30px; }
.step .step-num{
  position: absolute; bottom: -8px; left: 50%; transform: translateX(-50%);
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--gold-gradient);
  color: var(--ink); font-size: 0.72rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.step h3{ font-size: 0.95rem; letter-spacing: 0.03em; text-transform: uppercase; }
.step p{ font-size: 0.88rem; }
.step-arrow{
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  position: absolute; top: 46px;
}
.step-arrow svg{ width: 20px; height: 20px; }

/* ==================== RESULTS ==================== */
.results{
  background: var(--ink);
  color: var(--text-on-dark);
  overflow: hidden;
}
.results-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.results h2{ color: var(--text-on-dark); }
.ba-compare{
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--gold);
}
.ba-compare .ba-imgs{ display: grid; grid-template-columns: 1fr 1fr; }
.ba-imgs img{ width: 100%; height: 100%; object-fit: cover; aspect-ratio: 1/1; }
.ba-labels{ display: grid; grid-template-columns: 1fr 1fr; }
.ba-labels span{
  text-align: center; padding: 10px 0; font-size: 0.72rem; letter-spacing: 0.16em;
  text-transform: uppercase; background: var(--ink-soft); color: var(--gold-light);
}
.ba-caption{ font-size: 0.8rem; color: var(--text-on-dark-muted); margin-top: 14px; }

.testimonial-wrap{ position: relative; }
.testimonial-card{
  background: var(--cream);
  color: var(--text);
  border-radius: 10px;
  padding: 34px 34px 28px;
  box-shadow: var(--shadow-soft);
}
.tc-head{ display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.tc-head .label{ font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-muted); }
.stars{ color: var(--gold); font-size: 0.95rem; letter-spacing: 2px; }
.testimonial-card blockquote{
  font-family: var(--font-display); font-style: italic;
  font-size: 1.1rem; margin: 0 0 20px; color: var(--ink);
}
.tc-author{ display: flex; align-items: center; gap: 12px; }
.tc-author .avatar{
  width: 42px; height: 42px; border-radius: 50%; object-fit: cover;
  box-shadow: 0 0 0 2px var(--cream), 0 0 0 3.5px var(--gold);
}
.tc-author strong{ display: block; font-size: 0.9rem; }
.tc-author span{ font-size: 0.76rem; color: var(--text-muted); }
.tc-nav{ display: flex; align-items: center; justify-content: center; gap: 14px; margin-top: 24px; }
.tc-arrow{
  background: none; border: 1px solid rgba(242,236,224,.4); color: var(--text-on-dark);
  width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
}
.tc-dots{ display: flex; gap: 8px; }
.tc-dots button{
  width: 8px; height: 8px; border-radius: 50%; border: 0; background: rgba(242,236,224,.35);
  padding: 0;
}
.tc-dots button.active{ background: var(--gold-light); }

/* ==================== PRICING ==================== */
.pricing{ background: var(--cream-2); }
.pricing-layout{ display: grid; grid-template-columns: 2.2fr 1fr; gap: 48px; align-items: start; }
.price-cards{ display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.price-card{
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 32px 26px;
  text-align: center;
  position: relative;
  transition: transform .25s ease, box-shadow .25s ease;
}
.price-card:hover{ transform: translateY(-6px); box-shadow: var(--shadow-soft); }
.price-card.featured{ border-color: var(--gold); box-shadow: var(--shadow-soft); }
.price-card.featured::after{
  content: '';
  position: absolute;
  right: -46px; bottom: -46px;
  width: 140px; height: 140px;
  background: url('../assets/ring-motif.svg') center/cover no-repeat;
  opacity: 0.16;
  pointer-events: none;
}
.price-badge{
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--gold-gradient); color: var(--ink);
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 6px 16px; border-radius: 20px; white-space: nowrap;
}
.price-card h3{ font-size: 0.85rem; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 18px; }
.price-from{ font-size: 0.72rem; color: var(--text-muted); letter-spacing: 0.1em; text-transform: uppercase; }
.price-amount{ font-family: var(--font-display); font-size: 2.1rem; color: var(--ink); margin: 6px 0 4px; }
.price-per{ font-size: 0.78rem; color: var(--text-muted); margin-bottom: 22px; min-height: 18px; }

.included-list{ }
.included-list li{
  display: flex; align-items: center; gap: 14px;
  padding: 14px 0; border-bottom: 1px solid var(--line);
  font-size: 0.9rem; color: var(--text);
}
.included-list li:last-child{ border-bottom: 0; }
.included-list .ic{
  width: 32px; height: 32px; border-radius: 50%;
  border: 1px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-deep); flex-shrink: 0;
}
.included-list .ic svg{ width: 16px; height: 16px; }
.pricing-note{
  text-align: center; font-size: 0.85rem; color: var(--text-muted);
  margin-top: 36px;
}

/* ==================== FAQ ==================== */
.faq{ background: var(--cream); }
.faq-grid{ display: grid; grid-template-columns: 1fr 1fr; gap: 18px 32px; }
.faq-item{ border-bottom: 1px solid var(--line); }
.faq-q{
  width: 100%; background: none; border: 0; text-align: left;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 4px; font-size: 0.98rem; font-weight: 500; color: var(--ink);
  gap: 16px;
}
.faq-q .plus{
  flex-shrink: 0; width: 22px; height: 22px; position: relative; color: var(--gold-deep);
}
.faq-q .plus::before, .faq-q .plus::after{
  content:''; position:absolute; background: currentColor; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
}
.faq-q .plus::before{ width: 14px; height: 2px; }
.faq-q .plus::after{ width: 2px; height: 14px; transition: transform .25s ease; }
.faq-item.open .faq-q .plus::after{ transform: translate(-50%,-50%) rotate(90deg); scale: 0; }
.faq-a{
  max-height: 0; overflow: hidden; transition: max-height .3s ease;
}
.faq-a p{ padding: 0 4px 20px; font-size: 0.9rem; margin: 0; }
.faq-item.open .faq-a{ max-height: 300px; }

/* ==================== CTA / CONTACT ==================== */
.cta-final{ padding: 0; }
.cta-grid{ display: grid; grid-template-columns: 1fr 1.15fr; min-height: 420px; }
.cta-image{ position: relative; }
.cta-image img{ width: 100%; height: 100%; object-fit: cover; }
.cta-image::after{
  content:''; position:absolute; inset:0;
  background: linear-gradient(90deg, rgba(23,20,15,0) 55%, var(--cream-2) 100%);
}
.cta-content{
  background: var(--cream-2);
  padding: 64px;
  display: flex; flex-direction: column; justify-content: center;
  position: relative;
  overflow: hidden;
}
.cta-content h2{ margin-bottom: 10px; }
.cta-content p{ max-width: 460px; }
.contact-options{
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 28px;
}
.contact-option{
  display: flex; align-items: center; gap: 12px;
  background: var(--white); border: 1px solid var(--line); border-radius: 8px;
  padding: 16px 14px;
  transition: border-color .2s ease, transform .2s ease;
}
.contact-option:hover{ border-color: var(--gold); transform: translateY(-3px); }
.contact-option .ic{
  width: 38px; height: 38px; border-radius: 50%; background: var(--cream);
  display: flex; align-items: center; justify-content: center; color: var(--gold-deep); flex-shrink: 0;
}
.contact-option .ic svg{ width: 18px; height: 18px; }
.contact-option strong{ display:block; font-size: 0.82rem; letter-spacing: 0.03em; }
.contact-option span{ font-size: 0.74rem; color: var(--text-muted); }

/* ==================== FOOTER ==================== */
.site-footer{
  background: var(--ink); color: var(--text-on-dark-muted); padding: 48px 0 28px;
}
.footer-top{
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 24px; padding-bottom: 32px; border-bottom: 1px solid rgba(242,236,224,.12);
}
.footer-logo{ display: flex; align-items: center; gap: 10px; }
.footer-logo img{ height: 52px; }
.footer-meta{ display: flex; align-items: center; gap: 36px; flex-wrap: wrap; font-size: 0.85rem; }
.footer-meta .fm-item{ display: flex; align-items: center; gap: 10px; }
.footer-meta svg{ width: 16px; height: 16px; color: var(--gold-light); flex-shrink: 0; }
.footer-social{ display: flex; gap: 12px; }
.footer-social a{
  width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(242,236,224,.25);
  display: flex; align-items: center; justify-content: center;
}
.footer-social svg{ width: 16px; height: 16px; }
.footer-bottom{ text-align: center; font-size: 0.78rem; padding-top: 24px; }

/* Toast for form feedback */
.form-toast{
  position: fixed; bottom: 24px; right: 24px; z-index: 999;
  background: var(--ink); color: var(--text-on-dark);
  padding: 16px 22px; border-radius: 8px; font-size: 0.88rem;
  box-shadow: var(--shadow-soft);
  transform: translateY(120%); opacity: 0; transition: all .35s ease;
  border-left: 3px solid var(--gold);
  max-width: 320px;
}
.form-toast.show{ transform: translateY(0); opacity: 1; }

/* Booking modal */
.modal-overlay{
  position: fixed; inset: 0; background: rgba(23,20,15,.6);
  display: flex; align-items: center; justify-content: center;
  z-index: 200; padding: 20px; opacity: 0; pointer-events: none; transition: opacity .25s ease;
}
.modal-overlay.open{ opacity: 1; pointer-events: auto; }
.modal-box{
  background: var(--cream); border-radius: 10px; padding: 40px;
  max-width: 460px; width: 100%; position: relative;
  transform: translateY(16px); transition: transform .25s ease;
}
.modal-overlay.open .modal-box{ transform: translateY(0); }
.modal-close{
  position: absolute; top: 16px; right: 16px; background: none; border: 0;
  font-size: 1.3rem; color: var(--text-muted); line-height: 1;
}
.modal-box h3{ margin-bottom: 6px; }
.modal-box p.sub{ font-size: 0.88rem; margin-bottom: 22px; }
.form-row{ margin-bottom: 16px; }
.form-row label{ display: block; font-size: 0.78rem; letter-spacing: 0.04em; margin-bottom: 6px; color: var(--text); }
.form-row input, .form-row select, .form-row textarea{
  width: 100%; border: 1px solid var(--line); border-radius: 6px;
  padding: 12px 14px; font-family: inherit; font-size: 0.9rem; background: var(--white); color: var(--text);
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus{
  outline: 2px solid var(--gold); outline-offset: 1px;
}

/* Focus visibility for accessibility */
a:focus-visible, button:focus-visible{
  outline: 2px solid var(--gold-deep); outline-offset: 2px;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 980px){
  .hero .container{ grid-template-columns: 1fr; padding-top: 48px; }
  .hero-media{ order: -1; max-width: 420px; margin: 0 auto; }
  .benefits ul{ grid-template-columns: repeat(3, 1fr); }
  .steps{ grid-template-columns: repeat(2, 1fr); row-gap: 40px; }
  .step-arrow{ display: none; }
  .results-grid{ grid-template-columns: 1fr; gap: 40px; }
  .pricing-layout{ grid-template-columns: 1fr; }
  .price-cards{ grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .faq-grid{ grid-template-columns: 1fr; }
  .cta-grid{ grid-template-columns: 1fr; }
  .cta-image{ min-height: 240px; }
  .cta-content{ padding: 44px 32px; }
  .contact-options{ grid-template-columns: 1fr; }
}

@media (max-width: 760px){
  .main-nav{
    position: fixed; top: 84px; left: 0; right: 0; bottom: 0;
    background: var(--ink); flex-direction: column; align-items: flex-start;
    padding: 32px 24px; gap: 22px;
    transform: translateX(100%); transition: transform .3s ease;
  }
  .main-nav.open{ transform: translateX(0); }
  .main-nav a{ font-size: 0.95rem; }
  .nav-toggle{ display: block; }
  .header-actions .btn-primary{ padding: 12px 20px; font-size: 0.72rem; }
  .benefits ul{ grid-template-columns: repeat(2, 1fr); }
  .section{ padding: 64px 0; }
  .footer-top{ flex-direction: column; align-items: flex-start; }
  .footer-meta{ flex-direction: column; align-items: flex-start; gap: 12px; }
  .signature-word{ font-size: 2rem; }
  .watermark-ring{ width: 380px; height: 380px; }
}

@media (prefers-reduced-motion: reduce){
  *{ animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}
