/* === RESET & BASE === */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg: hsl(0, 0%, 7%);
  --bg-alt: hsl(0, 0%, 14%);
  --fg: hsl(40, 20%, 90%);
  --cream: hsl(40, 20%, 90%);
  --cream-dim: hsl(40, 10%, 60%);
  --wine: hsl(330, 50%, 35%);
  --wine-light: hsl(330, 40%, 45%);
  --wine-deep: hsl(330, 60%, 22%);
  --gold: hsl(38, 40%, 50%);
  --gold-soft: hsl(38, 30%, 40%);
  --border: hsl(0, 0%, 18%);
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Raleway', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

/* === UTILITIES === */
.text-center { text-align: center; }
.text-lg { font-size: 1.125rem; }
.text-dim { color: var(--cream-dim); font-size: 1rem; line-height: 1.7; }
.text-cream { color: var(--cream); font-size: 1rem; line-height: 1.7; }
.gold-text { color: var(--gold); }
.mt-sm { margin-top: 1rem; }
.mt-md { margin-top: 1.5rem; }
.mt-lg { margin-top: 2.5rem; }

.italic-line {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.125rem;
  color: var(--cream);
  margin-top: 2.5rem;
  line-height: 1.6;
}

/* === CONTAINER === */
.container {
  max-width: 48rem;
  margin: 0 auto;
}

.container-wide {
  max-width: 56rem;
}

/* === DIVIDER === */
.divider {
  width: 4rem;
  height: 1px;
  background: var(--wine);
  margin: 0 auto 0.5rem;
}

/* === HERO === */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--bg), hsla(0, 0%, 7%, 0.7) 50%, hsla(0, 0%, 7%, 0.2));
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 42rem;
  padding: 0 1.5rem 4rem;
  padding-top: 60vh;
}

.hero-label {
  font-family: 'Raleway', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: clamp(3rem, 8vw, 4.5rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--cream);
  line-height: 1.05;
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(1.125rem, 2.5vw, 1.25rem);
  color: hsla(40, 20%, 90%, 0.8);
  margin-bottom: 1.5rem;
}

.hero-text {
  color: var(--cream-dim);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 28rem;
  margin-bottom: 2.5rem;
}

/* === BUTTONS === */
.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cta-center {
  justify-content: center;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 2rem;
  border-radius: 0.25rem;
  font-family: 'Raleway', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  text-align: center;
}

.btn-hero {
  background: var(--wine);
  color: var(--cream);
}

.btn-hero:hover {
  background: var(--wine-light);
}

.btn-emergency {
  background: hsla(38, 40%, 50%, 0.9);
  color: var(--bg);
  font-weight: 600;
}

.btn-emergency:hover {
  background: var(--gold);
}

.btn:active {
  transform: scale(0.97);
}

/* === SECTIONS === */
.section {
  padding: 6rem 1.5rem;
}

.section-alt {
  background: var(--bg-alt);
}

.section-questions {
  background: hsla(330, 60%, 22%, 0.4);
}

.section-title {
  font-size: clamp(1.875rem, 4vw, 2.25rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--cream);
  margin-bottom: 2rem;
}

/* === LISTS === */
.diamond-list {
  list-style: none;
  margin: 1.5rem 0;
}

.diamond-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.375rem 0;
  color: hsla(40, 20%, 90%, 0.9);
  font-size: 1rem;
}

.diamond {
  font-size: 0.75rem;
  margin-top: 0.375rem;
  flex-shrink: 0;
}

.diamond.wine { color: var(--wine); }
.diamond.gold { color: var(--gold); }

.dash-list {
  list-style: none;
  margin: 0.5rem 0;
}

.dash-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.25rem 0;
  color: hsla(40, 20%, 90%, 0.9);
  font-size: 1rem;
}

.dash {
  color: var(--wine);
  font-size: 0.75rem;
  margin-top: 0.375rem;
  flex-shrink: 0;
}

/* === QUESTIONS GRID === */
.questions-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-bottom: 2.5rem;
}

.question-item {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: hsla(40, 20%, 90%, 0.85);
  font-size: 1rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid hsla(0, 0%, 18%, 0.4);
}

/* === PRICE === */
.price {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3.75rem, 8vw, 4.5rem);
  font-weight: 500;
  color: var(--gold);
  letter-spacing: -0.02em;
  margin-top: 0.5rem;
}

/* === FOOTER === */
.footer {
  padding: 4rem 1.5rem;
  text-align: center;
  border-top: 1px solid var(--border);
}

.footer-text {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: hsla(40, 20%, 90%, 0.6);
  font-size: 1.125rem;
  max-width: 28rem;
  margin: 0 auto;
  line-height: 1.7;
}

/* === ANIMATIONS === */
.animate-fade-in {
  animation: fadeIn 0.7s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.animate-fade-up {
  animation: fadeUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.delay-1 { animation-delay: 100ms; }
.delay-2 { animation-delay: 200ms; }
.delay-3 { animation-delay: 300ms; }

@keyframes fadeIn {
  from { opacity: 0; filter: blur(4px); }
  to   { opacity: 1; filter: blur(0); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); filter: blur(4px); }
  to   { opacity: 1; transform: translateY(0); filter: blur(0); }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  filter: blur(4px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              filter 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

/* === RESPONSIVE === */
@media (min-width: 640px) {
  .cta-buttons {
    flex-direction: row;
  }
}

@media (min-width: 768px) {
  .hero {
    align-items: center;
  }

  .hero-overlay {
    background: linear-gradient(to right, var(--bg), hsla(0, 0%, 7%, 0.8) 50%, transparent);
  }

  .hero-content {
    padding: 0 4rem;
    padding-top: 0;
  }

  .section {
    padding: 8rem 4rem;
  }

  .questions-grid {
    grid-template-columns: 1fr 1fr;
    column-gap: 3rem;
  }
}

@media (min-width: 1024px) {
  .hero-content {
    padding: 0 6rem;
  }

  .section {
    padding: 8rem 6rem;
  }
}
