/* RezDesk — warm, editorial, premium */

:root {
  --bg: #F7F4EF;
  --bg-alt: #EDE9E2;
  --fg: #111111;
  --fg-muted: #6B6560;
  --accent: #C9966B;
  --accent-dark: #A6784E;
  --white: #FFFFFF;
  --border: #DDD8CF;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 60px 60px;
  position: relative;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.hero-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}

.hero-headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(52px, 6vw, 88px);
  font-weight: 500;
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 28px;
}

.hero-headline em {
  font-style: italic;
  color: var(--accent);
}

.hero-sub {
  font-size: 18px;
  color: var(--fg-muted);
  max-width: 440px;
  line-height: 1.65;
}

.hero-aside {
  display: flex;
  align-items: center;
}

.hero-aside-inner {
  background: var(--fg);
  border-radius: 16px;
  padding: 28px;
  width: 100%;
  max-width: 420px;
}

.call-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  color: rgba(255,255,255,0.6);
  font-size: 12px;
  font-weight: 500;
}

.call-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4ade80;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.call-thread {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}

.call-msg p {
  font-size: 13px;
  line-height: 1.5;
}

.call-msg--ai {
  background: rgba(255,255,255,0.1);
  border-radius: 12px 12px 12px 4px;
  padding: 10px 14px;
  color: rgba(255,255,255,0.9);
  max-width: 85%;
}

.call-msg--caller {
  background: var(--accent);
  border-radius: 12px 12px 4px 12px;
  padding: 10px 14px;
  color: var(--fg);
  align-self: flex-end;
  max-width: 85%;
}

.booking-confirmed {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(74, 222, 128, 0.15);
  border: 1px solid rgba(74, 222, 128, 0.3);
  border-radius: 8px;
  padding: 8px 14px;
  color: #4ade80;
  font-size: 12px;
  font-weight: 500;
}

.booking-confirmed-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(74, 222, 128, 0.2);
  flex-shrink: 0;
}

.hero-stats-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 4px;
}

.hero-stat {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.hero-stat-num {
  font-size: 20px;
  font-weight: 600;
  color: var(--accent);
}

.hero-stat-label {
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  font-weight: 400;
}

.hero-stat-divider {
  width: 1px;
  height: 20px;
  background: rgba(255,255,255,0.15);
}

.hero-scroll-hint {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--fg-muted);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 60px;
  margin-left: 20px;
}

/* STATS */
.stats {
  background: var(--fg);
  padding: 80px 60px;
}

.stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0;
}

.stat-item {
  flex: 1;
  padding: 0 40px;
}

.stat-item:first-child { padding-left: 0; }
.stat-item:last-child { padding-right: 0; }

.stat-number {
  display: block;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 56px;
  font-weight: 600;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 12px;
}

.stat-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  max-width: 220px;
}

.stat-divider {
  width: 1px;
  height: 80px;
  background: rgba(255,255,255,0.12);
  flex-shrink: 0;
}

/* HOW IT WORKS */
.howitworks {
  padding: 120px 60px;
  background: var(--bg-alt);
}

.howitworks-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.section-headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 500;
  line-height: 1.15;
  color: var(--fg);
  margin-bottom: 72px;
  max-width: 600px;
}

.steps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px 80px;
}

.step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.step-num {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 42px;
  font-weight: 400;
  color: var(--border);
  line-height: 1;
  flex-shrink: 0;
  width: 56px;
}

.step-content h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 10px;
}

.step-content p {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* FEATURES */
.features {
  padding: 120px 60px;
  background: var(--bg);
}

.features-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}

.feature-card {
  background: var(--bg);
  padding: 40px 36px;
  transition: background 0.2s;
}

.feature-card:hover {
  background: var(--white);
}

.feature-icon {
  color: var(--accent);
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 17px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* CLOSING */
.closing {
  padding: 120px 60px;
  background: var(--fg);
}

.closing-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.closing-quote p {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 400;
  font-style: italic;
  color: rgba(255,255,255,0.85);
  line-height: 1.3;
}

.closing-cta h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 500;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.2;
}

.closing-cta p {
  font-size: 16px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 28px;
  line-height: 1.65;
}

.pricing-mention {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.price {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 36px;
  font-weight: 600;
  color: var(--accent);
}

.per-month {
  font-size: 16px;
  color: rgba(255,255,255,0.6);
}

.price-note {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  margin-left: 8px;
}

/* FOOTER */
.footer {
  background: #0A0A0A;
  padding: 80px 60px 40px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-logo {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 28px;
  font-weight: 600;
  color: var(--white);
  display: block;
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 14px;
  color: rgba(255,255,255,0.4);
  line-height: 1.6;
}

.footer-links {
  display: flex;
  gap: 60px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 4px;
}

.footer-col a {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--accent);
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(255,255,255,0.25);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-aside { display: none; }
  .stats-inner { flex-direction: column; gap: 40px; }
  .stat-item { padding: 0; }
  .stat-divider { width: 60px; height: 1px; }
  .steps { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .closing-inner { grid-template-columns: 1fr; gap: 48px; }
  .footer-inner { flex-direction: column; }
  .footer-bottom { flex-direction: column; gap: 8px; }
  .hero, .stats, .howitworks, .features, .closing, .footer { padding: 60px 32px; }
}

@media (max-width: 480px) {
  .hero, .stats, .howitworks, .features, .closing, .footer { padding: 48px 24px; }
  .hero-headline { font-size: 44px; }
  .stat-number { font-size: 40px; }
  .pricing-mention { flex-wrap: wrap; }
}