/* ---------- Reset & tokens ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Poppins', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-weight: 400;
  color: #1a1a1a;
  background: #ffffff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

:root {
  --navy: #2F3E5A;
  --navy-deep: #253247;
  --blue: #5476A6;
  --blue-bright: #3B90E8;
  --sky: #8FD8F5;
  --gray-bg: #F5F6F8;
  --gray-line: #E4E7EC;
  --text: #1a1a1a;
  --text-mute: #556170;
  --white: #ffffff;
  --max: 1160px;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

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

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.2px;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  border: 2px solid transparent;
  cursor: pointer;
}
.btn:hover { transform: translateY(-1px); box-shadow: 0 8px 20px rgba(47,62,90,.15); }
.btn-primary { background: var(--blue-bright); color: #fff; }
.btn-primary:hover { background: #2f7fd6; }
.btn-outline { background: transparent; color: #fff; border-color: #fff; }
.btn-outline:hover { background: #fff; color: var(--navy); }
.btn-light { background: #fff; color: var(--navy); }
.btn-light:hover { background: var(--gray-bg); }

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(47, 62, 90, 0.98);
  backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
  position: relative;
}
.nav-logo { display: inline-flex; align-items: center; }
.nav-logo img { height: 48px; width: auto; }
.nav-logo-text { color: #fff; font-weight: 600; font-size: 20px; letter-spacing: 1px; }
.nav-logo-text em { font-style: normal; font-weight: 300; opacity: .8; margin-left: 4px; }

.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: max-content;
}
.nav-links a { color: #E7ECF3; font-size: 15px; font-weight: 400; transition: color .15s ease; }
.nav-links a:hover { color: #fff; }
.nav-links .nav-cta {
  border: 1px solid rgba(255,255,255,.35);
  padding: 8px 16px;
  border-radius: 4px;
}
.nav-links .nav-cta:hover { background: #fff; color: var(--navy); border-color: #fff; }

.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  padding: 8px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  margin: 5px 0;
  transition: transform .2s ease, opacity .2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background-color: var(--navy);
  background-image: url('assets/SS Hands.png'), linear-gradient(180deg, var(--navy) 0%, var(--navy-deep) 100%);
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: 100% auto;
  color: #fff;
  padding: 100px 0 140px;
  overflow: hidden;
  text-align: center;
}
.hero-inner { position: relative; z-index: 2; }
.hero h1 {
  font-weight: 300;
  font-size: clamp(38px, 6vw, 68px);
  line-height: 1.1;
  margin: 0 0 20px;
  letter-spacing: -0.5px;
}
.hero h1 .accent { color: var(--sky); font-weight: 400; }
.hero-tagline {
  font-size: clamp(16px, 1.6vw, 20px);
  font-weight: 500;
  letter-spacing: 0.3px;
  color: var(--sky);
  margin: 0 0 12px;
  text-transform: none;
}
.hero-sub {
  max-width: 620px;
  margin: 0 auto 40px;
  font-size: clamp(15px, 1.4vw, 18px);
  color: #cfd7e2;
  font-weight: 300;
}
.hero-ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 32px;
}
.categories .hero-ctas {
  margin-top: 64px;
}
.categories .hero-ctas .btn {
  padding: 18px 36px;
  font-size: 18px;
}

/* ---------- Section titles ---------- */
.section-title {
  text-align: center;
  font-weight: 300;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.2;
  color: var(--navy);
  margin: 0 0 56px;
}
.section-title.light { color: #fff; }
.section-title .accent { color: var(--blue-bright); font-weight: 500; }
.section-title .accent-light { color: var(--sky); font-weight: 500; }

.eyebrow {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--blue-bright);
  font-weight: 600;
  margin-bottom: 12px;
}
.eyebrow.light { color: var(--sky); }

/* ---------- Categories ---------- */
.categories {
  display: flex;
  align-items: center;
  min-height: 640px;
  padding: 60px 0;
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-deep) 100%);
}
.categories .container { width: 100%; }
.cat-services {
  text-align: center;
  color: rgba(255,255,255,.85);
  font-size: 22px;
  font-weight: 500;
  margin: -32px 0 0;
}

/* ---------- Two-col layout (Salons, Stylists, About) ---------- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.two-col.reverse .col-text { order: 2; }
.two-col.reverse .col-visual { order: 1; }
.col-text h2 {
  font-weight: 300;
  font-size: clamp(28px, 3.5vw, 40px);
  line-height: 1.2;
  color: var(--navy);
  margin: 0 0 20px;
}
.col-text p {
  font-size: 16px;
  color: var(--text-mute);
  margin: 0 0 20px;
}
.col-text p.lead { color: var(--text); font-size: 17px; }
.check-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
}
.check-list li {
  padding: 10px 0 10px 32px;
  position: relative;
  font-size: 16px;
  color: var(--text);
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 10px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--blue-bright);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.check-list.light li { color: #fff; }
.check-list.light li::before { background: #fff; color: var(--blue-bright); }

/* ---------- Salons ---------- */
.salons { padding: 100px 0; background: var(--gray-bg); }
.salon-visual {
  aspect-ratio: 4/3;
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(47,62,90,.5), rgba(84,118,166,.3)),
    radial-gradient(circle at 30% 30%, #fff 0%, #F5F6F8 60%);
  background-size: cover;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(47,62,90,.12);
}
.salon-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---------- Stylists ---------- */
.stylists {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--blue-bright) 0%, #2F7FD6 100%);
  color: #fff;
}
.stylists .col-text h2 { color: #fff; }
.stylists .col-text p { color: rgba(255,255,255,.9); }
.stylist-visual {
  aspect-ratio: 4/3;
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.15), rgba(255,255,255,0)),
    radial-gradient(circle at 70% 40%, rgba(255,255,255,.25) 0%, transparent 60%);
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,.12);
}
.stylist-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.stylist-visual-logo {
  object-fit: contain !important;
  padding: 15%;
}

/* ---------- How ---------- */
.how { padding: 100px 0; background: #fff; }
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 40px;
  text-align: center;
}
.step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--blue-bright);
  color: #fff;
  font-weight: 600;
  font-size: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.step h3 {
  font-size: 20px;
  font-weight: 500;
  color: var(--navy);
  margin: 0 0 10px;
}
.step p {
  color: var(--text-mute);
  font-size: 15px;
  max-width: 260px;
  margin: 0 auto;
}

/* ---------- Pricing ---------- */
.pricing { padding: 100px 0; background: var(--gray-bg); }
.pricing-sub {
  text-align: center;
  color: var(--text-mute);
  max-width: 560px;
  margin: -32px auto 48px;
  font-size: 16px;
}
.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  align-items: stretch;
}
.price-card {
  background: #fff;
  border: 1px solid var(--gray-line);
  border-radius: 10px;
  padding: 36px 28px;
  text-align: center;
  position: relative;
  transition: box-shadow .2s ease, transform .2s ease;
}
.price-card:hover { box-shadow: 0 10px 24px rgba(47,62,90,.08); transform: translateY(-3px); }
.price-card h3 {
  margin: 0 0 12px;
  font-size: 18px;
  font-weight: 500;
  color: var(--navy);
}
.price-amount {
  font-size: 34px;
  font-weight: 600;
  color: var(--blue-bright);
  margin-bottom: 16px;
}
.price-amount span { font-size: 15px; font-weight: 400; color: var(--text-mute); }
.price-card p { color: var(--text-mute); font-size: 14.5px; margin: 0; line-height: 1.7; }
.price-card.featured {
  border-color: var(--blue-bright);
  box-shadow: 0 20px 40px rgba(47,62,90,.12);
}
.price-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue-bright);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
}

/* ---------- About ---------- */
.about { padding: 100px 0; background: #fff; }
.about .col-text p,
.about .col-text p.lead,
.about .col-text strong { color: #000000; }
.about-visual {
  aspect-ratio: 4/5;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--navy) 100%);
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(47,62,90,.15);
}
.about-visual .headshot {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}
.headshot-placeholder {
  position: absolute;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.6);
  font-weight: 300;
  letter-spacing: 3px;
  font-size: 13px;
  text-transform: uppercase;
}

/* ---------- Testimonials ---------- */
.testimonials { padding: 100px 0; background: var(--gray-bg); }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.testi {
  background: #fff;
  border-radius: 10px;
  padding: 36px 30px 30px;
  box-shadow: 0 4px 20px rgba(47,62,90,.05);
  position: relative;
  display: flex;
  flex-direction: column;
}
.quote-mark {
  font-size: 72px;
  color: var(--gray-line);
  line-height: 0.8;
  font-family: Georgia, serif;
  margin-bottom: 8px;
}
.testi p {
  font-style: italic;
  color: var(--text-mute);
  font-size: 15px;
  line-height: 1.7;
  margin: 0 0 24px;
  flex: 1;
}
.testi-author {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid var(--gray-line);
}
.testi-author strong {
  display: block;
  color: var(--navy);
  font-size: 17px;
  font-weight: 500;
}
.testi-author span {
  color: var(--text-mute);
  font-size: 13px;
}

/* ---------- FAQ ---------- */
.faq { padding: 100px 0; background: #fff; }
.faq-list {
  max-width: 780px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--gray-line);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 32px 22px 0;
  font-size: 16px;
  font-weight: 500;
  color: var(--navy);
  position: relative;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 20px;
  font-size: 22px;
  font-weight: 300;
  color: var(--blue-bright);
  transition: transform .2s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p {
  margin: 0 0 24px;
  color: var(--text-mute);
  font-size: 15px;
  line-height: 1.7;
  max-width: 680px;
}

/* ---------- Contact ---------- */
.contact {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: #fff;
}
.contact-sub {
  text-align: center;
  color: #cfd7e2;
  max-width: 560px;
  margin: -32px auto 40px;
  font-weight: 300;
  font-size: 17px;
}
/* Form tabs */
.form-tabs {
  max-width: 780px;
  margin: 0 auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.form-tab {
  background: rgba(255,255,255,.06);
  color: #cfd7e2;
  border: 1px solid rgba(255,255,255,.12);
  border-bottom: none;
  padding: 20px 24px;
  cursor: pointer;
  font-family: inherit;
  text-align: center;
  transition: background .15s ease, color .15s ease;
  border-radius: 12px 12px 0 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.form-tab:first-child { border-radius: 12px 0 0 0; }
.form-tab:last-child { border-radius: 0 12px 0 0; }
.form-tab:hover { background: rgba(255,255,255,.1); color: #fff; }
.form-tab.active {
  background: #fff;
  color: var(--navy);
  border-color: #fff;
}
.tab-eyebrow {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  opacity: 0.7;
}
.form-tab.active .tab-eyebrow { color: var(--blue-bright); opacity: 1; }
.tab-label { font-size: 17px; font-weight: 500; }

/* Form panels */
.form-card {
  max-width: 780px;
  margin: 0 auto;
  background: #fff;
  color: var(--text);
  border-radius: 0 0 12px 12px;
  padding: 40px;
  box-shadow: 0 30px 60px rgba(0,0,0,.25);
}
.form-panel { display: none; }
.form-panel.active { display: block; }
.form-card iframe { width: 100%; border: 0; }
.form-placeholder {
  text-align: center;
  padding: 40px 20px;
  border: 2px dashed var(--gray-line);
  border-radius: 8px;
}
.form-placeholder h3 {
  color: var(--navy);
  margin: 0 0 12px;
  font-weight: 500;
}
.form-placeholder p { color: var(--text-mute); font-size: 14px; margin: 8px 0; }
.form-placeholder code {
  background: var(--gray-bg);
  padding: 2px 6px;
  border-radius: 3px;
  font-size: 13px;
  color: var(--navy);
}
.form-placeholder a { color: var(--blue-bright); text-decoration: underline; }
.form-placeholder details {
  margin-top: 20px;
  padding: 16px;
  background: var(--gray-bg);
  border-radius: 6px;
  text-align: left;
}
.form-placeholder summary {
  cursor: pointer;
  color: var(--navy);
  font-weight: 500;
  font-size: 14px;
}
.form-placeholder ol {
  margin: 14px 0 0;
  padding-left: 22px;
  color: var(--text-mute);
  font-size: 13.5px;
  line-height: 1.8;
}
.form-placeholder ol strong { color: var(--navy); }

/* ---------- Footer ---------- */
.footer {
  background: var(--navy-deep);
  color: #cfd7e2;
  padding-top: 70px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 50px;
}
.footer-logo {
  height: 64px;
  width: auto;
  margin-bottom: 16px;
}
.footer-tagline {
  color: var(--sky);
  font-weight: 500;
  font-size: 15px;
  margin: 0 0 12px !important;
}
.footer p { font-size: 14px; margin: 0 0 10px; line-height: 1.7; }
.footer h4 {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  margin: 0 0 16px;
  letter-spacing: 0.5px;
}
.footer a { color: var(--sky); transition: color .15s ease; }
.footer a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 22px 0;
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,.5);
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .two-col { grid-template-columns: 1fr; gap: 40px; }
  .two-col.reverse .col-text { order: 1; }
  .two-col.reverse .col-visual { order: 2; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .testi-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  .testi-grid { grid-template-columns: 1fr; }
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    transform: none;
    width: auto;
    background: var(--navy);
    flex-direction: column;
    gap: 0;
    padding: 12px 24px 20px;
    border-bottom: 1px solid rgba(255,255,255,.08);
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links a {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,.06);
    width: 100%;
  }
  .nav-links .nav-cta {
    margin-top: 8px;
    text-align: center;
    border: 1px solid rgba(255,255,255,.35);
  }
  .hero { padding: 70px 0 90px; }
  .salons, .stylists, .how, .pricing, .about, .testimonials, .faq, .contact { padding: 70px 0; }
  .categories { min-height: 480px; padding: 40px 0; }
  .form-card { padding: 24px; }
  .section-title { margin-bottom: 40px; }
}

@media (max-width: 440px) {
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { width: 100%; text-align: center; }
  .container { padding: 0 18px; }
}
