@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,500&family=Jost:wght@300;400;500;600&display=swap');

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

body {
  font-family: 'Jost', sans-serif;
  background: #0D0D0D;
  color: #F5F5F0;
  min-height: 100vh;
  overflow-x: hidden;
}

.hd-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  background: #C9A84C;
  width: 0%;
  transition: width 0.4s ease;
  z-index: 50;
}

.hd-deck {
  position: relative;
  width: 100%;
  min-height: 100vh;
}

.hd-slide {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  min-height: 100vh;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 28px 120px;
}
.hd-slide.active { display: flex; }

.hd-eyebrow {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #C9A84C;
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 400;
}
.hd-eyebrow::before, .hd-eyebrow::after {
  content: '';
  display: block;
  width: 32px;
  height: 0.5px;
  background: #C9A84C;
  opacity: 0.5;
}

.hd-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 300;
  line-height: 1.15;
  color: #F5F5F0;
  margin-bottom: 18px;
  max-width: 600px;
}
.hd-title em { font-style: italic; color: #C9A84C; }

.hd-sub {
  font-size: 15px;
  font-weight: 300;
  color: rgba(245,245,240,0.55);
  line-height: 1.7;
  max-width: 460px;
  margin-bottom: 36px;
  letter-spacing: 0.01em;
}

.hd-cta {
  background: #C9A84C;
  color: #0D0D0D;
  border: none;
  border-radius: 8px;
  padding: 15px 38px;
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.hd-cta:hover { background: #dfc068; transform: translateY(-1px); }

.hd-reveal-box {
  background: #111111;
  border: 0.5px solid rgba(201,168,76,0.25);
  border-radius: 14px;
  padding: 28px 32px;
  width: 100%;
  max-width: 320px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}
.hd-reveal-box:hover { border-color: #C9A84C; background: rgba(201,168,76,0.06); }
.hd-reveal-box.opened { display: none; }
.hd-reveal-icon { font-size: 26px; color: #C9A84C; margin-bottom: 12px; }
.hd-reveal-hint {
  font-size: 11px;
  color: rgba(245,245,240,0.4);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hd-reveal-content {
  display: none;
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px;
  font-style: italic;
  color: #F5F5F0;
  max-width: 420px;
  line-height: 1.6;
  margin-top: 4px;
}
.hd-reveal-content.show { display: block; }

.hd-input-wrap { width: 100%; max-width: 320px; }

.hd-input {
  width: 100%;
  background: #111111;
  border: 0.5px solid rgba(201,168,76,0.25);
  border-radius: 10px;
  padding: 14px 16px;
  color: #F5F5F0;
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  outline: none;
  margin-bottom: 14px;
  transition: border-color 0.2s;
}
.hd-input::placeholder { color: rgba(245,245,240,0.25); }
.hd-input:focus { border-color: #C9A84C; }

.hd-submit {
  background: #C9A84C;
  color: #0D0D0D;
  border: none;
  border-radius: 8px;
  padding: 12px 30px;
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
}
.hd-submit:hover { background: #dfc068; }

.hd-feedback {
  font-family: 'Cormorant Garamond', serif;
  font-size: 15px;
  font-style: italic;
  color: rgba(201,168,76,0.7);
  margin-top: 16px;
  min-height: 20px;
}

.hd-surprise-btn {
  background: transparent;
  color: #C9A84C;
  border: 0.5px solid rgba(201,168,76,0.4);
  border-radius: 8px;
  padding: 14px 32px;
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.hd-surprise-btn:hover { background: rgba(201,168,76,0.08); transform: translateY(-1px); }

.hd-surprise-overlay {
  display: none;
  margin-top: 22px;
  background: #111111;
  border: 0.5px solid rgba(201,168,76,0.3);
  border-radius: 12px;
  padding: 22px 28px;
  max-width: 380px;
}
.hd-surprise-overlay.show { display: block; }
.hd-surprise-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  font-style: italic;
  color: #F5F5F0;
  line-height: 1.6;
}

.hd-nav {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 18px;
  background: #111111;
  border: 0.5px solid rgba(201,168,76,0.2);
  border-radius: 100px;
  padding: 8px 18px;
  z-index: 50;
}

.hd-nav-btn {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: transparent;
  border: none;
  color: #C9A84C;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
}
.hd-nav-btn:hover { background: rgba(201,168,76,0.12); }
.hd-nav-btn:disabled { opacity: 0.25; cursor: default; }
.hd-nav-btn:disabled:hover { background: transparent; }

.hd-nav-count {
  font-size: 12px;
  color: rgba(245,245,240,0.5);
  letter-spacing: 0.04em;
  min-width: 44px;
  text-align: center;
}

@media (max-width: 480px) {
  .hd-title { font-size: 34px; }
  .hd-sub { font-size: 13px; }
}