/* ColorLab Nail Studio — Shared Landing Page Styles */
:root{
  --rose:#C47A5E; --deep:#2C1F1A; --cream:#FAF7F2; --blush:#EAC9B5;
  --light-blush:#F5E6DC; --warm-white:#FBF8F4; --charcoal:#3A2B25;
  --success:#2D7A3F;
}
*{margin:0;padding:0;box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{font-family:'DM Sans',sans-serif;color:var(--charcoal);background:var(--warm-white);line-height:1.7;font-size:16px;-webkit-font-smoothing:antialiased;}

/* NAV */
nav.lp-nav{position:sticky;top:0;background:rgba(251,248,244,.95);backdrop-filter:blur(12px);padding:1rem 2.5rem;display:flex;justify-content:space-between;align-items:center;border-bottom:1px solid rgba(44,31,26,.06);z-index:100;}
.lp-nav-logo img{height:42px;display:block;}
.lp-nav-links{display:flex;align-items:center;gap:2rem;list-style:none;}
.lp-nav-links a{font-size:.72rem;letter-spacing:.12em;text-transform:uppercase;color:var(--charcoal);text-decoration:none;transition:color .2s;}
.lp-nav-links a:hover, .lp-nav-links a.active{color:var(--rose);}
.lp-nav-book{padding:.5rem 1.2rem;background:var(--deep);color:white !important;border-radius:2px;font-weight:500;}
.lp-nav-book:hover{background:var(--rose);}

/* BREADCRUMB */
.breadcrumb{padding:1.2rem 2.5rem;background:var(--light-blush);font-size:.72rem;color:var(--charcoal);letter-spacing:.05em;}
.breadcrumb a{color:var(--rose);text-decoration:none;}
.breadcrumb a:hover{text-decoration:underline;}
.breadcrumb-sep{margin:0 .6rem;opacity:.4;}

/* HERO */
.lp-hero{padding:5rem 2.5rem 3.5rem;text-align:center;background:linear-gradient(180deg,var(--cream) 0%,var(--light-blush) 100%);}
.lp-hero.dark{background:var(--deep);color:var(--cream);}
.eyebrow{font-size:.7rem;letter-spacing:.25em;text-transform:uppercase;color:var(--rose);margin-bottom:1.2rem;}
.lp-hero.dark .eyebrow{color:var(--blush);}
.lp-title{font-family:'Cormorant Garamond',serif;font-size:clamp(2.4rem,5.5vw,4rem);font-weight:300;line-height:1.05;margin-bottom:1.3rem;letter-spacing:-.01em;}
.lp-title em{font-style:italic;color:var(--rose);}
.lp-hero.dark .lp-title{color:var(--cream);}
.lp-hero.dark .lp-title em{color:var(--blush);}
.lp-subtitle{font-size:1.05rem;color:rgba(44,31,26,.7);max-width:660px;margin:0 auto 2rem;line-height:1.7;}
.lp-hero.dark .lp-subtitle{color:rgba(250,247,242,.7);}
.lp-hero-meta{display:flex;justify-content:center;gap:2rem;flex-wrap:wrap;margin-top:2rem;font-size:.78rem;letter-spacing:.06em;color:var(--charcoal);}
.lp-hero.dark .lp-hero-meta{color:rgba(250,247,242,.65);}
.lp-hero-meta strong{color:var(--rose);font-weight:600;}
.lp-hero.dark .lp-hero-meta strong{color:var(--blush);}

/* BUTTONS */
.btn-primary{display:inline-block;background:var(--deep);color:white;padding:.95rem 2rem;text-decoration:none;border-radius:2px;font-size:.78rem;letter-spacing:.14em;text-transform:uppercase;font-weight:500;transition:all .2s;border:none;cursor:pointer;}
.btn-primary:hover{background:var(--rose);transform:translateY(-1px);}
.btn-outline{display:inline-block;border:1px solid var(--charcoal);color:var(--charcoal);padding:.92rem 2rem;text-decoration:none;border-radius:2px;font-size:.78rem;letter-spacing:.14em;text-transform:uppercase;font-weight:500;transition:all .2s;}
.btn-outline:hover{background:var(--charcoal);color:white;}

/* SECTIONS */
section.lp-section{padding:5rem 2.5rem;}
.lp-inner{max-width:1080px;margin:0 auto;}
.lp-inner-narrow{max-width:760px;margin:0 auto;}
.lp-label{font-size:.7rem;letter-spacing:.25em;text-transform:uppercase;color:var(--rose);margin-bottom:1rem;text-align:center;}
.lp-h2{font-family:'Cormorant Garamond',serif;font-size:clamp(1.9rem,4vw,2.6rem);font-weight:300;color:var(--deep);text-align:center;margin-bottom:1.2rem;line-height:1.15;}
.lp-h2 em{font-style:italic;color:var(--rose);}
.lp-h2-desc{font-size:.95rem;color:rgba(44,31,26,.65);text-align:center;max-width:600px;margin:0 auto 2.5rem;line-height:1.7;}

/* FEATURE CARDS */
.feature-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.5rem;margin-top:2rem;}
.feature-card{background:white;padding:2rem 1.6rem;border-radius:6px;border:1px solid rgba(44,31,26,.06);transition:all .2s;}
.feature-card:hover{transform:translateY(-2px);box-shadow:0 8px 24px rgba(44,31,26,.06);}
.feature-icon{width:44px;height:44px;background:var(--light-blush);border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:1.2rem;margin-bottom:1.2rem;color:var(--rose);}
.feature-title{font-family:'Cormorant Garamond',serif;font-size:1.35rem;color:var(--deep);font-weight:400;margin-bottom:.5rem;}
.feature-text{font-size:.88rem;color:rgba(44,31,26,.7);line-height:1.7;}

/* PRICING TABLE */
.lp-pricing{max-width:720px;margin:2rem auto 0;background:white;border-radius:6px;overflow:hidden;box-shadow:0 4px 32px rgba(44,31,26,.08);}
.lp-price-row{display:grid;grid-template-columns:1fr auto;align-items:center;padding:1.2rem 1.6rem;border-bottom:1px solid rgba(44,31,26,.07);gap:1.5rem;}
.lp-price-row:last-child{border-bottom:none;}
.lp-price-row.head{background:var(--deep);color:var(--cream);padding:1rem 1.6rem;font-size:.7rem;letter-spacing:.15em;text-transform:uppercase;}
.lp-price-row.featured{background:var(--light-blush);}
.lp-price-name{font-size:.95rem;color:var(--charcoal);font-weight:500;}
.lp-price-name small{display:block;font-size:.72rem;color:rgba(44,31,26,.55);font-weight:400;margin-top:.2rem;letter-spacing:0;}
.lp-price-amt{font-family:'Cormorant Garamond',serif;font-size:1.7rem;font-weight:300;color:var(--rose);text-align:right;}
.lp-price-amt small{font-size:.7rem;color:rgba(44,31,26,.5);font-weight:400;display:block;}

/* PROCESS STEPS */
.steps{display:grid;grid-template-columns:repeat(4,1fr);gap:1.4rem;margin-top:2rem;}
.step{position:relative;padding:1.4rem 1.2rem;background:var(--cream);border-radius:6px;}
.step-num{font-family:'Cormorant Garamond',serif;font-size:2.5rem;font-style:italic;color:var(--blush);line-height:1;margin-bottom:.6rem;}
.step-title{font-size:.95rem;color:var(--deep);font-weight:600;margin-bottom:.5rem;}
.step-text{font-size:.82rem;color:rgba(44,31,26,.65);line-height:1.65;}

/* TRUST BAR */
.trust-bar{background:var(--deep);color:rgba(255,255,255,.85);padding:3rem 2.5rem;text-align:center;}
.trust-bar h3{font-family:'Cormorant Garamond',serif;font-size:1.8rem;color:var(--cream);font-weight:300;margin-bottom:.8rem;font-style:italic;}
.trust-items{display:flex;justify-content:center;gap:2.5rem;flex-wrap:wrap;margin-top:1.5rem;font-size:.78rem;letter-spacing:.06em;}
.trust-items strong{color:var(--blush);font-weight:600;}

/* IMAGE GRID */
.lp-gallery{display:grid;grid-template-columns:repeat(4,1fr);gap:.8rem;margin-top:2rem;}
.lp-gallery a{display:block;border-radius:4px;overflow:hidden;cursor:pointer;background:var(--charcoal);aspect-ratio:1/1;}
.lp-gallery img{width:100%;height:100%;object-fit:cover;display:block;transition:transform .4s ease;}
.lp-gallery a:hover img{transform:scale(1.05);}

/* FAQ */
.faq-list{max-width:760px;margin:2rem auto 0;}
.faq-item{background:white;margin-bottom:.7rem;border-radius:4px;overflow:hidden;border:1px solid rgba(44,31,26,.07);}
.faq-q{padding:1.2rem 1.4rem;cursor:pointer;display:flex;align-items:center;justify-content:space-between;gap:1rem;font-size:.95rem;font-weight:500;color:var(--charcoal);transition:background .2s;list-style:none;}
.faq-q::-webkit-details-marker{display:none;}
.faq-q::after{content:"+";font-size:1.4rem;color:var(--rose);font-weight:300;flex-shrink:0;transition:transform .2s;}
.faq-item[open] .faq-q::after{transform:rotate(45deg);}
.faq-item[open] .faq-q{background:var(--light-blush);}
.faq-q:hover{background:var(--light-blush);}
.faq-a{padding:0 1.4rem 1.2rem;font-size:.88rem;line-height:1.75;color:rgba(44,31,26,.78);}
.faq-a a{color:var(--rose);text-decoration:none;border-bottom:1px solid var(--rose);}

/* FINAL CTA */
.lp-cta{background:linear-gradient(135deg,var(--deep) 0%,#1F1410 100%);color:white;padding:4.5rem 2.5rem;text-align:center;}
.lp-cta h2{font-family:'Cormorant Garamond',serif;font-size:clamp(2rem,4vw,2.8rem);color:var(--cream);font-weight:300;margin-bottom:1rem;font-style:italic;}
.lp-cta p{color:rgba(255,255,255,.7);font-size:1rem;max-width:540px;margin:0 auto 2rem;line-height:1.7;}
.lp-cta .btn-primary{background:var(--rose);}
.lp-cta .btn-primary:hover{background:var(--blush);color:var(--deep);}

/* RELATED LINKS */
.related-links{padding:3rem 2.5rem;background:var(--warm-white);text-align:center;border-top:1px solid rgba(44,31,26,.06);}
.related-links p{font-size:.65rem;letter-spacing:.2em;text-transform:uppercase;color:var(--rose);margin-bottom:1rem;}
.related-grid{display:flex;justify-content:center;gap:.8rem;flex-wrap:wrap;}
.related-grid a{padding:.6rem 1.2rem;background:white;border:1px solid rgba(44,31,26,.1);border-radius:2px;color:var(--charcoal);text-decoration:none;font-size:.78rem;transition:all .2s;}
.related-grid a:hover{border-color:var(--rose);color:var(--rose);}

/* FOOTER */
footer.lp-footer{background:var(--deep);color:rgba(255,255,255,.6);padding:3rem 2rem 2rem;text-align:center;}
.lp-footer-name{font-family:'Cormorant Garamond',serif;font-size:1.4rem;color:var(--cream);letter-spacing:.05em;margin-bottom:.4rem;}
.lp-footer-name em{color:var(--blush);font-style:italic;}
.lp-footer p{font-size:.78rem;margin-bottom:.5rem;}
.lp-footer a{color:var(--blush);text-decoration:none;}
.lp-footer a:hover{color:var(--cream);}
.lp-footer-nav{margin:1.4rem 0;}
.lp-footer-nav a{margin:0 .6rem;font-size:.74rem;}
.lp-footer-copy{margin-top:1.4rem;font-size:.7rem;opacity:.55;}

/* RESPONSIVE */
@media(max-width:880px){
  .feature-grid{grid-template-columns:1fr 1fr;}
  .steps{grid-template-columns:1fr 1fr;}
  .lp-gallery{grid-template-columns:1fr 1fr;}
}
@media(max-width:600px){
  nav.lp-nav{padding:.9rem 1.4rem;}
  .lp-nav-links li:not(:last-child){display:none;}
  .breadcrumb{padding:.9rem 1.4rem;font-size:.65rem;}
  .lp-hero{padding:3.5rem 1.4rem 2.5rem;}
  section.lp-section{padding:3.5rem 1.4rem;}
  .feature-grid{grid-template-columns:1fr;}
  .steps{grid-template-columns:1fr;}
  .lp-gallery{grid-template-columns:1fr 1fr;}
  .trust-items{flex-direction:column;gap:.8rem;}
  .lp-cta{padding:3rem 1.4rem;}
  .related-links{padding:2rem 1.4rem;}
  .lp-price-row{padding:1rem 1.2rem;gap:.8rem;}
  .lp-price-amt{font-size:1.4rem;}
  .lp-hero-meta{gap:.6rem 1.4rem;font-size:.7rem;}
}
