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

html, body {
  height: 100%;
  overflow: hidden;
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  background: #EDEAE3;
  color: #1a1a18;
  touch-action: pan-y;
}

nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
}

.wordmark {
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  color: #1a1a18;
  cursor: pointer;
}

.wordmark span { letter-spacing: 0.05em; }

.nav-about {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #999990;
  cursor: pointer;
  transition: color 0.15s;
}

.nav-about:hover { color: #1a1a18; }

.viewport {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  overflow: hidden;
}

.track {
  display: flex;
  height: 100%;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.slide {
  min-width: 100vw;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4.5rem 1.25rem 3rem;
}

.card {
  background: #FAFAF7;
  border-radius: 20px;
  padding: 1.75rem;
  width: 100%;
  max-width: 440px;
}

.tag {
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #999990;
  margin-bottom: 1rem;
}

h1 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(2rem, 8vw, 2.6rem);
  line-height: 1.15;
  color: #1a1a18;
  margin-bottom: 1rem;
}

h1 em { font-style: italic; color: #7a7a68; }

.body-text {
  font-size: 0.88rem;
  line-height: 1.78;
  color: #6a6a60;
  font-weight: 300;
}

.label {
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #999990;
  margin-bottom: 1.1rem;
}

.step {
  display: flex;
  gap: 1rem;
  padding: 0.8rem 0;
  border-bottom: 1px solid #ECEAE4;
}

.step:last-child { border-bottom: none; padding-bottom: 0; }
.step:first-of-type { padding-top: 0; }

.step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: #CCCABC;
  min-width: 22px;
  padding-top: 1px;
}

.step-title { font-size: 0.8rem; font-weight: 500; color: #1a1a18; margin-bottom: 0.2rem; }
.step-body { font-size: 0.8rem; line-height: 1.65; color: #7a7a68; font-weight: 300; }

.cred {
  padding: 0.75rem 0;
  border-bottom: 1px solid #ECEAE4;
}

.cred:last-child { border-bottom: none; padding-bottom: 0; }
.cred:first-child { padding-top: 0; }
.cred-title { font-size: 0.78rem; font-weight: 500; color: #1a1a18; margin-bottom: 0.2rem; }
.cred-body { font-size: 0.8rem; line-height: 1.6; color: #7a7a68; font-weight: 300; }

.referral-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 300;
  font-style: italic;
  line-height: 1.55;
  color: #3a3a30;
}

.dots {
  position: fixed;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 100;
}

.dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: #CCCABC;
  transition: background 0.2s, transform 0.2s;
  cursor: pointer;
}

.dot.active { background: #5a5a50; transform: scale(1.3); }

.arrow {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: #FAFAF7;
  border: none;
  border-radius: 50%;
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  z-index: 100;
  opacity: 0.7;
  transition: opacity 0.15s;
  font-size: 14px;
  color: #5a5a50;
}

.arrow:hover { opacity: 1; }
.arrow-prev { left: 0.75rem; }
.arrow-next { right: 0.75rem; }
.arrow.hidden { display: none; }
