/* ======================================================
   Social Media · Antes & Después — horizontal cinema scroll
   ====================================================== */

/* Center the title row so it shares the same axis as the cinema below */
.sm-service-section .sm-service-text-row {
	justify-content: center;
	padding: 6vw 6vw 2.5vw;
}

.sm-service-section .sm-service-inner {
	max-width: 820px;
	width: 100%;
}

.sm-service-section .sm-service-title {
	margin-bottom: 1.6rem;
}

.sm-cinema {
	--ink: #2a1a0e;
	--ink-soft: #562914;
	--ink-dim: rgba(86, 41, 20, 0.55);
	--rule: rgba(86, 41, 20, 0.18);
	--gold: #a8743e;
	--accent: #fcc144;

	width: 100%;
	padding: 1vw 0 5vw;
	display: flex;
	flex-direction: column;
	gap: clamp(1.5rem, 2.5vw, 2.5rem);
}

/* ---- Top intro ---- */
.sm-cinema__intro {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	gap: 1.5rem;
	max-width: 820px;
	width: 100%;
	margin: 0 auto;
	padding: 0 6vw;
}

.sm-cinema__rule {
	height: 1px;
	background: linear-gradient(90deg, transparent, var(--rule), transparent);
}

.sm-cinema__intro-text {
	font-family: 'Cormorant Garamond', serif;
	font-style: italic;
	font-size: clamp(0.75rem, 0.9vw, 0.9rem);
	letter-spacing: 0.34em;
	text-transform: uppercase;
	color: var(--ink-soft);
	white-space: nowrap;
}

/* ---- Stage (viewport + arrows) ---- */
.sm-cinema__stage {
	position: relative;
	width: 100%;
}

.sm-cinema__viewport {
	overflow-x: auto;
	overflow-y: hidden;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
	display: flex;
	gap: 0;
	padding: 1.5vw 0;
	cursor: grab;
	user-select: none;
}

.sm-cinema__viewport.is-dragging {
	cursor: grabbing;
	scroll-behavior: auto;
}

.sm-cinema__viewport::-webkit-scrollbar {
	display: none;
}

.sm-cinema__viewport:focus-visible {
	outline: none;
}

/* ---- Arrows ---- */
.sm-cinema__arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 4;
	width: clamp(40px, 3.2vw, 52px);
	height: clamp(40px, 3.2vw, 52px);
	border-radius: 999px;
	border: 1px solid var(--rule);
	background: rgba(247, 241, 227, 0.85);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	cursor: pointer;
	display: grid;
	place-items: center;
	color: var(--ink-soft);
	transition: opacity 0.35s ease, transform 0.35s ease, background 0.35s ease;
	opacity: 0.85;
}

.sm-cinema__arrow:hover {
	opacity: 1;
	background: var(--ink-soft);
	color: var(--accent);
	transform: translateY(-50%) scale(1.06);
}

.sm-cinema__arrow[disabled] {
	opacity: 0;
	pointer-events: none;
	transform: translateY(-50%) scale(0.9);
}

.sm-cinema__arrow--prev { left: clamp(1vw, 2.5vw, 3rem); }
.sm-cinema__arrow--next { right: clamp(1vw, 2.5vw, 3rem); }

.sm-cinema__arrow span {
	width: 12px;
	height: 12px;
	border-top: 1.5px solid currentColor;
	border-left: 1.5px solid currentColor;
	display: block;
}

.sm-cinema__arrow--prev span { transform: rotate(-45deg) translate(2px, 2px); }
.sm-cinema__arrow--next span { transform: rotate(135deg) translate(2px, 2px); }

/* ---- One act / slide ---- */
.sm-act {
	flex: 0 0 100%;
	scroll-snap-align: center;
	scroll-snap-stop: always;
	padding: 0 clamp(2rem, 6vw, 6rem);
	max-width: 100%;
	box-sizing: border-box;
	display: flex;
	justify-content: center;
}

.sm-act__frame {
	position: relative;
	width: 100%;
	max-width: 820px;
	opacity: 0;
	transform: translateY(24px) scale(0.985);
	transition:
		opacity 1.1s cubic-bezier(0.16, 1, 0.3, 1),
		transform 1.1s cubic-bezier(0.16, 1, 0.3, 1);
}

.sm-act.is-visible .sm-act__frame {
	opacity: 1;
	transform: translateY(0) scale(1);
}

/* Hide legacy framing extras */
.sm-act__grain,
.sm-act__seam {
	display: none;
}

/* ---- Header (credits) ---- */
.sm-act__header {
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: baseline;
	gap: clamp(1rem, 2vw, 2rem);
	padding-bottom: clamp(0.8rem, 1.2vw, 1.1rem);
	border-bottom: 1px solid var(--rule);
	margin-bottom: clamp(1.4rem, 2.2vw, 2.2rem);
}

.sm-act__cap {
	position: relative;
	font-family: 'Cormorant Garamond', serif;
	font-style: italic;
	font-size: clamp(0.78rem, 0.9vw, 0.95rem);
	letter-spacing: 0.28em;
	text-transform: uppercase;
	color: var(--gold);
	padding-bottom: 4px;
}

.sm-act__cap::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	height: 1px;
	width: 0;
	background: currentColor;
	transition: width 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.4s;
}

.sm-act.is-visible .sm-act__cap::after {
	width: 100%;
}

.sm-act__meta {
	display: inline-flex;
	flex-wrap: wrap;
	align-items: baseline;
	gap: 0.55rem;
	color: var(--ink);
}

.sm-act__name {
	font-family: 'Cormorant Garamond', serif;
	font-size: clamp(1.1rem, 1.5vw, 1.5rem);
	font-weight: 500;
	line-height: 1;
}

.sm-act__sep {
	color: var(--ink-dim);
	font-family: 'Cormorant Garamond', serif;
	font-size: clamp(0.95rem, 1.2vw, 1.2rem);
}

.sm-act__sector {
	font-family: 'Cormorant Garamond', serif;
	font-style: italic;
	font-size: clamp(0.8rem, 0.95vw, 0.95rem);
	color: var(--ink-dim);
}

.sm-act__duration {
	font-family: 'Cormorant Garamond', serif;
	font-size: clamp(0.66rem, 0.78vw, 0.78rem);
	letter-spacing: 0.34em;
	text-transform: uppercase;
	color: var(--ink-dim);
	white-space: nowrap;
}

/* ---- Diptych ---- */
.sm-act__diptych {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(1.25rem, 2.8vw, 3rem);
	align-items: start;
}

.sm-act__panel {
	position: relative;
	margin: 0;
	aspect-ratio: 9 / 16;
	max-width: 320px;
	width: 100%;
	justify-self: center;
	overflow: hidden;
	background: #efe5d0;
}

.sm-act__panel img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	clip-path: inset(100% 0 0 0);
	transition:
		clip-path 1.3s cubic-bezier(0.16, 1, 0.3, 1),
		filter 0.8s ease,
		transform 1.4s ease;
	will-change: transform, filter, clip-path;
	pointer-events: none;
}

.sm-act__panel--before img {
	filter: grayscale(0.7) brightness(0.94) contrast(1.02);
}

.sm-act__panel--before:hover img {
	filter: grayscale(0) brightness(1) contrast(1);
	transform: scale(1.02);
}

.sm-act__panel--after img {
	filter: saturate(1.03);
}

.sm-act__panel--after:hover img {
	transform: scale(1.02);
}

.sm-act.is-visible .sm-act__panel--before img {
	clip-path: inset(0 0 0 0);
}

.sm-act.is-visible .sm-act__panel--after img {
	clip-path: inset(0 0 0 0);
	transition-delay: 0.28s, 0s, 0s;
}

/* Tag (Antes / Después) */
.sm-act__tag {
	position: absolute;
	top: 0.85rem;
	left: 0.85rem;
	z-index: 3;
	background: rgba(247, 241, 227, 0.92);
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
	color: var(--ink-soft);
	font-family: 'Cormorant Garamond', serif;
	font-size: 0.62rem;
	letter-spacing: 0.32em;
	text-transform: uppercase;
	padding: 0.42em 0.95em;
	border-radius: 999px;
	border: 1px solid rgba(86, 41, 20, 0.18);
}

.sm-act__panel--after .sm-act__tag {
	background: var(--ink-soft);
	color: var(--accent);
	border-color: transparent;
}

/* ---- Footer credits ---- */
.sm-act__footer {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 0.6rem;
	margin-top: clamp(1.4rem, 2.2vw, 2rem);
	padding-top: clamp(0.9rem, 1.4vw, 1.3rem);
	border-top: 1px solid var(--rule);
	font-family: 'Cormorant Garamond', serif;
	font-style: italic;
	font-size: clamp(0.7rem, 0.82vw, 0.82rem);
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--ink-dim);
}

.sm-act__dot {
	color: var(--gold);
	opacity: 0.7;
}

/* ---- Roman numeral dots (nav indicator) ---- */
.sm-cinema__dots {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: clamp(1.5rem, 3vw, 3rem);
	margin-top: clamp(1rem, 1.6vw, 1.6rem);
}

.sm-cinema__dot {
	background: none;
	border: 0;
	cursor: pointer;
	padding: 0.4rem 0.2rem;
	font-family: 'Cormorant Garamond', serif;
	font-style: italic;
	font-size: clamp(0.85rem, 1vw, 1rem);
	letter-spacing: 0.16em;
	color: var(--ink-dim);
	position: relative;
	transition: color 0.4s ease;
}

.sm-cinema__dot span {
	display: inline-block;
	transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.sm-cinema__dot::after {
	content: "";
	position: absolute;
	left: 50%;
	bottom: -4px;
	transform: translateX(-50%) scaleX(0);
	width: 22px;
	height: 1px;
	background: var(--gold);
	transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
	transform-origin: center;
}

.sm-cinema__dot:hover {
	color: var(--ink-soft);
}

.sm-cinema__dot.is-active {
	color: var(--ink);
}

.sm-cinema__dot.is-active::after {
	transform: translateX(-50%) scaleX(1);
}

.sm-cinema__dot.is-active span {
	transform: scale(1.15);
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
	.sm-act__header {
		grid-template-columns: 1fr;
		gap: 0.4rem;
	}

	.sm-act__duration {
		justify-self: start;
	}

	.sm-act__panel {
		max-width: 260px;
	}

	.sm-cinema__arrow {
		display: none;
	}

	.sm-act {
		padding: 0 6vw;
	}
}

/* ======================================================
   Influencer Marketing · Triptych de Reels
   ====================================================== */

/* Align title row with the triptych below */
.im-service-section {
	align-items: center;
}

.im-service-section .im-service-text-row {
	justify-content: center;
	padding: 6vw 6vw 2.5vw;
	width: 100%;
	box-sizing: border-box;
}

.im-service-section .im-service-inner {
	max-width: 1100px;
	width: 100%;
}

.im-service-section .im-service-title {
	margin-bottom: 1.6rem;
}

.im-reels {
	--ink: #2a1a0e;
	--ink-soft: #562914;
	--ink-dim: rgba(86, 41, 20, 0.55);
	--rule: rgba(86, 41, 20, 0.18);
	--gold: #a8743e;
	--accent: #fcc144;

	width: 100%;
	box-sizing: border-box;
	padding: 1vw 6vw 6vw;
	display: flex;
	flex-direction: column;
	gap: clamp(2rem, 3.5vw, 3.5rem);
	align-items: center;
}

.im-reels__intro {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	gap: 1.5rem;
	max-width: 820px;
	width: 100%;
	margin: 0 auto;
}

.im-reels__intro-text {
	font-family: 'Cormorant Garamond', serif;
	font-style: italic;
	font-size: clamp(0.75rem, 0.9vw, 0.9rem);
	letter-spacing: 0.34em;
	text-transform: uppercase;
	color: var(--ink-soft);
	white-space: nowrap;
}

.im-reels__triptych {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: clamp(1.5rem, 3vw, 3rem);
	max-width: 1100px;
	width: 100%;
	margin: 0 auto;
	justify-items: center;
}

.im-reel {
	margin: 0;
	width: 100%;
	max-width: 300px;
	opacity: 0;
	transform: translateY(28px);
	transition:
		opacity 1.1s cubic-bezier(0.16, 1, 0.3, 1),
		transform 1.1s cubic-bezier(0.16, 1, 0.3, 1);
}

.im-reel.is-visible { opacity: 1; transform: translateY(0); }
.im-reel:nth-child(2) { transition-delay: 0.12s; }
.im-reel:nth-child(3) { transition-delay: 0.24s; }

.im-reel__frame {
	position: relative;
	aspect-ratio: 9 / 16;
	width: 100%;
	overflow: hidden;
	background: #efe5d0;
	cursor: pointer;
	isolation: isolate;
}

.im-reel__video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	background: #1a0e07;
}

/* Soft vignette + warm tint on idle */
.im-reel__frame::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 2;
	pointer-events: none;
	background:
		radial-gradient(ellipse at center, transparent 55%, rgba(0, 0, 0, 0.38) 100%);
	opacity: 1;
	transition: opacity 0.6s ease;
}

.im-reel.is-playing .im-reel__frame::before { opacity: 0; }

/* Play / Pause button */
.im-reel__play {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 3;
	width: clamp(58px, 5.2vw, 78px);
	height: clamp(58px, 5.2vw, 78px);
	border-radius: 999px;
	background: rgba(247, 241, 227, 0.92);
	border: 1px solid rgba(247, 241, 227, 0.85);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	color: var(--ink-soft);
	cursor: pointer;
	display: grid;
	place-items: center;
	box-shadow:
		0 0 0 1px rgba(86, 41, 20, 0.06),
		0 14px 30px -10px rgba(26, 14, 7, 0.45);
	transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
		background 0.4s ease,
		color 0.4s ease,
		opacity 0.4s ease;
}

.im-reel__play svg {
	width: 42%;
	height: 42%;
	fill: currentColor;
	transition: opacity 0.3s ease, transform 0.3s ease;
}

.im-reel__pause-icon { display: none; }

/* Soft pulse on idle */
.im-reel__play::before {
	content: "";
	position: absolute;
	inset: -10px;
	border-radius: 999px;
	border: 1px solid var(--gold);
	opacity: 0;
	animation: im-pulse 2.6s ease-out infinite;
	pointer-events: none;
}

@keyframes im-pulse {
	0% { transform: scale(0.85); opacity: 0; }
	30% { opacity: 0.45; }
	100% { transform: scale(1.25); opacity: 0; }
}

.im-reel__frame:hover .im-reel__play {
	transform: translate(-50%, -50%) scale(1.08);
	background: var(--ink-soft);
	color: var(--accent);
}

/* When playing */
.im-reel.is-playing .im-reel__play {
	opacity: 0;
	pointer-events: none;
	transform: translate(-50%, -50%) scale(0.85);
}

.im-reel.is-playing .im-reel__frame:hover .im-reel__play {
	opacity: 1;
	pointer-events: auto;
	transform: translate(-50%, -50%) scale(1);
	background: rgba(247, 241, 227, 0.92);
	color: var(--ink-soft);
}

.im-reel.is-playing .im-reel__frame:hover .im-reel__play:hover {
	background: var(--ink-soft);
	color: var(--accent);
}

.im-reel.is-playing .im-reel__play::before {
	display: none;
}

.im-reel.is-playing .im-reel__play .im-reel__play-icon { display: none; }
.im-reel.is-playing .im-reel__play .im-reel__pause-icon { display: block; }
.im-reel:not(.is-playing) .im-reel__play .im-reel__pause-icon { display: none; }

/* Caption */
.im-reel__caption {
	display: flex;
	flex-direction: column;
	gap: 0.4rem;
	padding-top: 0.3rem;
	border-top: 1px solid var(--rule);
	padding-top: 0.85rem;
}

.im-reel__cap {
	font-family: 'Cormorant Garamond', serif;
	font-style: italic;
	font-size: clamp(0.72rem, 0.85vw, 0.85rem);
	letter-spacing: 0.3em;
	text-transform: uppercase;
	color: var(--gold);
}

.im-reel__meta {
	display: inline-flex;
	flex-wrap: wrap;
	align-items: baseline;
	gap: 0.45rem;
}

.im-reel__handle {
	font-family: 'Cormorant Garamond', serif;
	font-size: clamp(1rem, 1.25vw, 1.2rem);
	font-weight: 500;
	color: var(--ink);
	line-height: 1;
}

.im-reel__sep {
	color: var(--ink-dim);
	font-family: 'Cormorant Garamond', serif;
}

.im-reel__brand {
	font-family: 'Cormorant Garamond', serif;
	font-style: italic;
	font-size: clamp(0.8rem, 0.95vw, 0.95rem);
	color: var(--ink-dim);
}

/* Hint line under triptych */
.im-reels__hint {
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
	font-family: 'Cormorant Garamond', serif;
	font-style: italic;
	font-size: clamp(0.72rem, 0.85vw, 0.85rem);
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--ink-dim);
}

.im-reels__hint em {
	font-style: italic;
	color: var(--gold);
	letter-spacing: 0.18em;
}

.im-reels__hint-icon {
	display: inline-grid;
	place-items: center;
	width: 22px;
	height: 22px;
	color: var(--gold);
}

.im-reels__hint-icon svg {
	width: 100%;
	height: 100%;
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
	.im-reels__triptych {
		grid-template-columns: 1fr 1fr;
		gap: 1.5rem;
	}

	.im-reel:nth-child(3) {
		grid-column: 1 / -1;
		max-width: 50%;
		margin: 0 auto;
	}
}

@media (max-width: 560px) {
	.im-reels {
		padding: 1vw 6vw 10vw;
	}

	.im-reels__triptych {
		grid-template-columns: 1fr;
		max-width: 320px;
	}

	.im-reel:nth-child(3) {
		grid-column: auto;
		max-width: none;
	}

	.im-reels__intro {
		grid-template-columns: 1fr;
	}

	.im-reels__intro-text {
		font-size: 0.66rem;
		letter-spacing: 0.24em;
	}

	.im-reels__hint {
		font-size: 0.65rem;
		letter-spacing: 0.14em;
		text-align: center;
	}
}

@media (max-width: 560px) {
	.sm-cinema {
		padding: 1vw 0 8vw;
	}

	.sm-act__diptych {
		gap: 1rem;
	}

	.sm-act__panel {
		max-width: none;
	}

	.sm-act__footer {
		font-size: 0.62rem;
		letter-spacing: 0.18em;
		gap: 0.4rem;
	}

	.sm-cinema__rule {
		display: none;
	}

	.sm-cinema__intro {
		grid-template-columns: 1fr;
	}

	.sm-cinema__intro-text {
		font-size: 0.66rem;
		letter-spacing: 0.24em;
	}
}


/* ======================================================
   Identidad Visual · Portfolio editorial
   ====================================================== */

/* Base service section — reuse the SM/IM look */
.iv-service-section {
	background-color: #f7f1e3;
	display: flex;
	flex-direction: column;
	overflow: hidden;
	align-items: center;
}

.iv-service-section .iv-service-text-row {
	display: flex;
	justify-content: center;
	padding: 6vw 6vw 2.5vw;
	width: 100%;
	box-sizing: border-box;
}

.iv-service-section .iv-service-inner {
	max-width: 1200px;
	width: 100%;
}

/* Split layout: title-left / hairline / description-right */
.iv-service-inner--split {
	display: grid;
	grid-template-columns: auto 1px 1fr;
	align-items: end;
	gap: clamp(2rem, 4.5vw, 4.5rem);
}

.iv-service-headline {
	min-width: 0;
}

.iv-service-rule {
	width: 1px;
	background: rgba(86, 41, 20, 0.22);
	align-self: stretch;
	min-height: 60%;
	justify-self: center;
}

.iv-service-body {
	display: flex;
	flex-direction: column;
	gap: 0.9rem;
	max-width: 460px;
	padding-bottom: 0.35rem;
}

.iv-service-number {
	font-family: 'Cormorant Garamond', serif;
	font-size: 13px;
	font-weight: 400;
	letter-spacing: 0.25em;
	color: #a8743e;
	margin-bottom: 1rem;
}

.iv-service-title {
	font-family: 'Cormorant Garamond', serif;
	font-size: clamp(2.2rem, 5.4vw, 4.6rem);
	font-weight: 700;
	letter-spacing: -0.01em;
	line-height: 0.95;
	color: #2a1a0e;
	margin: 0;
}

.iv-service-lede {
	margin: 0;
	font-family: 'Cormorant Garamond', serif;
	font-style: italic;
	font-size: clamp(1.15rem, 1.5vw, 1.5rem);
	font-weight: 500;
	line-height: 1.25;
	color: #2a1a0e;
	letter-spacing: -0.005em;
}

.iv-service-description {
	margin: 0;
	font-family: 'Cormorant Garamond', serif;
	font-size: clamp(0.95rem, 1.1vw, 1.05rem);
	font-weight: 400;
	line-height: 1.7;
	color: #562914;
	max-width: none;
}

@media (max-width: 900px) {
	.iv-service-inner--split {
		grid-template-columns: 1fr;
		gap: 1.4rem;
		align-items: start;
	}

	.iv-service-rule {
		width: 60px;
		height: 1px;
		min-height: 0;
		justify-self: start;
		align-self: auto;
	}

	.iv-service-body {
		max-width: none;
	}

	.iv-service-title br {
		display: none;
	}
}

.iv-portfolio {
	--ink: #2a1a0e;
	--ink-soft: #562914;
	--ink-dim: rgba(86, 41, 20, 0.55);
	--rule: rgba(86, 41, 20, 0.18);
	--gold: #a8743e;
	--accent: #fcc144;

	width: 100%;
	max-width: 1200px;
	padding: 1vw 6vw 7vw;
	display: flex;
	flex-direction: column;
	gap: clamp(3rem, 5vw, 5rem);
	box-sizing: border-box;
}

.iv-portfolio__intro {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	gap: 1.5rem;
	max-width: 820px;
	width: 100%;
	margin: 0 auto;
}

.iv-portfolio__intro-text {
	font-family: 'Cormorant Garamond', serif;
	font-style: italic;
	font-size: clamp(0.75rem, 0.9vw, 0.9rem);
	letter-spacing: 0.34em;
	text-transform: uppercase;
	color: var(--ink-soft);
	white-space: nowrap;
}

/* Thin gold separator between spreads */
.iv-portfolio__sep {
	width: 100%;
	max-width: 240px;
	height: 1px;
	background: linear-gradient(90deg, transparent, var(--gold), transparent);
	margin: 0 auto;
	opacity: 0.55;
}

/* ---- Spread ---- */
.iv-spread {
	display: flex;
	flex-direction: column;
	gap: clamp(1.2rem, 2vw, 2rem);
	opacity: 0;
	transform: translateY(36px);
	transition:
		opacity 1.1s cubic-bezier(0.16, 1, 0.3, 1),
		transform 1.1s cubic-bezier(0.16, 1, 0.3, 1);
}

.iv-spread.is-visible {
	opacity: 1;
	transform: translateY(0);
}

.iv-spread__head {
	display: inline-flex;
	align-items: baseline;
	gap: 0.7rem;
	padding-bottom: clamp(0.7rem, 1vw, 1rem);
	border-bottom: 1px solid var(--rule);
	font-family: 'Cormorant Garamond', serif;
}

.iv-spread__no {
	font-style: italic;
	font-size: clamp(0.85rem, 1vw, 1rem);
	letter-spacing: 0.18em;
	color: var(--gold);
	font-feature-settings: "lnum" 1;
}

.iv-spread__sep {
	color: var(--ink-dim);
	font-size: clamp(0.85rem, 1vw, 1rem);
}

.iv-spread__tag {
	font-style: italic;
	font-size: clamp(0.78rem, 0.92vw, 0.9rem);
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--ink-dim);
}

/* ---- Grid: hero + 3 thumbs (asymmetric magazine spread) ---- */
.iv-spread__grid {
	display: grid;
	grid-template-columns: repeat(12, 1fr);
	grid-template-rows: repeat(3, 1fr);
	gap: clamp(0.6rem, 1vw, 1.1rem);
	width: 100%;
	height: clamp(420px, 50vw, 720px);
}

.iv-spread__grid > figure {
	margin: 0;
	overflow: hidden;
	background: #efe5d0;
	position: relative;
}

.iv-spread__grid > figure > img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 1.4s cubic-bezier(0.16, 1, 0.3, 1), filter 0.8s ease;
}

.iv-spread__grid > figure:hover > img {
	transform: scale(1.03);
	filter: saturate(1.04) brightness(1.02);
}

/* Subtle warm vignette on each cell */
.iv-spread__grid > figure::after {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse at center, transparent 65%, rgba(86, 41, 20, 0.15) 100%);
	pointer-events: none;
	opacity: 0;
	transition: opacity 0.6s ease;
}

.iv-spread__grid > figure:hover::after {
	opacity: 1;
}

/* Layout — default: hero LEFT, thumbs RIGHT */
.iv-spread__hero {
	grid-column: 1 / 8;
	grid-row: 1 / 4;
}

.iv-spread__grid > .iv-spread__thumb:nth-of-type(2) { grid-column: 8 / 13; grid-row: 1; }
.iv-spread__grid > .iv-spread__thumb:nth-of-type(3) { grid-column: 8 / 13; grid-row: 2; }
.iv-spread__grid > .iv-spread__thumb:nth-of-type(4) { grid-column: 8 / 13; grid-row: 3; }

/* Reverse — hero RIGHT, thumbs LEFT */
.iv-spread--reverse .iv-spread__hero { grid-column: 6 / 13; }
.iv-spread--reverse .iv-spread__grid > .iv-spread__thumb:nth-of-type(2) { grid-column: 1 / 6; }
.iv-spread--reverse .iv-spread__grid > .iv-spread__thumb:nth-of-type(3) { grid-column: 1 / 6; }
.iv-spread--reverse .iv-spread__grid > .iv-spread__thumb:nth-of-type(4) { grid-column: 1 / 6; }

/* Stagger reveal — different motion per cell */
.iv-spread__grid > figure {
	opacity: 0;
	clip-path: inset(0 100% 0 0);
	transition:
		opacity 1.1s cubic-bezier(0.16, 1, 0.3, 1),
		clip-path 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.iv-spread--reverse .iv-spread__grid > figure {
	clip-path: inset(0 0 0 100%);
}

.iv-spread.is-visible .iv-spread__grid > figure {
	opacity: 1;
	clip-path: inset(0 0 0 0);
}

.iv-spread.is-visible .iv-spread__grid > .iv-spread__thumb:nth-of-type(2) { transition-delay: 0.15s; }
.iv-spread.is-visible .iv-spread__grid > .iv-spread__thumb:nth-of-type(3) { transition-delay: 0.27s; }
.iv-spread.is-visible .iv-spread__grid > .iv-spread__thumb:nth-of-type(4) { transition-delay: 0.39s; }

/* ---- Responsive ---- */
@media (max-width: 900px) {
	.iv-spread__grid {
		grid-template-columns: 1fr 1fr;
		grid-template-rows: auto auto auto;
		height: auto;
	}

	.iv-spread__hero {
		grid-column: 1 / -1;
		grid-row: auto;
		aspect-ratio: 16 / 11;
	}

	.iv-spread--reverse .iv-spread__hero {
		grid-column: 1 / -1;
	}

	.iv-spread__grid > .iv-spread__thumb {
		aspect-ratio: 4 / 5;
	}

	.iv-spread__grid > .iv-spread__thumb:nth-of-type(2),
	.iv-spread__grid > .iv-spread__thumb:nth-of-type(3),
	.iv-spread__grid > .iv-spread__thumb:nth-of-type(4) {
		grid-column: auto;
		grid-row: auto;
	}

	.iv-spread--reverse .iv-spread__grid > .iv-spread__thumb:nth-of-type(2),
	.iv-spread--reverse .iv-spread__grid > .iv-spread__thumb:nth-of-type(3),
	.iv-spread--reverse .iv-spread__grid > .iv-spread__thumb:nth-of-type(4) {
		grid-column: auto;
		grid-row: auto;
	}

	/* Stack 4th thumb to full width */
	.iv-spread__grid > .iv-spread__thumb:nth-of-type(4) {
		grid-column: 1 / -1;
		aspect-ratio: 16 / 11;
	}
}

@media (max-width: 560px) {
	.iv-portfolio {
		padding: 1vw 6vw 10vw;
	}

	.iv-spread__grid {
		grid-template-columns: 1fr;
	}

	.iv-spread__grid > .iv-spread__thumb,
	.iv-spread__grid > .iv-spread__thumb:nth-of-type(4) {
		grid-column: 1;
		aspect-ratio: 4 / 5;
	}

	.iv-portfolio__intro {
		grid-template-columns: 1fr;
	}

	.iv-portfolio__intro-text {
		font-size: 0.66rem;
		letter-spacing: 0.24em;
	}
}


/* ======================================================
   Studio Rio × Altivia — editorial duet
   ====================================================== */
.studio-section {
	background-color: #f7f1e3;
	padding: clamp(4rem, 7vw, 7rem) 6vw clamp(5rem, 9vw, 8rem);
	overflow: hidden;
}

.studio {
	--ink: #2a1a0e;
	--ink-soft: #562914;
	--ink-dim: rgba(86, 41, 20, 0.55);
	--rule: rgba(86, 41, 20, 0.18);
	--gold: #a8743e;
	--accent: #fcc144;

	max-width: 1300px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: clamp(2.5rem, 4vw, 4.5rem);
}

/* Top intro hairline */
.studio__intro {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	gap: 1.5rem;
	max-width: 820px;
	width: 100%;
	margin: 0 auto;
}

.studio__intro-text {
	font-family: 'Cormorant Garamond', serif;
	font-style: italic;
	font-size: clamp(0.75rem, 0.9vw, 0.9rem);
	letter-spacing: 0.34em;
	text-transform: uppercase;
	color: var(--ink-soft);
	white-space: nowrap;
}

/* ---- Asymmetric grid: V1 top-left, title center, V2 bottom-right ---- */
.studio__layout {
	display: grid;
	grid-template-columns: repeat(12, 1fr);
	gap: clamp(1.2rem, 2vw, 2.6rem);
	align-items: start;
	position: relative;
}

.studio__reel {
	margin: 0;
	width: 100%;
	max-width: 320px;
	justify-self: center;
	opacity: 0;
	transition: opacity 1.1s cubic-bezier(.16,1,.3,1), transform 1.1s cubic-bezier(.16,1,.3,1);
}

.studio__reel--left {
	grid-column: 1 / 5;
	transform: translateX(-30px);
	justify-self: end;
}

.studio__reel--right {
	grid-column: 9 / 13;
	transform: translateX(30px);
	justify-self: start;
	margin-top: clamp(2.5rem, 6vw, 6rem); /* offset down -> staircase */
}

.studio.is-visible .studio__reel {
	opacity: 1;
	transform: translateX(0);
}

.studio.is-visible .studio__reel--right { transition-delay: 0.18s; }

.studio__frame {
	position: relative;
	aspect-ratio: 9 / 16;
	width: 100%;
	overflow: hidden;
	background: #1a0e07;
	isolation: isolate;
}

.studio__video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	background: #1a0e07;
}

/* Subtle gold border that pulses while idle */
.studio__frame::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 2;
	pointer-events: none;
	box-shadow:
		0 0 0 1px rgba(247, 241, 227, 0.18) inset,
		0 0 0 2px rgba(168, 116, 62, 0) inset;
	transition: box-shadow 0.6s ease;
}

.studio__reel:hover .studio__frame::before {
	box-shadow:
		0 0 0 1px rgba(247, 241, 227, 0.4) inset,
		0 0 0 2px rgba(168, 116, 62, 0.32) inset;
}

/* Soft vignette */
.studio__frame::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	pointer-events: none;
	background: radial-gradient(ellipse at center, transparent 55%, rgba(0, 0, 0, 0.42) 100%);
	opacity: 1;
	transition: opacity 0.6s ease;
}

.studio__reel.is-playing .studio__frame::after { opacity: 0; }

/* Play UI — minimal outlined triangle */
.studio__play {
	position: absolute;
	top: 50%; left: 50%;
	transform: translate(-50%, -50%);
	z-index: 3;
	width: clamp(64px, 6.5vw, 90px);
	height: clamp(64px, 6.5vw, 90px);
	display: grid;
	place-items: center;
	pointer-events: none;
	transition: opacity 0.5s ease, transform 0.6s cubic-bezier(.16,1,.3,1);
}

.studio__play svg {
	width: 100%;
	height: 100%;
	fill: rgba(247, 241, 227, 0.97);
	transition: fill 0.4s ease, transform 0.5s cubic-bezier(.16,1,.3,1);
	filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.35));
}

.studio__play-pause { display: none; }

/* Soft ring pulse */
.studio__play::after {
	content: "";
	position: absolute;
	inset: -8px;
	border-radius: 999px;
	border: 1px solid rgba(252, 193, 68, 0.55);
	opacity: 0;
	animation: studio-pulse 2.8s ease-out infinite;
}

@keyframes studio-pulse {
	0%   { transform: scale(0.82); opacity: 0; }
	30%  { opacity: 0.55; }
	100% { transform: scale(1.18); opacity: 0; }
}

.studio__reel:hover .studio__play {
	transform: translate(-50%, -50%) scale(1.07);
}

.studio__reel:hover .studio__play svg {
	fill: var(--accent);
}

/* Click target — invisible full-frame button */
.studio__play-hit {
	position: absolute;
	inset: 0;
	z-index: 4;
	background: transparent;
	border: 0;
	cursor: pointer;
	padding: 0;
}

.studio__play-hit:focus-visible {
	outline: 1px solid var(--accent);
	outline-offset: -3px;
}

/* When playing — hide triangle, show pause on hover */
.studio__reel.is-playing .studio__play { opacity: 0; }
.studio__reel.is-playing .studio__play::after { display: none; }

.studio__reel.is-playing:hover .studio__play {
	opacity: 1;
}

.studio__reel.is-playing .studio__play-tri { display: none; }
.studio__reel.is-playing .studio__play-pause { display: block; }

/* ---- Title block (center) ---- */
.studio__title-block {
	grid-column: 5 / 9;
	align-self: center;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: clamp(0.6rem, 1vw, 1rem);
	padding: clamp(1.5rem, 3vw, 3rem) 0;
}

.studio__eyebrow {
	font-family: 'Cormorant Garamond', serif;
	font-style: italic;
	font-size: clamp(0.7rem, 0.82vw, 0.82rem);
	letter-spacing: 0.36em;
	text-transform: uppercase;
	color: var(--gold);
}

.studio__title {
	margin: 0;
	font-family: 'Cormorant Garamond', serif;
	font-style: italic;
	font-weight: 500;
	font-size: clamp(2.2rem, 5vw, 4.6rem);
	line-height: 0.98;
	color: var(--ink);
	letter-spacing: -0.005em;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.studio__title-word {
	display: block;
	opacity: 0;
	transform: translateY(24px);
	transition: opacity 1s cubic-bezier(.16,1,.3,1), transform 1s cubic-bezier(.16,1,.3,1);
}

.studio.is-visible .studio__title-word:nth-child(1) { opacity: 1; transform: translateY(0); transition-delay: 0.1s; }
.studio.is-visible .studio__title-word:nth-child(2) { opacity: 1; transform: translateY(0); transition-delay: 0.26s; }
.studio.is-visible .studio__title-word:nth-child(3) { opacity: 1; transform: translateY(0); transition-delay: 0.44s; }

/* The "× Altivia" line: same big italic, with a smaller gold cross */
.studio__title-word--alt {
	color: var(--ink-soft);
	margin-top: 0.05em;
}

.studio__cross {
	display: inline-block;
	color: var(--gold);
	font-style: italic;
	font-size: 0.7em;
	margin-right: 0.18em;
	transform: translateY(-0.12em);
	letter-spacing: 0;
}

/* Hairline accent under title */
.studio__title-block::after {
	content: "";
	height: 1px;
	width: 0;
	background: var(--gold);
	margin-top: 1rem;
	transition: width 1s cubic-bezier(.16,1,.3,1) 0.7s;
}

.studio.is-visible .studio__title-block::after {
	width: clamp(40px, 5vw, 80px);
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
	.studio__layout {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.studio__reel--left,
	.studio__reel--right,
	.studio__title-block {
		grid-column: 1;
		justify-self: center;
	}

	.studio__reel--right {
		margin-top: 0;
	}

	.studio__title-block {
		padding: 1rem 0;
		order: -1; /* title appears above both videos on mobile */
	}

	.studio__reel--left { order: 1; }
	.studio__reel--right { order: 2; }
}

@media (max-width: 560px) {
	.studio-section {
		padding: 3rem 5vw 5rem;
	}

	.studio__reel {
		max-width: 280px;
	}

	.studio__intro {
		grid-template-columns: 1fr;
	}

	.studio__intro .sm-cinema__rule {
		display: none;
	}

	.studio__intro-text {
		font-size: 0.66rem;
		letter-spacing: 0.24em;
	}
}


/* ======================================================
   Manifiesto · Quiénes Somos
   ====================================================== */
.manifesto {
	--ink: #2a1a0e;
	--ink-soft: #562914;
	--ink-dim: rgba(86, 41, 20, 0.55);
	--rule: rgba(86, 41, 20, 0.18);
	--gold: #a8743e;
	--accent: #fcc144;

	background-color: #f7f1e3;
	padding: clamp(5rem, 10vw, 10rem) 6vw clamp(5rem, 10vw, 10rem);
	overflow: hidden;
}

.manifesto__inner {
	max-width: 1080px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: clamp(3rem, 6vw, 6rem);
}

/* ---- Headline ---- */
.manifesto__head {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: clamp(1.5rem, 2.5vw, 2.4rem);
	text-align: center;
}

.manifesto__kicker {
	display: inline-flex;
	align-items: center;
	gap: 1rem;
	font-family: 'Cormorant Garamond', serif;
	font-style: italic;
	font-size: clamp(0.78rem, 0.95vw, 0.95rem);
	letter-spacing: 0.4em;
	text-transform: uppercase;
	color: var(--ink-soft);
}

.manifesto__kicker-rule {
	display: inline-block;
	width: 0;
	height: 1px;
	background: var(--gold);
	transition: width 1.2s cubic-bezier(.16,1,.3,1);
}

.manifesto.is-visible .manifesto__kicker-rule {
	width: clamp(40px, 5vw, 64px);
}

.manifesto__hero {
	margin: 0;
	font-family: 'Cormorant Garamond', serif;
	font-style: italic;
	font-weight: 500;
	font-size: clamp(2.6rem, 7.5vw, 7rem);
	line-height: 0.96;
	letter-spacing: -0.012em;
	color: var(--ink);
	display: flex;
	flex-direction: column;
	align-items: center;
}

.manifesto__hero-line {
	display: block;
	overflow: hidden;
	padding: 0.05em 0;
}

.manifesto__word {
	display: inline-block;
	opacity: 0;
	transform: translateY(110%);
	transition: opacity 1.1s cubic-bezier(.16,1,.3,1), transform 1.1s cubic-bezier(.16,1,.3,1);
}

.manifesto.is-visible .manifesto__hero-line:nth-child(1) .manifesto__word { opacity: 1; transform: translateY(0); transition-delay: 0.15s; }
.manifesto.is-visible .manifesto__hero-line:nth-child(2) .manifesto__word { opacity: 1; transform: translateY(0); transition-delay: 0.32s; }
.manifesto.is-visible .manifesto__hero-line:nth-child(3) .manifesto__word { opacity: 1; transform: translateY(0); transition-delay: 0.49s; }

/* Golden period flourish */
.manifesto__period {
	color: var(--gold);
	font-style: italic;
	display: inline-block;
	transform: translateY(0);
}

/* ---- Divider hairline ---- */
.manifesto__divider {
	height: 1px;
	width: 100%;
	background: linear-gradient(90deg, transparent, var(--rule) 30%, var(--rule) 70%, transparent);
	transform: scaleX(0);
	transform-origin: center;
	transition: transform 1.3s cubic-bezier(.16,1,.3,1);
}

.manifesto.is-visible .manifesto__divider { transform: scaleX(1); }
.manifesto.is-visible .manifesto__divider:nth-of-type(1) { transition-delay: 0.7s; }

/* ---- Panel — paper card ---- */
.manifesto__panel {
	position: relative;
	display: grid;
	grid-template-columns: minmax(170px, 220px) 1fr;
	gap: clamp(2rem, 4.5vw, 4.5rem);
	align-items: start;
	background: #fbf7ec;
	border: 1px solid rgba(86, 41, 20, 0.07);
	border-radius: 4px;
	padding: clamp(2rem, 4vw, 3.6rem) clamp(1.8rem, 3.5vw, 3.4rem);
	box-shadow:
		0 1px 0 rgba(255, 255, 255, 0.6) inset,
		0 24px 60px -30px rgba(86, 41, 20, 0.22),
		0 8px 20px -12px rgba(86, 41, 20, 0.10);
	opacity: 0;
	transition:
		opacity 1.2s cubic-bezier(.16,1,.3,1),
		transform 1.3s cubic-bezier(.16,1,.3,1),
		box-shadow 0.6s ease;
}

/* Pre-reveal: tilted + offset (like a paper held in the air) */
.manifesto__panel[data-panel="01"] {
	transform: translate3d(-22px, 64px, 0) rotate(-1.4deg);
	transform-origin: bottom left;
}

.manifesto__panel[data-panel="02"] {
	transform: translate3d(22px, 64px, 0) rotate(1.4deg);
	transform-origin: bottom right;
}

/* Landed */
.manifesto.is-visible .manifesto__panel[data-panel="01"] {
	opacity: 1;
	transform: translate3d(0, 0, 0) rotate(0);
	transition-delay: 0.85s;
}

.manifesto.is-visible .manifesto__panel[data-panel="02"] {
	opacity: 1;
	transform: translate3d(0, 0, 0) rotate(0);
	transition-delay: 1.15s;
}

/* Subtle paper grain via inner ::before */
.manifesto__panel::before {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
	border-radius: inherit;
	background:
		linear-gradient(135deg, rgba(255, 255, 255, 0.45) 0%, transparent 25%),
		radial-gradient(ellipse at top left, rgba(252, 193, 68, 0.04), transparent 50%);
	opacity: 0;
	transition: opacity 0.8s ease 0.4s;
}

.manifesto.is-visible .manifesto__panel::before { opacity: 1; }

/* Thin gold accent on the top-left corner */
.manifesto__panel::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 0;
	height: 1px;
	background: var(--gold);
	transition: width 1s cubic-bezier(.16,1,.3,1);
}

.manifesto.is-visible .manifesto__panel[data-panel="01"]::after {
	width: 60px;
	transition-delay: 1.6s;
}

.manifesto.is-visible .manifesto__panel[data-panel="02"]::after {
	width: 60px;
	transition-delay: 1.9s;
}

/* Hover lift (subtle) */
.manifesto__panel:hover {
	box-shadow:
		0 1px 0 rgba(255, 255, 255, 0.7) inset,
		0 36px 80px -34px rgba(86, 41, 20, 0.26),
		0 12px 26px -14px rgba(86, 41, 20, 0.13);
}

/* Aside (chapter marker) — kept sticky inside the card */
.manifesto__aside {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	position: sticky;
	top: 8vh;
	z-index: 1;
}

.manifesto__no {
	font-family: 'Cormorant Garamond', serif;
	font-style: italic;
	font-weight: 500;
	font-size: clamp(3rem, 5.5vw, 5rem);
	line-height: 0.85;
	color: var(--gold);
	letter-spacing: -0.01em;
}

.manifesto__eyebrow {
	font-family: 'Cormorant Garamond', serif;
	font-size: clamp(0.72rem, 0.85vw, 0.88rem);
	letter-spacing: 0.34em;
	text-transform: uppercase;
	color: var(--ink-soft);
	line-height: 1.4;
	max-width: 130px;
}

/* Body (essay copy) */
.manifesto__body {
	max-width: 620px;
	display: flex;
	flex-direction: column;
	gap: clamp(0.9rem, 1.4vw, 1.3rem);
}

.manifesto__title {
	margin: 0;
	font-family: 'Cormorant Garamond', serif;
	font-style: italic;
	font-weight: 500;
	font-size: clamp(2.2rem, 4.5vw, 4rem);
	line-height: 1;
	color: var(--ink);
	letter-spacing: -0.005em;
}

.manifesto__title .manifesto__period {
	font-size: 1em;
}

.manifesto__lede {
	margin: 0;
	font-family: 'Cormorant Garamond', serif;
	font-style: italic;
	font-size: clamp(1.05rem, 1.4vw, 1.4rem);
	line-height: 1.45;
	color: var(--ink-soft);
	font-weight: 500;
}

.manifesto__text {
	margin: 0;
	font-family: 'Cormorant Garamond', serif;
	font-size: clamp(0.95rem, 1.1vw, 1.08rem);
	line-height: 1.7;
	color: var(--ink-soft);
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
	.manifesto__panel {
		grid-template-columns: 1fr;
		gap: 1.4rem;
	}

	.manifesto__panel[data-panel="01"] {
		transform: translate3d(0, 36px, 0) rotate(-0.6deg);
	}

	.manifesto__panel[data-panel="02"] {
		transform: translate3d(0, 36px, 0) rotate(0.6deg);
	}

	.manifesto__aside {
		position: static;
		flex-direction: row;
		align-items: flex-end;
		gap: 1.4rem;
		flex-wrap: wrap;
	}

	.manifesto__no { line-height: 1; }

	.manifesto__body { max-width: none; }
}

@media (max-width: 560px) {
	.manifesto {
		padding: 4rem 5vw 4rem;
	}

	.manifesto__hero {
		font-size: clamp(2.2rem, 11vw, 4rem);
	}

	.manifesto__kicker {
		font-size: 0.66rem;
		letter-spacing: 0.28em;
	}

	.manifesto__no {
		font-size: clamp(2.4rem, 12vw, 3.6rem);
	}

	.manifesto__title {
		font-size: clamp(2rem, 9vw, 2.8rem);
	}
}



/* ======================================================
   Proceso · Cómo trabajamos (Diagnóstico → Reporte)
   ====================================================== */
.proceso {
	--ink: #2a1a0e;
	--ink-soft: #562914;
	--ink-dim: rgba(86, 41, 20, 0.55);
	--rule: rgba(86, 41, 20, 0.16);
	--gold: #a8743e;
	--accent: #fcc144;

	width: 100%;
	max-width: 880px;
	margin: 0 auto;
	padding: 0 6vw;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: clamp(2rem, 4vw, 3.5rem);
}

/* Kicker — matches the rest of the site */
.proceso__kicker {
	display: inline-flex;
	align-items: center;
	gap: 1rem;
	font-family: 'Cormorant Garamond', serif;
	font-style: italic;
	font-size: clamp(0.78rem, 0.95vw, 0.95rem);
	letter-spacing: 0.4em;
	text-transform: uppercase;
	color: var(--ink-soft);
}

.proceso__kicker-rule {
	display: inline-block;
	width: 0;
	height: 1px;
	background: var(--gold);
	transition: width 1.1s cubic-bezier(.16, 1, .3, 1) 0.1s;
}

.proceso.is-visible .proceso__kicker-rule {
	width: clamp(36px, 4.5vw, 56px);
}

/* List */
.proceso .pinned-lists {
	list-style: none;
	margin: 0;
	padding: 0;
	width: 100%;
	max-width: 720px;
	display: flex;
	flex-direction: column;
}

.proceso .pinned-lists li {
	list-style: none;
	display: grid;
	grid-template-columns: clamp(2.4rem, 4vw, 3.6rem) 1fr;
	align-items: baseline;
	gap: clamp(1rem, 2.5vw, 2.2rem);
	padding: clamp(0.9rem, 1.8vw, 1.5rem) 0;
	border-bottom: 1px solid var(--rule);
	margin: 0;
	text-align: left;
	opacity: 0;
	transform: translateY(26px);
	transition:
		opacity 0.9s cubic-bezier(.16, 1, .3, 1),
		transform 0.9s cubic-bezier(.16, 1, .3, 1);
}

.proceso .pinned-lists li:first-child {
	border-top: 1px solid var(--rule);
}

.proceso.is-visible .pinned-lists li {
	opacity: 1;
	transform: translateY(0);
}

.proceso.is-visible .pinned-lists li:nth-child(1) { transition-delay: 0.20s; }
.proceso.is-visible .pinned-lists li:nth-child(2) { transition-delay: 0.32s; }
.proceso.is-visible .pinned-lists li:nth-child(3) { transition-delay: 0.44s; }
.proceso.is-visible .pinned-lists li:nth-child(4) { transition-delay: 0.56s; }
.proceso.is-visible .pinned-lists li:nth-child(5) { transition-delay: 0.68s; }

/* Gold italic number marker */
.proceso__no {
	font-family: 'Cormorant Garamond', serif;
	font-style: italic;
	font-weight: 500;
	font-size: clamp(1.1rem, 1.6vw, 1.6rem);
	line-height: 1;
	color: var(--gold);
	letter-spacing: 0.02em;
}

/* Step label — big editorial */
.proceso__label {
	font-family: 'Cormorant Garamond', serif;
	font-weight: 500;
	font-size: clamp(1.6rem, 3.6vw, 3rem);
	line-height: 1.04;
	letter-spacing: -0.01em;
	color: var(--ink);
	transition: color 0.45s ease, transform 0.6s cubic-bezier(.16, 1, .3, 1);
}

/* Hover: warm shift + slight slide */
.proceso .pinned-lists li:hover .proceso__label {
	color: var(--ink-soft);
	transform: translateX(8px);
}

.proceso .pinned-lists li:hover .proceso__no {
	color: var(--accent);
}

@media (max-width: 600px) {
	.proceso .pinned-lists li {
		grid-template-columns: clamp(2rem, 9vw, 2.8rem) 1fr;
		gap: 1rem;
	}

	.proceso__label {
		font-size: clamp(1.4rem, 7vw, 2.2rem);
	}

	.proceso__kicker {
		font-size: 0.66rem;
		letter-spacing: 0.28em;
	}
}


/* ======================================================
   Social Ads banner · editorial alignment (typography only)
   ====================================================== */
.shooting-number {
	font-style: italic;
	letter-spacing: 0.3em;
	color: #fcc144;
}

.shooting-period {
	color: #fcc144;
	font-style: italic;
	font-weight: 500;
}

.shooting-description {
	font-style: italic;
	color: rgba(255, 241, 227, 0.82);
}

/* Banner overlay — lighten so the photo breathes */
.shooting-overlay {
	background: rgba(0, 0, 0, 0.5);
}


/* ======================================================
   Shooting & Creación (05) · editorial alignment + breathing room
   ====================================================== */
.sc-service-text-row {
	padding: clamp(4.5rem, 8vw, 8rem) 8vw clamp(3rem, 5vw, 5rem);
}

.sc-service-number {
	font-style: italic;
	letter-spacing: 0.3em;
	margin-bottom: 1.8rem;
}

.sc-service-title {
	font-size: clamp(2rem, 4.6vw, 3.6rem);
	line-height: 1.12;
	margin: 0 0 clamp(1.8rem, 2.8vw, 2.6rem) 0;
}

.sc-service-period {
	color: #a8743e;
	font-style: italic;
	font-weight: 500;
}

.sc-service-description {
	font-style: italic;
	font-size: clamp(1.05rem, 1.3vw, 1.25rem);
	line-height: 1.7;
	max-width: 540px;
}

.sc-slider-wrapper {
	padding: clamp(1rem, 2vw, 2rem) 0 clamp(5rem, 8vw, 8rem);
}


/* ======================================================
   Contacto · footer editorial
   ====================================================== */
.contact-footer {
	--ink: #2a1a0e;
	--ink-soft: #562914;
	--ink-dim: rgba(86, 41, 20, 0.55);
	--rule: rgba(86, 41, 20, 0.16);
	--gold: #a8743e;
	--accent: #fcc144;

	background-color: #f7f1e3;
	padding: clamp(5rem, 9vw, 9rem) 6vw clamp(2.5rem, 4vw, 3.5rem);
	width: 100%;
	box-sizing: border-box;
}

.contact-footer__inner {
	max-width: 1080px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: clamp(1.6rem, 2.6vw, 2.4rem);
}

/* Kicker */
.contact-footer__kicker {
	display: inline-flex;
	align-items: center;
	gap: 1rem;
	font-family: 'Cormorant Garamond', serif;
	font-style: italic;
	font-size: clamp(0.78rem, 0.95vw, 0.95rem);
	letter-spacing: 0.4em;
	text-transform: uppercase;
	color: var(--ink-soft);
}

.contact-footer__kicker-rule {
	display: inline-block;
	width: 0;
	height: 1px;
	background: var(--gold);
	transition: width 1.1s cubic-bezier(.16, 1, .3, 1) 0.1s;
}

.contact-footer.is-visible .contact-footer__kicker-rule {
	width: clamp(36px, 4.5vw, 56px);
}

/* Title */
.contact-footer__title {
	margin: 0;
	font-family: 'Cormorant Garamond', serif;
	font-weight: 600;
	font-size: clamp(2.6rem, 7vw, 6rem);
	line-height: 0.98;
	letter-spacing: -0.01em;
	color: var(--ink);
	opacity: 0;
	transform: translateY(28px);
	transition:
		opacity 1.1s cubic-bezier(.16, 1, .3, 1) 0.15s,
		transform 1.1s cubic-bezier(.16, 1, .3, 1) 0.15s;
}

.contact-footer.is-visible .contact-footer__title {
	opacity: 1;
	transform: translateY(0);
}

.contact-footer__period {
	color: var(--gold);
	font-style: italic;
}

/* Methods */
.contact-footer__methods {
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
	justify-content: center;
	gap: clamp(1.4rem, 3vw, 3.2rem);
	margin-top: clamp(0.5rem, 1.5vw, 1.5rem);
	opacity: 0;
	transform: translateY(24px);
	transition:
		opacity 1.1s cubic-bezier(.16, 1, .3, 1) 0.32s,
		transform 1.1s cubic-bezier(.16, 1, .3, 1) 0.32s;
}

.contact-footer.is-visible .contact-footer__methods {
	opacity: 1;
	transform: translateY(0);
}

.contact-method {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.5rem;
	text-decoration: none;
	padding: 0.4rem 0.2rem;
	position: relative;
}

.contact-method__label {
	font-family: 'Cormorant Garamond', serif;
	font-style: italic;
	font-size: clamp(0.7rem, 0.82vw, 0.82rem);
	letter-spacing: 0.3em;
	text-transform: uppercase;
	color: var(--gold);
	transition: color 0.4s ease;
}

.contact-method__value {
	font-family: 'Cormorant Garamond', serif;
	font-size: clamp(1.15rem, 1.7vw, 1.7rem);
	font-weight: 500;
	letter-spacing: 0.01em;
	color: var(--ink);
	position: relative;
	transition: color 0.4s ease;
}

/* Underline draw on hover */
.contact-method__value::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -4px;
	width: 100%;
	height: 1px;
	background: var(--gold);
	transform: scaleX(0);
	transform-origin: center;
	transition: transform 0.5s cubic-bezier(.16, 1, .3, 1);
}

.contact-method:hover .contact-method__value {
	color: var(--ink-soft);
}

.contact-method:hover .contact-method__value::after {
	transform: scaleX(1);
}

.contact-method:hover .contact-method__label {
	color: var(--accent);
}

/* Vertical divider between methods */
.contact-method__div {
	width: 1px;
	align-self: center;
	height: clamp(28px, 3vw, 42px);
	background: var(--rule);
}

/* Base — wordmark + copyright */
.contact-footer__base {
	width: 100%;
	margin-top: clamp(3rem, 6vw, 6rem);
	padding-top: clamp(1.4rem, 2.2vw, 2rem);
	border-top: 1px solid var(--rule);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	opacity: 0;
	transition: opacity 1.1s ease 0.5s;
}

.contact-footer.is-visible .contact-footer__base {
	opacity: 1;
}

.contact-footer__wordmark {
	font-family: 'Cormorant Garamond', serif;
	font-weight: 600;
	font-size: clamp(1.1rem, 1.6vw, 1.6rem);
	letter-spacing: 0.42em;
	text-indent: 0.42em;
	color: var(--ink);
}

.contact-footer__copy {
	font-family: 'Cormorant Garamond', serif;
	font-style: italic;
	font-size: clamp(0.72rem, 0.85vw, 0.85rem);
	letter-spacing: 0.06em;
	color: var(--ink-dim);
}

/* Responsive */
@media (max-width: 600px) {
	.contact-footer__methods {
		flex-direction: column;
		gap: 1.5rem;
	}

	.contact-method__div {
		width: clamp(28px, 12vw, 42px);
		height: 1px;
	}

	.contact-footer__base {
		flex-direction: column;
		gap: 0.8rem;
		text-align: center;
	}

	.contact-footer__kicker .contact-footer__kicker-rule {
		display: none;
	}
}


/* ======================================================
   Botón flotante de WhatsApp
   ====================================================== */
.wa-float {
	position: fixed;
	right: clamp(16px, 2.2vw, 28px);
	bottom: clamp(16px, 2.2vw, 28px);
	z-index: 9999;
	width: clamp(54px, 5vw, 60px);
	height: clamp(54px, 5vw, 60px);
	border-radius: 999px;
	background: #562914;
	display: grid;
	place-items: center;
	box-shadow: 0 6px 18px -4px rgba(26, 14, 7, 0.35);
	transition: transform 0.35s cubic-bezier(.16, 1, .3, 1), background 0.35s ease;
	-webkit-tap-highlight-color: transparent;
}

.wa-float__icon {
	width: 54%;
	height: 54%;
	fill: #f7f1e3;
}

.wa-float:hover {
	transform: scale(1.06);
	background: #6b3318;
}

.wa-float__pulse {
	display: none;
}
