:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-921c25c */html {
  scroll-behavior: smooth;
}

.hero,
.feature,
.card,
.why-item,
.intro-image,
.btn {
  transition: all 0.35s ease;
}

/* Buttons */
.btn {
  position: relative;
  overflow: hidden;
  border-radius: 40px;
  box-shadow: 0 18px 45px rgba(74,26,26,.18);
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 70%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,.55), transparent);
  transform: skewX(-25deg);
}

.btn:hover::before {
  left: 130%;
}

.btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 55px rgba(74,26,26,.25);
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 720px;
  background:
    linear-gradient(
      90deg,
      rgba(74,26,26,.82) 0%,
      rgba(90,34,34,.62) 45%,
      rgba(90,34,34,.35) 100%
    ),
    url('https://images.unsplash.com/photo-1519167758481-83f550bb49b3?auto=format&fit=crop&w=1800&q=80') center/cover;
  display: flex;
  align-items: center;
  padding: 150px 7% 80px;
  border-bottom: 1px solid rgba(212,175,55,.28);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 35%, rgba(255,255,255,.10), transparent 28%),
    radial-gradient(circle at 85% 70%, rgba(212,175,55,.18), transparent 30%);
  pointer-events: none;
  animation: luxuryGlow 7s ease-in-out infinite alternate;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  animation: fadeUp 1.1s ease forwards;
}

.eyebrow {
  color: #F3D87A;
  letter-spacing: 4px;
  font-family: var(--font-body);
  text-transform: uppercase;
  margin-bottom: 18px;
}

.eyebrow::after {
  content: "";
  display: block;
  width: 72px;
  height: 1px;
  margin-top: 12px;
  background: currentColor;
  opacity: .65;
}

h1 {
  font-size: clamp(46px, 7vw, 92px);
  line-height: .95;
  color: #F3D87A;
  font-family: var(--font-display);
  font-weight: normal;
  margin-bottom: 22px;
  text-shadow: 0 10px 35px rgba(74,26,26,.35);
}

.subtitle {
  font-size: 34px;
  letter-spacing: 5px;
  margin-bottom: 25px;
  color: #FFF8ED;
}

.tagline {
  font-size: 30px;
  font-style: italic;
  color: #FFF8ED;
  margin-bottom: 36px;
  text-shadow: 0 8px 25px rgba(74,26,26,.30);
}

.hero-actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

/* Feature Strip */
.feature-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #FDF7EF;
  border-bottom: 1px solid rgba(212,175,55,.28);
}

.feature {
  position: relative;
  overflow: hidden;
  padding: 28px 24px;
  text-align: center;
  border-right: 1px solid rgba(212,175,55,.25);
}

.feature::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent, rgba(212,175,55,.10), transparent);
  opacity: 0;
}

.feature:hover::before {
  opacity: 1;
}

.feature:hover {
  transform: translateY(-6px);
}

.feature h3 {
  color: #7A2424;
  font-size: 16px;
  margin-bottom: 7px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.feature p {
  color: #6F5751;
  font-family: var(--font-body);
  font-size: 14px;
}

/* Sections */
section {
  padding: 70px 7%;
}

/* Intro */
.intro {
  background: #FFF9F3;
  color: #4A1A1A;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 55px;
  align-items: center;
}

.intro h2,
.section-title {
  font-size: 42px;
  font-family: var(--font-display);
  font-weight: normal;
  margin-bottom: 22px;
}

.intro p {
  font-family: var(--font-body);
  line-height: 1.8;
  font-size: 16px;
  margin-bottom: 28px;
  color: #6F5751;
}

.intro-image {
  position: relative;
  overflow: hidden;
  min-height: 340px;
  background: url('https://images.unsplash.com/photo-1523438885200-e635ba2c371e?auto=format&fit=crop&w=1200&q=80') center/cover;
  border: 8px solid #fff;
  box-shadow: 0 18px 45px rgba(74,26,26,.18);
  transform: rotate(-1deg);
}

.intro-image:hover {
  transform: rotate(0deg) scale(1.03);
}

.intro-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,.28), transparent);
  transform: translateX(-120%);
}

.intro-image:hover::after {
  transform: translateX(120%);
}

/* Events */
.events {
  background: #FFF7EF;
  text-align: center;
}

.section-title {
  color: #7A2424;
  text-align: center;
}

.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 35px;
}

.card {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background: #FFFDFC;
  border: 1px solid rgba(212,175,55,.30);
  box-shadow: 0 20px 55px rgba(74,26,26,.12);
}

.card:hover {
  transform: translateY(-12px);
  box-shadow: 0 28px 70px rgba(74,26,26,.20);
}

.card-img {
  height: 190px;
  background-size: cover;
  background-position: center;
  transition: transform .5s ease, filter .5s ease;
}

.card:hover .card-img {
  transform: scale(1.07);
  filter: brightness(1.12) saturate(1.12);
}

.card-content {
  padding: 24px;
}

.card h3 {
  color: #7A2424;
  margin-bottom: 10px;
  font-size: 21px;
  font-family: var(--font-display);
}

.card h3::after {
  content: "";
  display: block;
  width: 42px;
  height: 2px;
  margin: 12px auto 0;
  background: currentColor;
  transform: scaleX(0);
  transition: transform .35s ease;
}

.card:hover h3::after {
  transform: scaleX(1);
}

.card p {
  color: #6F5751;
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.6;
}

/* Why Section */
.why {
  background: #FFF9F3;
  color: #4A1A1A;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
  text-align: center;
  margin-top: 28px;
}

.why-item {
  padding: 25px 12px;
  border-left: 1px solid rgba(212,175,55,.28);
  border-radius: 16px;
}

.why-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 42px rgba(74,26,26,.15);
}

.why-item strong {
  display: block;
  color: #7A2424;
  margin-bottom: 8px;
  font-family: var(--font-body);
  text-transform: uppercase;
  font-size: 13px;
}

.why-item span {
  font-family: var(--font-body);
  font-size: 13px;
  color: #6F5751;
}

/* CTA */
.cta {
  position: relative;
  overflow: hidden;
  text-align: center;
  background:
    linear-gradient(rgba(74,26,26,.82), rgba(74,26,26,.82)),
    url('https://images.unsplash.com/photo-1511795409834-ef04bbd61622?auto=format&fit=crop&w=1600&q=80') center/cover;
}

.cta::before {
  content: "";
  position: absolute;
  inset: 28px;
  border: 1px solid rgba(212,175,55,.35);
  opacity: .55;
  pointer-events: none;
}

.cta h2,
.cta p,
.cta .btn {
  position: relative;
  z-index: 2;
}

.cta h2 {
  font-size: 42px;
  color: #F3D87A;
  margin-bottom: 15px;
  font-family: var(--font-display);
  font-weight: normal;
}

.cta p {
  color: #FFF5EB;
  font-family: var(--font-body);
  margin-bottom: 28px;
}

/* Animations */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(34px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes luxuryGlow {
  from {
    opacity: .55;
    transform: scale(1);
  }
  to {
    opacity: .9;
    transform: scale(1.06);
  }
}/* End custom CSS */