/* ─── HERO ─────────────────────────────────────────────── */

.hero {
  padding: 5.6rem 0 2.4rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(1.1rem, 2.2vw, 2.1rem);
  align-items: center;
}

.eyebrow {
  margin: 0 0 0.8rem;
  color: #4b5f2a;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.15em;
  font-size: 0.74rem;
}

.hero h1,
.section h2,
.info-card h3,
.contact-box h2,
.contact-box h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  line-height: 1.06;
}

.hero h1 {
  font-size: clamp(2.1rem, 5vw, 4.1rem);
  max-width: 13ch;
}

.hero-description,
.lead {
  margin: 1rem 0 0;
  color: var(--ink-soft);
  max-width: 70ch;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.4rem;
}

.hero-carousel {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  background: #edf4f1;
  min-height: 430px;
}

.hero-track {
  position: relative;
  min-height: 430px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 380ms ease;
}

.hero-slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(170deg, rgba(31, 79, 84, 0.18), rgba(31, 79, 84, 0));
}

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

.carousel-btn {
  position: absolute;
  z-index: 3;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: rgba(45, 111, 115, 0.66);
  color: #fff;
  cursor: pointer;
}

.carousel-btn.prev {
  left: 0.7rem;
}

.carousel-btn.next {
  right: 0.7rem;
}

.hero-dots {
  position: absolute;
  z-index: 3;
  bottom: 0.75rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.45rem;
}

.hero-dot {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 0;
  cursor: pointer;
  background: transparent;
  position: relative;
}

.hero-dot::before {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.58);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.hero-dot.is-active::before {
  background: #fff;
}

