/* ==========================================================
   EDHUCO · SONIDOS ANCESTRALES
   ========================================================== */

.edh-sound {
	--sound-bg: #f2eee7;
	--sound-paper: #f8f5ef;
	--sound-ink: #201d19;
	--sound-muted: #746d64;

	--sound-orange: #cb6935;
	--sound-green: #2d5c4f;
	--sound-sand: #c8b99f;

	--sound-line: rgba(32, 29, 25, .14);
	--sound-white-line: rgba(255,255,255,.17);

	--sound-max: 1380px;

	width: 100%;
	overflow: hidden;

	background: var(--sound-bg);
	color: var(--sound-ink);
}


/* RESET LOCAL */

.edh-sound *,
.edh-sound *::before,
.edh-sound *::after {
	box-sizing: border-box;
}

.edh-sound * {
	min-width: 0;
}

.edh-sound h1,
.edh-sound h2,
.edh-sound h3,
.edh-sound p,
.edh-sound figure {
	margin: 0;
}

.edh-sound h1,
.edh-sound h2,
.edh-sound h3 {
	max-width: 100%;
	hyphens: auto;
	overflow-wrap: break-word;
}

.edh-sound img {
	display: block;
	width: 100%;
	height: auto;
}

.edh-sound a {
	color: inherit;
}


/* ==========================================================
   UTILIDADES
   ========================================================== */

.edh-sound-wrap {
	width: min(
		var(--sound-max),
		calc(100% - 64px)
	);

	margin-inline: auto;
}


.edh-sound-eyebrow {
	font-size: 11px;
	line-height: 1;

	font-weight: 700;

	letter-spacing: .18em;
	text-transform: uppercase;

	color: var(--sound-orange);
}


.edh-sound-display {
	font-size: clamp(48px, 5.6vw, 88px);
	line-height: .96;

	font-weight: 500;

	letter-spacing: -.055em;
}


.edh-sound-index {
	font-size: 10px;

	letter-spacing: .15em;
	text-transform: uppercase;

	color: rgba(32,29,25,.55);
}


/* ==========================================================
   HERO
   ========================================================== */

.edh-sound-hero {
	width: min(
		1500px,
		calc(100% - 32px)
	);

	min-height: min(850px, calc(100vh - 100px));

	margin: 16px auto 0;

	display: grid;

	grid-template-columns:
		minmax(0, .92fr)
		minmax(500px, 1.08fr);

	background:
		linear-gradient(
			135deg,
			#cbc0aa,
			#b5a88e
		);

	border-radius: 34px;

	overflow: hidden;
}


.edh-sound-hero__copy {
	position: relative;

	z-index: 2;

	display: flex;
	flex-direction: column;
	justify-content: center;

	padding:
		clamp(65px, 8vw, 130px)
		clamp(40px, 6vw, 95px);
}


.edh-sound-hero__top {
	position: absolute;

	top: 40px;
	left: clamp(40px, 6vw, 95px);
	right: clamp(40px, 6vw, 95px);

	display: flex;
	align-items: center;
	justify-content: space-between;
}


.edh-sound-hero__title {
	max-width: 750px;

	font-size: clamp(61px, 6.4vw, 106px);
	line-height: .86;

	font-weight: 500;

	letter-spacing: -.065em;
}


.edh-sound-hero__intro {
	max-width: 620px;

	margin-top: 50px;

	font-size: clamp(17px, 1.25vw, 21px);
	line-height: 1.65;

	color: rgba(32,29,25,.72);
}


.edh-sound-arrow-link {
	width: fit-content;
	min-height: 44px;

	display: inline-flex;
	align-items: center;

	gap: 26px;

	margin-top: 48px;

	padding-bottom: 8px;

	border-bottom: 1px solid rgba(32,29,25,.45);

	text-decoration: none;

	font-size: 11px;
	font-weight: 700;

	letter-spacing: .1em;
	text-transform: uppercase;
}


.edh-sound-arrow {
	transition: transform .3s ease;
}


.edh-sound-arrow-link:hover .edh-sound-arrow {
	transform: translateY(5px);
}


/* VISUAL */

.edh-sound-hero__visual {
	position: relative;

	min-height: 760px;

	overflow: hidden;
}


.edh-sound-hero__visual img {
	position: absolute;

	inset: 0;

	width: 100%;
	height: 100%;

	object-fit: cover;

	transition:
		transform 1.2s cubic-bezier(.2,.7,.2,1);
}


.edh-sound-hero:hover
.edh-sound-hero__visual img {
	transform: scale(1.025);
}


.edh-sound-hero__shade {
	position: absolute;

	inset: 0;

	background:
		linear-gradient(
			180deg,
			rgba(0,0,0,.02),
			transparent 50%,
			rgba(0,0,0,.26)
		);
}


.edh-sound-play {
	position: absolute;

	z-index: 5;

	right: 32px;
	bottom: 32px;

	width: 76px;
	height: 76px;

	border: 0;

	border-radius: 50%;

	display: grid;
	place-items: center;

	background:
		rgba(248,245,239,.88);

	backdrop-filter: blur(15px);

	cursor: pointer;

	transition:
		transform .35s ease,
		background .35s ease;
}


.edh-sound-play:hover {
	transform: scale(1.07);

	background: white;
}


.edh-sound-play__triangle {
	display: block;

	width: 0;
	height: 0;

	margin-left: 5px;

	border-top: 8px solid transparent;
	border-bottom: 8px solid transparent;

	border-left:
		13px solid var(--sound-orange);
}


/* onda visual */

.edh-sound-wave {
	position: absolute;

	left: 34px;
	bottom: 36px;

	z-index: 4;

	height: 40px;

	display: flex;
	align-items: center;

	gap: 5px;
}


.edh-sound-wave i {
	display: block;

	width: 2px;
	height: 8px;

	background: white;

	opacity: .7;

	transform-origin: center;
}


.edh-sound-wave.is-active i {
	animation:
		edhSoundWave .8s ease-in-out infinite alternate;
}


.edh-sound-wave i:nth-child(2) {
	animation-delay: -.15s;
}

.edh-sound-wave i:nth-child(3) {
	animation-delay: -.35s;
}

.edh-sound-wave i:nth-child(4) {
	animation-delay: -.1s;
}

.edh-sound-wave i:nth-child(5) {
	animation-delay: -.45s;
}

.edh-sound-wave i:nth-child(6) {
	animation-delay: -.2s;
}


@keyframes edhSoundWave {

	from {
		height: 7px;
	}

	to {
		height: 36px;
	}

}



/* ==========================================================
   MANIFIESTO
   ========================================================== */

.edh-sound-manifesto {
	padding:
		clamp(120px, 14vw, 220px)
		0;
}


.edh-sound-manifesto
.edh-sound-wrap {
	display: grid;

	grid-template-columns:
		100px
		minmax(0,1.3fr)
		minmax(280px,.65fr);

	gap: clamp(35px, 6vw, 90px);
}


.edh-sound-manifesto__number {
	padding-top: 8px;

	font-size: 11px;

	color: var(--sound-muted);
}


.edh-sound-manifesto__main
.edh-sound-display {
	max-width: 830px;

	margin-top: 30px;
}


.edh-sound-manifesto__text {
	align-self: end;

	max-width: 470px;

	font-size: 17px;
	line-height: 1.75;

	color: var(--sound-muted);
}


.edh-sound-manifesto__text p + p {
	margin-top: 18px;
}



/* ==========================================================
   FEATURE
   ========================================================== */

.edh-sound-feature {
	width: min(
		1500px,
		calc(100% - 32px)
	);

	min-height: 760px;

	margin-inline: auto;

	display: grid;

	grid-template-columns: 1.2fr .8fr;

	border-radius: 32px;

	overflow: hidden;

	background: var(--sound-green);
}


.edh-sound-feature__image {
	min-height: 760px;

	overflow: hidden;
}


.edh-sound-feature__image img {
	width: 100%;
	height: 100%;

	object-fit: cover;
}


.edh-sound-feature__statement {
	position: relative;

	display: flex;
	align-items: flex-end;

	padding:
		clamp(50px, 7vw, 110px);

	color: white;
}


.edh-sound-feature__statement p {
	max-width: 580px;

	font-size: clamp(44px, 4.5vw, 72px);
	line-height: .99;

	font-weight: 400;

	letter-spacing: -.045em;
}


.edh-sound-feature__index {
	position: absolute;

	top: 40px;
	right: 42px;

	font-size: 11px;

	opacity: .6;
}



/* ==========================================================
   PRINCIPIOS
   ========================================================== */

.edh-sound-principles {
	padding:
		clamp(120px, 13vw, 200px)
		0;
}


.edh-sound-principles__header {
	max-width: 950px;

	margin-bottom: 80px;
}


.edh-sound-principles__header
.edh-sound-display {
	margin-top: 26px;
}


.edh-sound-principles__grid {
	display: grid;

	grid-template-columns:
		repeat(3,1fr);

	border-top:
		1px solid var(--sound-line);

	border-bottom:
		1px solid var(--sound-line);
}


.edh-sound-principle {
	min-height: 450px;

	display: flex;
	flex-direction: column;

	padding: 32px 42px 42px;
}


.edh-sound-principle
+ .edh-sound-principle {
	border-left:
		1px solid var(--sound-line);
}


.edh-sound-principle__index {
	font-size: 10px;

	color: var(--sound-muted);
}


.edh-sound-principle__symbol {
	width: 84px;
	height: 84px;

	margin: auto 0;

	display: grid;
	place-items: center;

	border:
		1px solid var(--sound-line);

	border-radius: 50%;
}


.edh-sound-principle__symbol span {
	width: 15px;
	height: 15px;

	border-radius: 50%;

	background:
		var(--sound-orange);
}


.edh-sound-principle__symbol.is-rings span {
	width: 42px;
	height: 42px;

	background: transparent;

	border:
		1px solid var(--sound-green);

	box-shadow:
		0 0 0 11px transparent,
		0 0 0 12px rgba(45,92,79,.35),
		0 0 0 22px transparent,
		0 0 0 23px rgba(45,92,79,.15);
}


.edh-sound-principle__symbol.is-line span {
	width: 40px;
	height: 1px;

	border-radius: 0;

	background:
		var(--sound-orange);
}


.edh-sound-principle h3 {
	font-size: clamp(30px, 2.4vw, 42px);

	font-weight: 500;

	letter-spacing: -.04em;
}


.edh-sound-principle p {
	max-width: 350px;

	margin-top: 16px;

	font-size: 15px;
	line-height: 1.7;

	color: var(--sound-muted);
}



/* ==========================================================
   EXPERIENCIA
   ========================================================== */

.edh-sound-experience {
	display: grid;

	grid-template-columns:
		1fr 1fr;

	min-height: 850px;

	background:
		var(--sound-green);

	color: white;
}


.edh-sound-experience__visual {
	position: relative;

	min-height: 750px;

	display: grid;
	place-items: center;

	overflow: hidden;

	border-right:
		1px solid var(--sound-white-line);
}


.edh-sound-experience__visual img {
	position: absolute;

	inset: 0;

	width: 100%;
	height: 100%;

	object-fit: cover;
}


.edh-sound-experience__overlay {
	position: absolute;

	inset: 0;

	background:
		linear-gradient(
			180deg,
			rgba(20,40,35,.08),
			rgba(20,40,35,.35)
		);
}


.edh-sound-experience__caption {
	position: absolute;

	z-index: 3;

	bottom: 35px;
	left: 40px;

	font-size: 10px;

	letter-spacing: .16em;

	opacity: .8;
}


/* círculos */

.edh-sound-circles {
	position: relative;

	width: min(65%, 500px);

	aspect-ratio: 1;
}


.edh-sound-circles span {
	position: absolute;

	top: 50%;
	left: 50%;

	transform:
		translate(-50%,-50%);

	border:
		1px solid rgba(255,255,255,.25);

	border-radius: 50%;
}


.edh-sound-circles span:nth-child(1) {
	width: 100%;
	height: 100%;
}

.edh-sound-circles span:nth-child(2) {
	width: 77%;
	height: 77%;
}

.edh-sound-circles span:nth-child(3) {
	width: 55%;
	height: 55%;
}

.edh-sound-circles span:nth-child(4) {
	width: 34%;
	height: 34%;
}

.edh-sound-circles span:nth-child(5) {
	width: 12%;
	height: 12%;

	border: none;

	background:
		var(--sound-orange);
}


/* copy */

.edh-sound-experience__copy {
	display: flex;
	flex-direction: column;
	justify-content: center;

	padding:
		clamp(65px, 8vw, 130px);
}


.edh-sound-experience__copy
.edh-sound-eyebrow {
	color: #e3a77e;
}


.edh-sound-experience__copy
.edh-sound-display {
	margin-top: 30px;

	max-width: 750px;
}


.edh-sound-experience__text {
	max-width: 600px;

	margin-top: 38px;

	font-size: 17px;
	line-height: 1.75;

	color: rgba(255,255,255,.72);
}


.edh-sound-experience__items {
	margin-top: 65px;

	border-top:
		1px solid var(--sound-white-line);
}


.edh-sound-experience__items > div {
	display: grid;

	grid-template-columns:
		55px 1fr;

	padding: 19px 0;

	border-bottom:
		1px solid var(--sound-white-line);
}


.edh-sound-experience__items span {
	font-size: 10px;

	opacity: .45;
}


.edh-sound-experience__items p {
	font-size: 15px;
}



/* ==========================================================
   INTERLUDIO
   ========================================================== */

.edh-sound-interlude {
	position: relative;

	min-height: 720px;

	display: grid;
	place-items: center;

	padding:
		120px 30px;

	text-align: center;

	overflow: hidden;
}


.edh-sound-interlude p {
	position: relative;

	z-index: 2;

	max-width: 1100px;

	font-size: clamp(45px, 6vw, 96px);
	line-height: .98;

	letter-spacing: -.055em;
}


.edh-sound-interlude__rings {
	position: absolute;

	width: min(70vw, 800px);

	aspect-ratio: 1;

	opacity: .12;
}


.edh-sound-interlude__rings span {
	position: absolute;

	top: 50%;
	left: 50%;

	transform:
		translate(-50%,-50%);

	border:
		1px solid var(--sound-ink);

	border-radius: 50%;
}


.edh-sound-interlude__rings span:nth-child(1) {
	width: 100%;
	height: 100%;
}

.edh-sound-interlude__rings span:nth-child(2) {
	width: 68%;
	height: 68%;
}

.edh-sound-interlude__rings span:nth-child(3) {
	width: 34%;
	height: 34%;
}



/* ==========================================================
   CTA
   ========================================================== */

.edh-sound-cta {
	padding:
		20px
		20px
		90px;
}


.edh-sound-cta__inner {
	width: min(
		1460px,
		100%
	);

	min-height: 670px;

	margin-inline: auto;

	padding:
		clamp(60px, 8vw, 120px);

	display: flex;
	flex-direction: column;
	justify-content: center;

	border-radius: 34px;

	background:
		linear-gradient(
			135deg,
			#d6bea0,
			#bda886
		);
}


.edh-sound-cta__meta {
	display: flex;
	align-items: center;
	justify-content: space-between;
}


.edh-sound-cta__meta > span {
	font-size: 10px;

	letter-spacing: .16em;
}


.edh-sound-cta h2 {
	max-width: 1050px;

	margin-top: 50px;

	font-size: clamp(56px, 7vw, 108px);
	line-height: .88;

	font-weight: 500;

	letter-spacing: -.065em;
}


.edh-sound-cta__text {
	max-width: 600px;

	margin-top: 36px;

	font-size: 17px;
	line-height: 1.7;

	color: rgba(32,29,25,.68);
}


.edh-sound-button {
	width: fit-content;

	margin-top: 42px;

	padding:
		18px 26px;

	display: inline-flex;
	align-items: center;

	gap: 40px;

	border-radius: 999px;

	background:
		var(--sound-green);

	color: white !important;

	text-decoration: none;

	font-size: 11px;

	font-weight: 700;

	letter-spacing: .09em;
	text-transform: uppercase;

	transition:
		transform .3s ease,
		background .3s ease;
}


.edh-sound-button:hover {
	transform:
		translateY(-3px);

	background: #244a40;
}



/* ==========================================================
   ANIMACIONES JS
   ========================================================== */

.edh-sound [data-reveal] {
	opacity: 0;

	transform:
		translateY(35px);

	transition:
		opacity .9s ease,
		transform .9s cubic-bezier(.2,.7,.2,1);
}


.edh-sound [data-reveal].is-visible {
	opacity: 1;

	transform:
		translateY(0);
}


@media (prefers-reduced-motion: reduce) {

	.edh-sound [data-reveal] {
		opacity: 1;
		transform: none;
		transition: none;
	}

}



/* ==========================================================
   TABLET
   ========================================================== */

@media (max-width: 1024px) {

	.edh-sound-hero {
		grid-template-columns: 1fr;
	}

	.edh-sound-hero__copy {
		min-height: 650px;
	}

	.edh-sound-hero__visual {
		min-height: 75vw;
	}


	.edh-sound-manifesto
	.edh-sound-wrap {
		grid-template-columns:
			70px 1fr;
	}

	.edh-sound-manifesto__text {
		grid-column: 2;
	}


	.edh-sound-feature {
		grid-template-columns: 1fr;
	}

	.edh-sound-feature__image {
		min-height: 70vw;
	}

	.edh-sound-feature__statement {
		min-height: 550px;
	}


	.edh-sound-principles__grid {
		grid-template-columns: 1fr;
	}

	.edh-sound-principle {
		min-height: 350px;
	}

	.edh-sound-principle
	+ .edh-sound-principle {
		border-left: 0;

		border-top:
			1px solid var(--sound-line);
	}


	.edh-sound-experience {
		grid-template-columns: 1fr;
	}

	.edh-sound-experience__visual {
		min-height: 700px;

		border-right: 0;

		border-bottom:
			1px solid var(--sound-white-line);
	}

}



/* ==========================================================
   MOBILE
   ========================================================== */

@media (max-width: 767px) {

	.edh-sound-wrap {
		width:
			calc(100% - 32px);
	}


	.edh-sound-hero {
		width:
			calc(100% - 16px);

		margin-top: 8px;

		border-radius: 22px;
	}


	.edh-sound-hero__copy {
		min-height: auto;

		padding:
			100px
			25px
			60px;
	}


	.edh-sound-hero__top {
		top: 28px;
		left: 25px;
		right: 25px;
	}


	.edh-sound-hero__title {
		font-size:
			clamp(54px, 16vw, 76px);
	}


	.edh-sound-hero__intro {
		margin-top: 34px;
	}


	.edh-sound-hero__visual {
		min-height: 125vw;
	}


	.edh-sound-play {
		width: 62px;
		height: 62px;

		right: 20px;
		bottom: 20px;
	}


	.edh-sound-wave {
		left: 22px;
		bottom: 28px;
	}


	.edh-sound-manifesto {
		padding:
			100px 0;
	}


	.edh-sound-manifesto
	.edh-sound-wrap {
		grid-template-columns: 1fr;

		gap: 35px;
	}


	.edh-sound-manifesto__number {
		display: none;
	}


	.edh-sound-manifesto__text {
		grid-column: auto;
	}


	.edh-sound-display {
		font-size:
			clamp(44px, 13vw, 64px);
	}


	.edh-sound-feature {
		width:
			calc(100% - 16px);

		border-radius: 22px;
	}


	.edh-sound-feature__image {
		min-height: 115vw;
	}


	.edh-sound-feature__statement {
		min-height: 500px;

		padding:
			50px 25px;
	}


	.edh-sound-principles {
		padding:
			100px 0;
	}


	.edh-sound-principles__header {
		margin-bottom: 55px;
	}


	.edh-sound-principle {
		min-height: 340px;

		padding:
			26px 8px 34px;
	}


	.edh-sound-experience__visual {
		min-height: 115vw;
	}


	.edh-sound-experience__copy {
		padding:
			85px 25px;
	}


	.edh-sound-experience__items {
		margin-top: 45px;
	}


	.edh-sound-interlude {
		min-height: 550px;

		padding:
			90px 20px;
	}


	.edh-sound-cta {
		padding:
			8px 8px 50px;
	}


	.edh-sound-cta__inner {
		min-height: 620px;

		padding:
			60px 25px;

		border-radius: 22px;
	}


	.edh-sound-cta h2 {
		font-size:
			clamp(52px, 15vw, 74px);
	}

}
