* {
  border-radius: 0 !important;
  box-sizing: border-box;
}

h1, h2, h3, h4, h5, .ps-nav-logo, .ps-footer-logo, .ps-col-info h3, .ps-ghost-num, .ps-service-cell h3, blockquote, .ps-stat-num {
  font-family: 'Cormorant Garamond', serif;
}

h1, h2, h3, h4, .navbar-brand, .intro-text, .testimonial-quote, .footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
}

.hero {
  position: relative;
  overflow: hidden;
  color: #ffffff !important;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.7) 100%);
}

.hero-slides, .hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero-slide {
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  background-size: cover;
  background-position: center;
}

.hero-slide.active {
  opacity: 1;
}

.slide-1 {
  background-image: linear-gradient(45deg, #1a2c1e, #3a3a36);
}

.slide-2 {
  background-image: linear-gradient(135deg, #3d2b1f, #1a1a18);
}

.slide-3 {
  background-image: linear-gradient(to right, #2d5236, #1a1a18);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.85));
  z-index: 2;
}

.eyebrow-hero {
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  color: rgba(245, 240, 234, 0.55);
}

.hero h1 {
  font-size: clamp(3rem, 7vw, 5.5rem);
}

.link-cream-border {
  color: var(--bg-cream);
  text-decoration: none;
  border-bottom: 1px solid var(--bg-cream);
  padding-bottom: 8px;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
}

.hero-dots .dot {
  width: 8px;
  height: 8px;
  border: 1px solid var(--bg-cream);
  cursor: pointer;
  transition: all 0.3s;
}

.hero-dots .dot.active {
  background-color: var(--bg-cream);
}

.reveal, .reveal-left, .reveal-right {
  transition: all 1s ease-out;
}

@media (max-width: 576px) {
  .hero-dots {
    padding: 2rem !important;
  }
}

