@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap");

.luxury-hero {
  --hero-ink: #15120d;
  --hero-muted: #5f574d;
  --hero-gold: #b88746;
  --hero-gold-dark: #875f28;
  --hero-cream: #fbfaf6;
  width: 1440px;
  max-width: 100%;
  border: 1px solid rgba(21, 18, 13, 0.08);
  border-radius: 6px;
  box-shadow: 0 28px 80px rgba(21, 18, 13, 0.08);
  isolation: isolate;
}

.luxury-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(21, 18, 13, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(21, 18, 13, 0.035) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(90deg, #000 0%, transparent 72%);
}

.luxury-hero__slider {
  background: var(--hero-cream);
  height: 860px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 900ms ease,
    visibility 900ms ease;
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.hero-slide__media {
  position: absolute;
  inset: 0;
  background-color: #ece7dc;
  background-position: center;
  background-size: cover;
  filter: saturate(0.92) contrast(1.04);
  transform: scale(1.08);
  transition: transform 7600ms ease;
}

.hero-slide.is-active .hero-slide__media {
  transform: scale(1);
}

.hero-slide__wash {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.98) 0%,
      rgba(255, 255, 255, 0.9) 38%,
      rgba(255, 255, 255, 0.28) 68%,
      rgba(255, 255, 255, 0.04) 100%
    ),
    linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.72) 0%,
      rgba(255, 255, 255, 0) 38%
    ),
    radial-gradient(
      circle at 18% 26%,
      rgba(184, 135, 70, 0.18),
      transparent 34%
    );
}

.hero-slide__inner {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(120px, 22vw);
  align-items: center;
  height: 100%;
  width: min(100%, 1540px);
  margin: 0 auto;
  padding: clamp(5rem, 7vw, 8rem) clamp(1.25rem, 5vw, 5rem)
    clamp(10rem, 11vw, 13rem);
}

.hero-slide__copy {
  max-width: 760px;
  transform: translateY(26px);
  opacity: 0;
  transition:
    transform 820ms ease 160ms,
    opacity 820ms ease 160ms;
}

.hero-slide.is-active .hero-slide__copy {
  transform: translateY(0);
  opacity: 1;
}

.hero-slide__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--hero-gold-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-slide__eyebrow::before {
  content: "";
  width: 54px;
  height: 1px;
  background: var(--hero-gold);
}

.hero-slide h1 {
  margin-top: 1.05rem;
  color: var(--hero-ink);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3.45rem, 7.2vw, 7.85rem);
  font-weight: 700;
  line-height: 0.88;
  letter-spacing: 0;
  max-width: 820px;
}

.hero-slide p {
  margin-top: clamp(1.2rem, 2vw, 1.65rem);
  max-width: 610px;
  color: var(--hero-muted);
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  line-height: 1.8;
}

.hero-slide__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.9rem;
  margin-top: clamp(1.8rem, 3vw, 2.6rem);
}

.hero-slide__primary,
.hero-slide__secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 1.35rem;
  border-radius: 4px;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease,
    background 220ms ease;
}

.hero-slide__primary {
  color: #fff;
  background: var(--hero-ink);
  box-shadow: 0 18px 44px rgba(21, 18, 13, 0.2);
}

.hero-slide__primary:hover {
  transform: translateY(-2px);
  background: #000;
  box-shadow: 0 22px 54px rgba(21, 18, 13, 0.26);
}

.hero-slide__secondary {
  color: var(--hero-ink);
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(21, 18, 13, 0.16);
  backdrop-filter: blur(14px);
}

.hero-slide__secondary:hover {
  transform: translateY(-2px);
  border-color: rgba(184, 135, 70, 0.6);
  background: rgba(255, 255, 255, 0.9);
}

.hero-slide__index {
  align-self: end;
  justify-self: end;
  color: rgba(21, 18, 13, 0.06);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(7rem, 16vw, 18rem);
  font-weight: 700;
  line-height: 0.72;
  letter-spacing: 0;
  transform: translateY(2rem);
}

.hero-controls {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 6;
  display: grid;
  grid-template-columns: auto minmax(80px, 1fr) auto auto;
  align-items: center;
  gap: clamp(0.8rem, 2vw, 2rem);
  padding: 1.1rem clamp(1.25rem, 5vw, 5rem);
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.92),
    rgba(255, 255, 255, 0.74),
    rgba(255, 255, 255, 0.34)
  );
  border-top: 1px solid rgba(21, 18, 13, 0.08);
  backdrop-filter: blur(18px);
}

.hero-count {
  display: flex;
  align-items: baseline;
  gap: 0.45rem;
  color: var(--hero-ink);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1;
}

.hero-count span:nth-child(2),
.hero-total {
  color: rgba(21, 18, 13, 0.3);
}

.hero-progress {
  height: 1px;
  overflow: hidden;
  background: rgba(21, 18, 13, 0.16);
}

.hero-progress__bar {
  display: block;
  width: 100%;
  height: 100%;
  transform-origin: left center;
  background: var(--hero-gold);
}

#hero-slider.is-paused .hero-progress__bar {
  animation-play-state: paused;
}

@keyframes heroProgress {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}

.hero-dots {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.hero-dot {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  color: rgba(21, 18, 13, 0.42);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0;
  border: 1px solid transparent;
  border-radius: 999px;
  transition:
    color 220ms ease,
    border-color 220ms ease,
    background 220ms ease;
}

.hero-dot:hover,
.hero-dot.is-active {
  color: var(--hero-ink);
  border-color: rgba(184, 135, 70, 0.5);
  background: rgba(255, 255, 255, 0.74);
}

.hero-arrows {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.hero-prev,
.hero-next {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  color: var(--hero-ink);
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(21, 18, 13, 0.14);
  border-radius: 999px;
  box-shadow: 0 14px 34px rgba(21, 18, 13, 0.08);
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    background 220ms ease;
}

.hero-prev:hover,
.hero-next:hover {
  transform: translateY(-2px);
  border-color: rgba(184, 135, 70, 0.58);
  background: #fff;
}

.hero-prev svg,
.hero-next svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media all and (max-width: 900px) {
  .luxury-hero {
    width: 720px;
    max-width: calc(100% - 24px);
  }

  .luxury-hero::before {
    opacity: 0.45;
    mask-image: linear-gradient(180deg, #000 0%, transparent 82%);
  }

  .hero-slide__wash {
    background:
      linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.94) 0%,
        rgba(255, 255, 255, 0.76) 54%,
        rgba(255, 255, 255, 0.28) 100%
      ),
      radial-gradient(
        circle at 24% 22%,
        rgba(184, 135, 70, 0.16),
        transparent 42%
      );
  }

  .hero-slide__inner {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 5.5rem 1.25rem 12rem;
  }

  .hero-slide h1 {
    font-size: clamp(3.1rem, 15vw, 5rem);
    max-width: 11ch;
  }

  .hero-slide__index {
    position: absolute;
    right: 1rem;
    bottom: 6.8rem;
    font-size: 7rem;
  }

  .hero-controls {
    grid-template-columns: auto 1fr auto;
    gap: 0.85rem;
    padding: 0.9rem 1rem;
  }

  .hero-dots {
    display: none;
  }
}

@media all and (max-width: 560px) {
  .luxury-hero__slider {
    height: 840px;
  }

  .hero-slide__actions {
    align-items: stretch;
    flex-direction: column;
    max-width: 280px;
  }

  .hero-slide__primary,
  .hero-slide__secondary {
    width: 100%;
  }

  .hero-count {
    font-size: 1.35rem;
  }

  .hero-progress {
    min-width: 76px;
  }

  .hero-prev,
  .hero-next {
    width: 42px;
    height: 42px;
  }
}

.content-image {
  border-radius: 8px;
  object-fit: cover;
}
@media all and (min-width: 768px) {
  .content-image {
    width: 500px;
    height: 500px;
    margin-right: 2rem !important;
    float: left;
  }
}
@media all and (max-width: 768px) {
  .content-image {
    height: 350px;
    margin-bottom: 1rem !important;
  }
}
.clearfix::after {
  content: "";
  display: table;
  clear: both;
}

.content h1 {
  font-size: 2rem !important;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 1.25rem !important;
}

.content h2,
.content h3,
.content h4,
.content h5,
.content h6 {
  font-size: 1.5rem !important;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1rem !important;
}

.content p {
  font-size: 1.125rem;
  line-height: 1.75;
  margin-bottom: 1.25rem !important;
}

.content ul,
.content ol {
  margin-bottom: 1.25rem !important;
  margin-left: 2rem;
}

.content ul {
  list-style-type: disc;
}

.content ol {
  list-style-type: decimal;
}

.content li {
  margin-bottom: 0.5rem;
}

.content a {
  text-decoration: underline;
  font-weight: 500;
}

.content blockquote {
  font-size: 1.25rem;
  font-style: italic;
  padding-left: 1rem;
  margin-bottom: 1.5rem !important;
}

.content strong {
  font-weight: 600;
}

.content em {
  font-style: italic;
}

.content img {
  max-width: 100%;
  height: auto;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.content hr {
  border: none;
  border-top: 1px solid #ddd;
  margin: 2rem 0;
}

.iti {
  width: 100%;
}
