/* ---------- Hero ---------- */
.hero {
  position: relative;
    min-height: 62vh;
    display: flex;
    align-items: center;
    color: #fff;
    background-repeat: no-repeat;
    background-position: center 30%;
    background-size: cover;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(20, 12, 8, 0.15),
    rgba(20, 12, 8, 0.82)
  );
  pointer-events: none;
}
.hero .container{
	z-index: 1
}

.eyebrow {
  font-size: 11px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: #eccb84;
}

.hero h1 {
   max-width: 660px;
    font-size: 55px;
    line-height: 1.1;
    text-wrap: balance;
    margin-bottom: 25px;
}

.hero p {
    max-width: 700px;
    font-size: 18px;
    font-weight: 500;
    color: #efe4d4;
    margin: 0;
}

.album-bg {
    background-color: #fffaf5;
    padding: 70px 0;
}
section.intro {
    padding: 70px 0;
}
.card {
  background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
}

.section-title {
    margin: 0 0 8px;
}

.rule {
  width: 88px;
  height: 1px;
  margin: 18px 0 26px;
  background: #e22a89;
  position: relative;
}

.rule::after {
  content: "";
  position: absolute;
  left: 50%;
  top: -3px;
  width: 7px;
  height: 7px;
  transform: translateX(-50%) rotate(45deg);
  background: #e22a89;
}

.facts-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    margin: 0 0 26px;
}
.fact-card {
	display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: start;
    gap: 14px;
    padding: 18px;
    border: 1px solid rgba(64, 45, 38, .14);
    border-radius: 6px;
    border-color: rgba(64, 45, 38, .12);
    background: rgba(255, 255, 255, .86);
    box-shadow: 0 16px 50px rgba(58, 41, 36, .08);
}
.fact-icon {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    background: radial-gradient(circle at 34% 24%, rgba(255, 255, 255, .88), transparent 30%), linear-gradient(135deg, rgba(184, 135, 79, .18), rgba(143, 47, 43, .1));
    border: 1px solid rgb(226 42 137 / 50%);
    border-radius: 999px;
    box-shadow: inset 0 0 0 5px rgba(255, 250, 245, .72);
}
.fact-icon svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: rgb(226 42 137);
    stroke-width: 1.65;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.fact-card > div {
    display: grid;
    gap: 5px;
    min-width: 0;
}
.fact-card > div > span {
    color: #e22a89;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .05em;
}
.fact-card > div > strong {
    font-size: 16px;
    line-height: 1.35;
    font-weight: 400;
}
.cta-section a.btn.btn-ghost {
    border: 1px solid #fff;
    color: #fff;
}
.cta-section a.btn.btn-ghost:hover{
	background-color: #fff;
	color: #e22a89;
}

.lede { margin: 0 auto 26px; }

.actions { display: flex; flex-wrap: wrap; gap: 12px; }

.btn {
 border-radius: 999px;
    min-height: 48px;
     letter-spacing: .01em;
    box-shadow: 0 10px 28px rgba(143, 47, 43, .14);	
	display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 11px 18px;
 	 font-size: 16px;
    font-weight: 700;
    cursor: pointer;
	transition: all .3s ease;
}
.hero .container .actions {
    justify-content: flex-start;
    margin: 25px 0 0 0;
}
.btn-prime { background: #e22a89; border: 1px solid #e22a89; color: #fff; }
.btn-prime:hover { color: #e22a89; background-color: transparent; border: 1px solid #e22a89;}
.btn-ghost {
	padding: 11px 18px;
	min-height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: white;
  font-size: 16px;font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.25); color: white }

.cta-section{
	padding: 70px 0;
	background: linear-gradient(100deg, #d61c72 0, #b81f9a 46%, #5c15b5 100%);
}
.cta_box {
    padding: 30px;
    text-align: center;
}
.cta_box h2.section-title {
    color: #fff;
}
.cta_box p{
	color: #fff;
	font-size: 17px;
	max-width: 800px;
	margin: 0 auto;
}
.cta_box .actions {
    justify-content: center;
    margin: 25px 0 0 0;
}
.cta_box .rule, .cta_box .rule::after {
    background: #fff;
}
.cta_box .rule{
	margin: 18px auto 26px;
}
.album-flex{
	justify-content: space-between;
	align-items: flex-end;
}
.album-flex h2{
	color: #444;
	font-weight: 500;
}

@media (max-width: 991px) {
  	.hero{
		min-height: 600px;
	}
	.hero h1{
		font-size: 50px;
		margin-bottom: 20px;
	}

	.hero .container .actions{
		margin: 20px 0 0 0;
	}

	section.intro, .cta-section, .album-bg{
		padding: 60px 0;
	}
	.facts-grid{
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.cta_box{
		padding: 0px;
	}
	h2.section-title{
		font-size: 30px;
		line-height: 1.3
	}
}
@media(max-width: 767px){
	.hero{
		min-height: 550px;
	}
	.hero h1{
		font-size: 40px;
		margin-bottom: 15px;
	}
	.hero p, .cta_box p{
		font-size: 16px;
	}
	.hero .container .actions{
		margin: 15px 0 0 0;
	}
	.btn-prime, .btn-ghost{
		font-size: 14px;
		width: auto;
		min-width: auto;
	}
	section.intro, .cta-section, .album-bg{
		padding: 50px 0;
	}
	.facts-grid{
		grid-template-columns: repeat(1, minmax(0, 1fr));
	}

	.album-flex {
    flex-wrap: wrap;
}
	.album-flex a.back{
		margin: 0 0 15px 0;
	}
	    #photogallery li {
        width: 100%;
        margin: 12px 0%;
    }
	.cta_box{
		padding: 0
	}
	h2.section-title{
		font-size: 27px;
		line-height: 1.3
	}
	
}

