/* ==========================================================================
   Aranduroga Landing — estilos
   Paleta: cuero, campo, calidez. Tipografía: Fraunces (títulos) + Work Sans.
   Todo queda dentro de .aranduroga-landing para no chocar con el tema.
   ========================================================================== */

/* Muchos temas por bloques (FSE, ej. Twenty Twenty-Four) agregan su propio
   header con el título del sitio, un título de página automático y su
   propio footer alrededor del contenido. Nuestra landing ya trae su propio
   header y footer con la marca correcta, así que ocultamos los del tema.
   Esta hoja de estilos solo se carga en la página que usa el shortcode
   [aranduroga_landing], así que no afecta al resto del sitio. */
header.wp-block-template-part,
footer.wp-block-template-part,
.wp-block-post-title,
main > .wp-block-group:has( > .wp-block-post-title ) {
	display: none !important;
}

.aranduroga-landing {
	--ar-cream: #faf6ee;
	--ar-cream-dark: #efe4cd;
	--ar-brown-900: #241812;
	--ar-brown-800: #362419;
	--ar-brown-700: #4e3423;
	--ar-tan: #a86a3c;
	--ar-tan-light: #cf9a63;
	--ar-ochre: #c1852f;
	--ar-green: #4b5c45;
	--ar-text: #2a1e15;
	--ar-white: #ffffff;
	--ar-radius: 14px;
	--ar-shadow: 0 12px 30px rgba(36, 24, 17, 0.14);

	font-family: 'Work Sans', -apple-system, BlinkMacSystemFont, sans-serif;
	color: var(--ar-text);
	background: var(--ar-cream);
	line-height: 1.6;
	font-size: 16px;
	-webkit-font-smoothing: antialiased;

	/* Rompe el ancho angosto que muchos temas (por bloques/FSE) le imponen
	   al contenido de la página, para que la landing ocupe todo el viewport
	   sin importar el tema o la plantilla que use el sitio. */
	width: 100vw;
	max-width: 100vw;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	overflow-x: hidden;
}

.aranduroga-landing * { box-sizing: border-box; }
.aranduroga-landing img { max-width: 100%; display: block; }
.aranduroga-landing a { text-decoration: none; color: inherit; }
.aranduroga-landing ul { list-style: none; margin: 0; padding: 0; }
.aranduroga-landing h1,
.aranduroga-landing h2,
.aranduroga-landing h3 {
	font-family: 'Fraunces', Georgia, serif;
	color: var(--ar-brown-900);
	line-height: 1.15;
	margin: 0 0 .5em;
	font-weight: 600;
}

.ar-container {
	max-width: 1180px;
	margin: 0 auto;
	padding: 0 24px;
}

.ar-eyebrow {
	text-transform: uppercase;
	letter-spacing: .14em;
	font-size: .78rem;
	font-weight: 600;
	color: var(--ar-tan);
	margin: 0 0 .6em;
}
.ar-eyebrow--center { text-align: center; }

.ar-section-title { font-size: clamp(1.7rem, 3vw, 2.4rem); text-align: center; }
.ar-section-desc {
	text-align: center;
	max-width: 620px;
	margin: 0 auto 2.4rem;
	color: var(--ar-brown-700);
}

/* Buttons */
.ar-btn {
	display: inline-flex;
	align-items: center;
	gap: .5em;
	padding: .85em 1.6em;
	border-radius: 999px;
	font-weight: 600;
	font-size: .95rem;
	border: 2px solid transparent;
	transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
	cursor: pointer;
}
.ar-btn:hover { transform: translateY(-2px); }
.ar-btn--primary {
	background: var(--ar-ochre);
	color: var(--ar-white);
	box-shadow: 0 10px 22px rgba(193, 133, 47, .35);
}
.ar-btn--primary:hover { background: var(--ar-tan); }
.ar-btn--ghost {
	background: transparent;
	color: var(--ar-white);
	border-color: rgba(255,255,255,.65);
}
.ar-btn--ghost:hover { background: rgba(255,255,255,.12); }
.ar-btn--whatsapp {
	background: #25D366;
	color: var(--ar-white);
	padding: .6em 1.2em;
	font-size: .88rem;
}
.ar-btn--whatsapp:hover { background: #1ebc59; }

/* ============ HEADER ============ */
.ar-header {
	position: sticky;
	top: 0;
	z-index: 40;
	background: rgba(250, 246, 238, .92);
	backdrop-filter: blur(6px);
	border-bottom: 1px solid var(--ar-cream-dark);
}
.ar-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-top: 14px;
	padding-bottom: 14px;
	gap: 20px;
}
.ar-brand { display: flex; flex-direction: column; line-height: 1.1; }
.ar-brand__name {
	font-family: 'Fraunces', Georgia, serif;
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--ar-brown-900);
}
.ar-brand__tag {
	font-size: .68rem;
	letter-spacing: .18em;
	text-transform: uppercase;
	color: var(--ar-tan);
	font-weight: 600;
}
.ar-nav { display: flex; gap: 28px; }
.ar-nav a {
	font-weight: 500;
	font-size: .95rem;
	color: var(--ar-brown-800);
	position: relative;
	padding: 4px 0;
}
.ar-nav a::after {
	content: '';
	position: absolute;
	left: 0; bottom: -2px;
	height: 2px; width: 0;
	background: var(--ar-ochre);
	transition: width .2s ease;
}
.ar-nav a:hover::after { width: 100%; }

.ar-header__actions { display: flex; align-items: center; gap: 14px; }
.ar-nav-toggle {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 34px; height: 34px;
	background: none; border: none; cursor: pointer; padding: 0;
}
.ar-nav-toggle span { width: 100%; height: 2px; background: var(--ar-brown-900); border-radius: 2px; }

/* ============ HERO ============ */
.ar-hero {
	background-size: cover;
	background-position: center;
	min-height: 92vh;
	display: flex;
	align-items: center;
	color: var(--ar-white);
}
.ar-hero__inner { max-width: 760px; padding-top: 60px; padding-bottom: 60px; }
.ar-hero .ar-eyebrow { color: var(--ar-tan-light); }
.ar-hero h1 {
	color: var(--ar-white);
	font-size: clamp(2.1rem, 5vw, 3.4rem);
	margin-bottom: .5em;
}
.ar-hero h1 span { color: var(--ar-tan-light); }
.ar-hero__desc {
	font-size: 1.08rem;
	color: rgba(255,255,255,.88);
	max-width: 560px;
	margin-bottom: 2em;
}
.ar-hero__cta { display: flex; gap: 16px; flex-wrap: wrap; }

/* ============ TRUST BAR ============ */
.ar-trust {
	background: var(--ar-brown-900);
	color: var(--ar-cream);
	padding: 22px 0;
}
.ar-trust__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}
.ar-trust__item {
	display: flex;
	align-items: center;
	gap: 12px;
	justify-content: center;
	font-weight: 500;
	font-size: .92rem;
	color: var(--ar-cream-dark);
}
.ar-trust__item svg { color: var(--ar-tan-light); flex-shrink: 0; }

/* ============ NOSOTROS ============ */
.ar-about { padding: 90px 0; }
.ar-about__grid {
	display: grid;
	grid-template-columns: .9fr 1.1fr;
	gap: 60px;
	align-items: center;
}
.ar-about__img img {
	border-radius: var(--ar-radius);
	box-shadow: var(--ar-shadow);
	aspect-ratio: 4/5;
	object-fit: cover;
	width: 100%;
}
.ar-about__text h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
.ar-about__text p { color: var(--ar-brown-700); margin-bottom: 1.1em; }
.ar-about__list { margin-top: 1.5em; }
.ar-about__list li {
	padding-left: 30px;
	position: relative;
	margin-bottom: .7em;
	font-weight: 500;
	color: var(--ar-brown-800);
}
.ar-about__list li::before {
	content: '';
	position: absolute;
	left: 0; top: 7px;
	width: 16px; height: 16px;
	background: var(--ar-ochre);
	border-radius: 50%;
	opacity: .18;
}
.ar-about__list li::after {
	content: '✓';
	position: absolute;
	left: 3px; top: 1px;
	color: var(--ar-ochre);
	font-size: .8rem;
	font-weight: 700;
}

/* ============ VIDRIERA ============ */
.ar-gallery { padding: 90px 0; background: var(--ar-cream-dark); }
.ar-filters {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 40px;
}
.ar-filter {
	background: var(--ar-white);
	border: 1px solid rgba(74,50,30,.18);
	color: var(--ar-brown-800);
	padding: .55em 1.3em;
	border-radius: 999px;
	font-weight: 600;
	font-size: .86rem;
	cursor: pointer;
	transition: all .15s ease;
}
.ar-filter:hover { border-color: var(--ar-ochre); color: var(--ar-ochre); }
.ar-filter.is-active { background: var(--ar-brown-900); border-color: var(--ar-brown-900); color: var(--ar-white); }

.ar-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 18px;
}
.ar-grid__item {
	position: relative;
	border: none;
	padding: 0;
	background: none;
	cursor: pointer;
	border-radius: var(--ar-radius);
	overflow: hidden;
	aspect-ratio: 1 / 1;
	box-shadow: var(--ar-shadow);
}
.ar-grid__item img {
	width: 100%; height: 100%;
	object-fit: cover;
	transition: transform .4s ease;
}
.ar-grid__item:hover img { transform: scale(1.08); }
.ar-grid__item.is-hidden { display: none; }
.ar-grid__label {
	position: absolute;
	inset: auto 0 0 0;
	padding: 14px;
	background: linear-gradient(0deg, rgba(20,13,9,.82), transparent);
	color: var(--ar-white);
	font-weight: 600;
	font-size: .88rem;
	text-align: left;
	opacity: 0;
	transform: translateY(6px);
	transition: all .25s ease;
}
.ar-grid__item:hover .ar-grid__label { opacity: 1; transform: translateY(0); }

/* ============ RESEÑAS ============ */
.ar-reviews {
	background: var(--ar-brown-800);
	color: var(--ar-cream);
	padding: 80px 0;
	text-align: center;
}
.ar-reviews__inner { max-width: 620px; margin: 0 auto; }
.ar-reviews__stars { color: var(--ar-ochre); display: flex; justify-content: center; gap: 4px; margin-bottom: 18px; }
.ar-reviews h2 { color: var(--ar-white); }
.ar-reviews p { color: rgba(250,246,238,.82); margin-bottom: 2em; }

/* ============ UBICACIÓN ============ */
.ar-location { padding: 90px 0; }
.ar-location__grid {
	display: grid;
	grid-template-columns: 1.2fr .9fr;
	gap: 30px;
	margin-top: 40px;
}
.ar-location__map {
	border-radius: var(--ar-radius);
	overflow: hidden;
	box-shadow: var(--ar-shadow);
	min-height: 420px;
}
.ar-location__info { display: flex; flex-direction: column; gap: 18px; }
.ar-info-card {
	display: flex;
	gap: 16px;
	background: var(--ar-white);
	border: 1px solid var(--ar-cream-dark);
	border-radius: var(--ar-radius);
	padding: 20px;
}
.ar-info-card svg { color: var(--ar-ochre); flex-shrink: 0; margin-top: 2px; }
.ar-info-card h3 { font-size: 1.05rem; margin-bottom: .3em; }
.ar-info-card p { color: var(--ar-brown-700); margin: 0 0 .4em; }
.ar-info-card a { color: var(--ar-ochre); font-weight: 600; font-size: .9rem; }
.ar-hours { width: 100%; border-collapse: collapse; font-size: .92rem; }
.ar-hours td { padding: 2px 0; color: var(--ar-brown-700); }
.ar-hours td:first-child { font-weight: 600; color: var(--ar-brown-900); padding-right: 12px; white-space: nowrap; }

/* ============ FOOTER ============ */
.ar-footer { background: var(--ar-brown-900); color: var(--ar-cream-dark); padding: 50px 0 20px; }
.ar-footer__grid {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	flex-wrap: wrap;
	gap: 24px;
	padding-bottom: 30px;
	border-bottom: 1px solid rgba(250,246,238,.12);
}
.ar-brand__name--footer { font-size: 1.4rem; color: var(--ar-white); display: block; margin-bottom: .2em; }
.ar-footer__tag { font-size: .88rem; color: var(--ar-tan-light); margin: 0 0 .3em; }
.ar-footer__addr { font-size: .88rem; color: rgba(250,246,238,.7); margin: 0; }
.ar-footer__social { display: flex; gap: 14px; }
.ar-footer__social a {
	width: 40px; height: 40px;
	display: flex; align-items: center; justify-content: center;
	background: rgba(250,246,238,.08);
	border-radius: 50%;
	transition: background .15s ease;
}
.ar-footer__social a:hover { background: var(--ar-ochre); }
.ar-footer__bottom { padding-top: 20px; text-align: center; font-size: .8rem; color: rgba(250,246,238,.55); }

/* ============ WHATSAPP FLOTANTE ============ */
.ar-float-whatsapp {
	position: fixed;
	right: 22px; bottom: 22px;
	width: 58px; height: 58px;
	background: #25D366;
	color: var(--ar-white);
	border-radius: 50%;
	display: flex; align-items: center; justify-content: center;
	box-shadow: 0 10px 26px rgba(0,0,0,.28);
	z-index: 50;
	transition: transform .15s ease;
}
.ar-float-whatsapp:hover { transform: scale(1.08); }
.ar-float-whatsapp svg { width: 28px; height: 28px; }

/* ============ LIGHTBOX ============ */
.ar-lightbox {
	position: fixed;
	inset: 0;
	background: rgba(20,13,9,.94);
	display: none;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	z-index: 100;
	padding: 30px;
}
.ar-lightbox.is-open { display: flex; }
.ar-lightbox img { max-width: min(90vw, 900px); max-height: 78vh; border-radius: 10px; box-shadow: 0 20px 60px rgba(0,0,0,.5); }
.ar-lightbox p { color: var(--ar-cream); margin-top: 16px; font-weight: 500; }
.ar-lightbox__close {
	position: absolute;
	top: 24px; right: 30px;
	background: none; border: none;
	color: var(--ar-white);
	font-size: 2.2rem;
	line-height: 1;
	cursor: pointer;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
	.ar-nav {
		position: absolute;
		top: 100%; left: 0; right: 0;
		background: var(--ar-cream);
		flex-direction: column;
		padding: 10px 24px 20px;
		gap: 6px;
		display: none;
		border-bottom: 1px solid var(--ar-cream-dark);
	}
	.ar-nav.is-open { display: flex; }
	.ar-nav a { padding: 10px 0; }
	.ar-nav-toggle { display: flex; }
	.ar-header__actions .ar-btn--whatsapp span { display: none; }

	.ar-trust__grid { grid-template-columns: repeat(2, 1fr); }
	.ar-about__grid { grid-template-columns: 1fr; gap: 34px; }
	.ar-about__img img { aspect-ratio: 16/10; }
	.ar-grid { grid-template-columns: repeat(2, 1fr); }
	.ar-location__grid { grid-template-columns: 1fr; }
	.ar-location__map { min-height: 300px; }
}

@media (max-width: 520px) {
	.ar-trust__grid { grid-template-columns: 1fr 1fr; }
	.ar-hero { min-height: 100vh; }
	.ar-hero__cta { flex-direction: column; align-items: flex-start; }
}
