/* ============================================
   GlamOps — Theme CSS
   ============================================ */

:root {
  --cream: #FAF8F5;
  --cream-dark: #F0EDE8;
  --charcoal: #1A1A1A;
  --charcoal-light: #3A3A3A;
  --rose: #C4956A;
  --rose-light: #D4AA85;
  --warm-gray: #9A8F86;
  --warm-gray-light: #C4BDB5;
  --white: #FFFFFF;
  --green: #4CAF7A;
  --amber: #E8A54B;

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'DM Sans', system-ui, sans-serif;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
}

/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; }
body {
  background: var(--cream);
  color: var(--charcoal);
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* NAV */
.nav {
  padding: 24px 48px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(250, 248, 245, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(154, 143, 134, 0.15);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; max-width: 1200px; margin: 0 auto; }
.nav-logo { font-family: var(--font-serif); font-size: 1.5rem; font-weight: 600; color: var(--charcoal); letter-spacing: -0.01em; }
.nav-tagline { font-size: 0.8rem; color: var(--warm-gray); font-weight: 400; }

/* HERO */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 100vh;
  padding-top: 80px;
  align-items: center;
  overflow: hidden;
}
.hero-content {
  padding: 80px 64px 80px 48px;
  max-width: 600px;
}
.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--rose);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 20px;
}
.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 5vw, 4rem);
  font-weight: 600;
  line-height: 1.1;
  color: var(--charcoal);
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}
.hero-headline-light {
  font-weight: 400;
  color: var(--warm-gray);
  font-style: italic;
}
.hero-sub {
  font-size: 1.05rem;
  color: var(--charcoal-light);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 40px;
}
.hero-meta {
  display: flex;
  align-items: center;
  gap: 24px;
}
.hero-stat { display: flex; flex-direction: column; }
.hero-stat-num {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1;
  margin-bottom: 4px;
}
.hero-stat-label {
  font-size: 0.75rem;
  color: var(--warm-gray);
  max-width: 100px;
  line-height: 1.4;
}
.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: var(--warm-gray-light);
}

/* HERO VISUAL */
.hero-visual {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #E8DDD4 0%, #D4C4B0 40%, #C4956A 70%, #B8805A 100%);
  overflow: hidden;
}
.hero-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 40%, rgba(255,255,255,0.12) 0%, transparent 70%);
}
.hero-card {
  background: rgba(255,255,255,0.95);
  border-radius: var(--radius-lg);
  box-shadow: 0 32px 80px rgba(0,0,0,0.18), 0 8px 24px rgba(0,0,0,0.1);
  width: 320px;
  overflow: hidden;
  position: relative;
  z-index: 2;
}
.hero-card-header {
  background: #F5F0EB;
  padding: 12px 16px;
  display: flex;
  gap: 6px;
  border-bottom: 1px solid rgba(154,143,134,0.2);
}
.hero-card-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--warm-gray-light);
}
.hero-card-body { padding: 20px 16px; }
.hc-booking { display: flex; flex-direction: column; gap: 0; }
.hc-row { display: flex; align-items: center; gap: 10px; padding: 10px 0; border-bottom: 1px solid rgba(154,143,134,0.12); }
.hc-row-head { justify-content: space-between; font-size: 0.75rem; color: var(--warm-gray); padding-bottom: 8px; }
.hc-row:last-child { border-bottom: none; }
.hc-avatar {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--cream-dark);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; font-weight: 600; color: var(--charcoal-light);
  flex-shrink: 0;
}
.hc-avatar-gold { background: #F0E0CC; color: var(--rose); }
.hc-info { flex: 1; display: flex; flex-direction: column; gap: 2px; }
.hc-name { font-size: 0.82rem; font-weight: 500; color: var(--charcoal); }
.hc-service { font-size: 0.72rem; color: var(--warm-gray); }
.hc-status { font-size: 0.7rem; font-weight: 500; padding: 3px 8px; border-radius: 20px; }
.hc-status-confirm { background: rgba(76, 175, 122, 0.12); color: #2D7A52; }
.hc-status-pending { background: rgba(232, 165, 75, 0.12); color: #A07820; }
.hc-status-done { background: var(--cream-dark); color: var(--warm-gray); }

/* SECTION LABELS */
.section-label {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--rose);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 500;
  line-height: 1.2;
  color: var(--charcoal);
  letter-spacing: -0.02em;
}

/* FEATURES */
.features {
  padding: 100px 48px;
  background: var(--white);
}
.features-header {
  max-width: 560px;
  margin-bottom: 64px;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}
.feature-card {
  padding: 32px 28px;
  background: var(--cream);
  border-radius: var(--radius-md);
  border: 1px solid rgba(154,143,134,0.15);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.08);
}
.feature-icon {
  width: 44px; height: 44px;
  border-radius: var(--radius-sm);
  background: var(--white);
  display: flex; align-items: center; justify-content: center;
  color: var(--rose);
  margin-bottom: 20px;
  border: 1px solid rgba(196, 149, 106, 0.2);
}
.feature-title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 12px;
}
.feature-desc {
  font-size: 0.88rem;
  color: var(--warm-gray);
  line-height: 1.65;
}

/* HOW IT WORKS */
.howitworks {
  padding: 100px 48px;
  background: var(--cream);
  text-align: center;
}
.howitworks .section-label, .howitworks .section-title { margin-bottom: 0; }
.howitworks .section-title { margin-bottom: 64px; }
.steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  max-width: 900px;
  margin: 0 auto;
}
.step {
  flex: 1;
  max-width: 260px;
  text-align: center;
}
.step-num {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 600;
  color: var(--rose-light);
  margin-bottom: 16px;
  line-height: 1;
}
.step-title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 12px;
}
.step-desc {
  font-size: 0.88rem;
  color: var(--warm-gray);
  line-height: 1.65;
}
.step-connector {
  width: 80px;
  height: 1px;
  background: linear-gradient(to right, var(--warm-gray-light), var(--rose-light));
  flex-shrink: 0;
}

/* DIFFERENT */
.different {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--charcoal);
  color: var(--cream);
}
.different-content {
  padding: 100px 64px;
}
.different-content .section-label { color: var(--rose-light); }
.different-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 400;
  line-height: 1.25;
  color: var(--cream);
  letter-spacing: -0.02em;
  margin-bottom: 40px;
}
.diff-points { display: flex; flex-direction: column; gap: 16px; }
.diff-item { display: flex; align-items: flex-start; gap: 14px; }
.diff-check {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--rose);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: white;
  margin-top: 2px;
}
.diff-item span { font-size: 0.95rem; color: var(--warm-gray-light); line-height: 1.5; }
.different-quote {
  background: linear-gradient(135deg, #2A2A2A 0%, #1A1A1A 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 48px;
}
.quote-block { max-width: 380px; }
.quote-block p {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-style: italic;
  font-weight: 400;
  color: var(--cream);
  line-height: 1.5;
  margin-bottom: 24px;
}
.quote-block cite {
  font-size: 0.8rem;
  color: var(--warm-gray);
  font-style: normal;
}

/* CLOSING */
.closing {
  padding: 120px 48px;
  background: var(--cream);
  text-align: center;
}
.closing-inner { max-width: 720px; margin: 0 auto; }
.closing-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  line-height: 1.2;
  color: var(--charcoal);
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.closing-sub {
  font-size: 1rem;
  color: var(--warm-gray);
  line-height: 1.65;
}

/* FOOTER */
.footer {
  padding: 48px;
  background: var(--charcoal);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-logo {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 8px;
  display: block;
}
.footer-tagline { font-size: 0.8rem; color: var(--warm-gray); }
.footer-legal span { font-size: 0.8rem; color: var(--warm-gray); }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-visual { display: none; }
  .hero-content { padding: 100px 32px 60px; }
  .different { grid-template-columns: 1fr; }
  .different-quote { padding: 60px 32px; }
}

@media (max-width: 640px) {
  .nav { padding: 16px 24px; }
  .hero-content { padding: 90px 24px 48px; }
  .features { padding: 64px 24px; }
  .features-grid { grid-template-columns: 1fr; }
  .howitworks { padding: 64px 24px; }
  .steps { flex-direction: column; gap: 32px; }
  .step-connector { width: 1px; height: 40px; background: var(--warm-gray-light); }
  .different-content { padding: 64px 24px; }
  .closing { padding: 80px 24px; }
  .footer-inner { flex-direction: column; gap: 16px; text-align: center; }
  .hero-meta { flex-direction: column; align-items: flex-start; gap: 12px; }
  .hero-stat-divider { display: none; }
}