/* Salon onboarding page styles */

:root {
  --bg: #FAF7F2;
  --bg-warm: #F5EFE6;
  --fg: #1E1B18;
  --fg-muted: #6B6259;
  --gold: #C9A96E;
  --gold-dark: #A8894E;
  --gold-light: #E8D5B0;
  --terracotta: #C4856A;
  --border: #E2DAC9;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
::selection { background: var(--gold-light); color: var(--fg); }

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 48px;
  background: rgba(250, 247, 242, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(226, 218, 201, 0.5);
}
.nav-logo { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; letter-spacing: -0.02em; color: var(--fg); text-decoration: none; }
.nav-logo span { color: var(--gold); }
.nav-tagline { font-size: 0.75rem; color: var(--fg-muted); letter-spacing: 0.08em; text-transform: uppercase; font-weight: 400; }
.nav-links { display: flex; align-items: center; gap: 24px; }
.nav-link { font-size: 0.85rem; font-weight: 400; color: var(--fg-muted); text-decoration: none; letter-spacing: 0.02em; }
.nav-link:hover { color: var(--fg); }
.nav-cta {
  font-size: 0.8rem; font-weight: 500; color: var(--fg);
  background: var(--gold); padding: 8px 18px; border-radius: 6px;
  text-decoration: none; letter-spacing: 0.02em;
  transition: background 0.15s;
}
.nav-cta:hover { background: var(--gold-dark); color: var(--fg); }

/* PAGE HERO */
.salons-hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: 80px;
  overflow: hidden;
}
.hero-left {
  display: flex; flex-direction: column; justify-content: center;
  padding: 80px 64px 80px 48px;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--gold); font-weight: 500; margin-bottom: 28px;
}
.hero-eyebrow::before { content: ''; display: block; width: 32px; height: 1px; background: var(--gold); }
.hero-headline {
  font-family: var(--font-display); font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 500; line-height: 1.08; letter-spacing: -0.02em; color: var(--fg); margin-bottom: 28px;
}
.hero-headline em { font-style: italic; color: var(--gold); }
.hero-sub { font-size: 1.05rem; color: var(--fg-muted); max-width: 440px; line-height: 1.7; margin-bottom: 48px; font-weight: 300; }
.hero-actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.btn-gold {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; background: var(--gold); color: var(--fg);
  border-radius: 8px; font-size: 0.9rem; font-weight: 500;
  text-decoration: none; font-family: var(--font-body);
  transition: background 0.15s;
}
.btn-gold:hover { background: var(--gold-dark); color: var(--fg); }
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; background: transparent; color: var(--fg);
  border: 1.5px solid var(--border); border-radius: 8px;
  font-size: 0.9rem; font-weight: 500;
  text-decoration: none; font-family: var(--font-body);
  transition: border-color 0.15s;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

.hero-right {
  position: relative;
  background: linear-gradient(135deg, #F0E8D8 0%, #E8D5B0 40%, #C9A96E 100%);
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.hero-visual {
  position: relative; width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
}
.orbit-ring {
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(201, 169, 110, 0.3);
  animation: orbit-spin 20s linear infinite;
}
.orbit-ring:nth-child(1) { width: 300px; height: 300px; top: 50%; left: 50%; transform: translate(-50%, -50%); animation-duration: 24s; }
.orbit-ring:nth-child(2) { width: 420px; height: 420px; top: 50%; left: 50%; transform: translate(-50%, -50%); animation-duration: 36s; animation-direction: reverse; border-color: rgba(201, 169, 110, 0.18); }
.orbit-ring:nth-child(3) { width: 540px; height: 540px; top: 50%; left: 50%; transform: translate(-50%, -50%); animation-duration: 48s; border-color: rgba(201, 169, 110, 0.1); }
@keyframes orbit-spin { from { transform: translate(-50%, -50%) rotate(0deg); } to { transform: translate(-50%, -50%) rotate(360deg); } }

.jewellery-cluster {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 32px;
}
.jewellery-necklace {
  width: 180px; height: 100px;
  border: 3px solid var(--gold);
  border-top: none;
  border-radius: 0 0 90px 90px;
  position: relative;
}
.jewellery-necklace::after { content: ''; position: absolute; bottom: -12px; left: 50%; transform: translateX(-50%); width: 20px; height: 20px; background: var(--gold); border-radius: 50%; }
.jewellery-stone {
  position: absolute; top: -8px; left: 50%; transform: translateX(-50%);
  width: 16px; height: 24px;
  background: linear-gradient(135deg, #F0E8D8, #C9A96E);
  border-radius: 50% 50% 60% 60% / 30% 30% 70% 70%;
  box-shadow: 0 0 12px rgba(201,169,110,0.6);
}
.jewellery-earrings { display: flex; gap: 64px; align-items: flex-start; }
.earring { width: 20px; height: 50px; border: 2px solid var(--gold); border-radius: 50% 50% 40% 40% / 30% 30% 70% 70%; position: relative; }
.earring::before { content: ''; position: absolute; top: -8px; left: 50%; transform: translateX(-50%); width: 8px; height: 8px; background: var(--gold); border-radius: 50%; }
.earring::after { content: ''; position: absolute; bottom: 4px; left: 50%; transform: translateX(-50%); width: 6px; height: 6px; background: var(--gold-dark); border-radius: 50%; }

/* HOW IT WORKS */
.how-it-works { padding: 100px 48px; background: var(--bg-warm); }
.section-header { text-align: center; margin-bottom: 72px; }
.section-label { font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.section-title { font-family: var(--font-display); font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 500; letter-spacing: -0.01em; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px; max-width: 1100px; margin: 0 auto; }
.step { position: relative; }
.step-number { font-family: var(--font-display); font-size: 4rem; font-weight: 400; color: var(--gold-light); line-height: 1; margin-bottom: 24px; }
.step-title { font-family: var(--font-display); font-size: 1.2rem; font-weight: 500; margin-bottom: 12px; }
.step-body { font-size: 0.9rem; color: var(--fg-muted); line-height: 1.7; }
.step-connector { position: absolute; top: 40px; right: -24px; width: 48px; height: 1px; background: var(--border); }

/* BENEFITS */
.benefits { padding: 100px 48px; background: var(--bg); }
.benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; max-width: 1100px; margin: 64px auto 0; }
.benefit-card {
  padding: 40px; background: var(--bg-warm); border: 1px solid var(--border);
  border-radius: 12px; position: relative; overflow: hidden;
}
.benefit-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
}
.benefit-icon { font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; font-weight: 500; }
.benefit-title { font-family: var(--font-display); font-size: 1.3rem; font-weight: 500; margin-bottom: 12px; line-height: 1.3; }
.benefit-body { font-size: 0.88rem; color: var(--fg-muted); line-height: 1.7; }

/* SOCIAL IMPACT */
.impact { padding: 100px 48px; background: var(--fg); color: var(--bg); }
.impact .section-label { color: var(--gold); }
.impact .section-title { color: var(--bg); }
.impact-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 48px; max-width: 1100px; margin: 0 auto; margin-top: 64px; }
.impact-card { padding: 40px; border: 1px solid rgba(201,169,110,0.2); position: relative; }
.impact-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--gold); }
.impact-icon { font-size: 0.7rem; color: var(--gold); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 20px; }
.impact-headline { font-family: var(--font-display); font-size: 1.4rem; font-weight: 500; color: var(--bg); margin-bottom: 12px; line-height: 1.3; }
.impact-body { font-size: 0.85rem; color: rgba(250,247,242,0.6); line-height: 1.7; }

/* INTEREST FORM */
.interest-form-section { padding: 100px 48px; background: var(--bg-warm); }
.form-card {
  max-width: 640px; margin: 0 auto;
  background: var(--bg); border: 1px solid var(--border); border-radius: 16px;
  padding: 56px 48px;
}
.form-card h2 { font-family: var(--font-display); font-size: 2rem; font-weight: 500; margin-bottom: 8px; text-align: center; }
.form-card .form-sub { font-size: 0.9rem; color: var(--fg-muted); text-align: center; margin-bottom: 40px; }

.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 500; margin-bottom: 6px; color: var(--fg); }
.form-group input, .form-group textarea {
  width: 100%; padding: 12px 14px;
  border: 1.5px solid var(--border); border-radius: 8px;
  font-size: 15px; font-family: var(--font-body); color: var(--fg);
  background: #fff; transition: border-color 0.15s; -webkit-appearance: none;
}
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--gold); }
.form-group input::placeholder, .form-group textarea::placeholder { color: #bbb; }
.form-group textarea { resize: vertical; min-height: 100px; }
.required-star { color: #C4856A; }

.form-error-msg {
  background: #fef2f2; color: #dc2626; border-radius: 6px;
  padding: 10px 14px; font-size: 14px; margin-bottom: 20px;
  display: none;
}
.form-error-msg.visible { display: block; }

.form-success-msg {
  background: #f0fdf4; color: #15803d; border-radius: 6px;
  padding: 14px 18px; font-size: 15px; margin-bottom: 20px;
  display: none; text-align: center; line-height: 1.5;
}
.form-success-msg.visible { display: block; }

.form-actions { margin-top: 28px; }
.btn-submit {
  width: 100%; padding: 14px 20px;
  background: var(--terracotta); color: #fff; border: none;
  border-radius: 8px; font-size: 16px; font-weight: 600;
  font-family: var(--font-body); cursor: pointer;
  transition: background 0.15s;
}
.btn-submit:hover:not(:disabled) { background: #b0745c; }
.btn-submit:disabled { opacity: 0.6; cursor: not-allowed; }
.btn-submit.loading { display: flex; align-items: center; justify-content: center; gap: 8px; }

.secure-note {
  display: flex; align-items: center; justify-content: center; gap: 5px;
  font-size: 12px; color: var(--fg-muted); margin-top: 12px;
}

/* FOOTER */
footer { background: var(--fg); padding: 48px; display: flex; align-items: center; justify-content: space-between; }
.footer-brand { font-family: var(--font-display); font-size: 1.2rem; font-weight: 500; color: var(--bg); }
.footer-brand span { color: var(--gold); }
.footer-copy { font-size: 0.75rem; color: rgba(250,247,242,0.4); }
.footer-links { display: flex; gap: 24px; }
.footer-links a { font-size: 0.8rem; color: rgba(250,247,242,0.5); text-decoration: none; }
.footer-links a:hover { color: var(--gold); }

/* Mobile */
@media (max-width: 768px) {
  nav { padding: 16px 24px; }
  .nav-tagline { display: none; }
  .salons-hero { grid-template-columns: 1fr; }
  .hero-right { height: 50vh; }
  .hero-left { padding: 60px 24px 40px; }
  .steps { grid-template-columns: 1fr; gap: 40px; }
  .step-connector { display: none; }
  .benefits-grid { grid-template-columns: 1fr; }
  .impact-grid { grid-template-columns: 1fr; }
  footer { flex-direction: column; gap: 16px; text-align: center; }
  .how-it-works, .benefits, .impact, .interest-form-section { padding: 80px 24px; }
  .form-card { padding: 32px 24px; }
}