/* =========================================================
   SERENAR — main.css  (v1.1)
   Variáveis :root vêm do Customizer (functions.php)
   ========================================================= */

:root {
	--brand-orange: #f58220;
	--brand-orange-hover: #e06b10;
	--brand-beige-light: #fdfbf7;
	--brand-beige: #f2ecd9;
	--brand-beige-dark: #d4b886;
	--brand-text: #4a4a4a;
	--brand-dark: #2d241e;
	--brand-footer: #1a110c;

	--font-sans: 'Montserrat', system-ui, -apple-system, sans-serif;
	--font-serif: 'Playfair Display', Georgia, serif;

	--topbar-h: 36px;
	--nav-h: 84px;
	--container: 1240px;
	--radius: 8px;
	--radius-lg: 16px;
	--ease: cubic-bezier(.22,.61,.36,1);
	--ease-soft: cubic-bezier(.45,0,.15,1);
	--shadow-sm: 0 4px 16px -6px rgba(45,36,30,.18);
	--shadow-md: 0 14px 38px -16px rgba(45,36,30,.32);
	--shadow-lg: 0 28px 60px -24px rgba(45,36,30,.42);

	--fs-eyebrow: clamp(1.05rem, .8rem + .9vw, 1.3rem);
	--fs-h2: clamp(1.7rem, 1.2rem + 2.2vw, 2.7rem);
	--fs-lead: clamp(1rem, .92rem + .35vw, 1.12rem);

	--section-y: clamp(3.5rem, 2rem + 6vw, 7rem);
	--gutter: clamp(1.1rem, .6rem + 2vw, 1.5rem);
}

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + 10px); }

body {
	margin: 0;
	font-family: var(--font-sans);
	font-weight: 400;
	color: var(--brand-text);
	background: var(--brand-beige-light);
	line-height: 1.7;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
	overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

[hidden] { display: none !important; }

h1, h2, h3, h4 { margin: 0; color: var(--brand-dark); line-height: 1.18; letter-spacing: -.01em; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }
.center { text-align: center; }

.screen-reader-text {
	position: absolute !important;
	clip: rect(1px,1px,1px,1px); clip-path: inset(50%);
	width: 1px; height: 1px; overflow: hidden; padding: 0; border: 0; margin: -1px;
	white-space: nowrap;
}
.skip-link {
	position: absolute; left: -999px; top: 0; z-index: 100;
	background: var(--brand-orange); color: #fff; padding: .7rem 1.2rem; border-radius: 0 0 var(--radius) 0;
}
.skip-link:focus { left: 0; top: 0; }

:focus-visible { outline: 3px solid var(--brand-orange); outline-offset: 3px; border-radius: 2px; }

[data-reveal] {
	opacity: 0; transform: translateY(28px);
	transition: opacity .8s var(--ease-soft), transform .8s var(--ease-soft);
	will-change: opacity, transform;
}
[data-reveal].is-revealed { opacity: 1; transform: none; }
[data-reveal-delay="1"] { transition-delay: .08s; }
[data-reveal-delay="2"] { transition-delay: .16s; }
[data-reveal-delay="3"] { transition-delay: .24s; }

.btn {
	display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
	font-family: var(--font-sans); font-weight: 700;
	font-size: clamp(.78rem, .72rem + .2vw, .85rem);
	letter-spacing: .08em; text-transform: uppercase;
	padding: 1rem 2.3rem; min-height: 48px;
	border-radius: var(--radius); border: 2px solid transparent;
	cursor: pointer; position: relative; overflow: hidden;
	transition: transform .35s var(--ease), background-color .3s var(--ease), box-shadow .35s var(--ease), color .3s var(--ease);
}
.btn-lg { padding: 1.15rem 2.9rem; }
.btn-primary { background: var(--brand-orange); color: #fff; box-shadow: 0 12px 28px -10px rgba(245,130,32,.55); }
.btn-primary:hover, .btn-primary:focus-visible { background: var(--brand-orange-hover); transform: translateY(-3px); box-shadow: 0 18px 34px -12px rgba(245,130,32,.6); }
.btn-primary:active { transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--brand-dark); border-color: var(--brand-beige-dark); }
.btn-outline:hover, .btn-outline:focus-visible { background: var(--brand-orange); border-color: var(--brand-orange); color: #fff; transform: translateY(-3px); }

.link-arrow {
	display: inline-flex; align-items: center; gap: .5rem;
	color: var(--brand-orange); font-weight: 700; font-size: .95rem;
	border-bottom: 2px solid var(--brand-orange);
	padding-bottom: .25rem; width: max-content; min-height: 32px;
	transition: color .3s var(--ease), gap .3s var(--ease);
}
.link-arrow:hover, .link-arrow:focus-visible { color: var(--brand-orange-hover); gap: .85rem; }
.link-arrow-icon { width: 1.05rem; height: 1.05rem; transition: transform .3s var(--ease); }
.link-arrow:hover .link-arrow-icon { transform: translateX(2px); }

.topbar { background: #e6dbcc; color: var(--brand-dark); font-size: .73rem; position: relative; z-index: 50; }
.topbar-inner { max-width: 100%; margin: 0; padding: .55rem clamp(1rem, 4vw, 2rem); display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.topbar-social { display: flex; gap: 1rem; }
.topbar-social a { color: var(--brand-dark); transition: color .25s, transform .25s; display: flex; }
.topbar-social a:hover { color: var(--brand-orange); transform: translateY(-2px); }
.topbar-contact { display: flex; gap: clamp(1rem, 3vw, 1.8rem); align-items: center; flex-wrap: wrap; justify-content: flex-end; }
.topbar-item { display: inline-flex; align-items: center; gap: .4rem; transition: color .25s; white-space: nowrap; }
.topbar-item:hover { color: var(--brand-orange); }
.topbar-icon { width: .85rem; height: .85rem; flex-shrink: 0; }

.navbar { position: fixed; top: var(--topbar-h); left: 0; width: 100%; z-index: 40; padding: 1.1rem 0; color: #fff; background: transparent; transition: background-color .4s var(--ease), padding .4s var(--ease), top .4s var(--ease), box-shadow .4s var(--ease); }
.navbar.nav-scrolled { top: 0; background: rgba(26,17,12,.96); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); padding: .5rem 0; box-shadow: 0 8px 34px -12px rgba(0,0,0,.55); }
.navbar-inner { max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }
.navbar-brand { flex-shrink: 0; }
.brand-link, .navbar-brand .custom-logo-link { display: inline-flex; align-items: center; gap: .6rem; font-family: var(--font-serif); font-weight: 700; font-size: clamp(1.35rem, 1rem + 1vw, 1.65rem); letter-spacing: .16em; color: #fff; }
.brand-icon { width: clamp(1.7rem, 1.4rem + .8vw, 2rem); height: clamp(1.7rem, 1.4rem + .8vw, 2rem); flex-shrink: 0; }
.navbar-brand img { max-height: 52px; width: auto; }

.nav-menu { display: flex; align-items: center; gap: clamp(.9rem, .3rem + 1vw, 1.6rem); list-style: none; margin: 0; padding: 0; font-size: clamp(.72rem, .65rem + .25vw, .78rem); font-weight: 600; letter-spacing: .05em; text-transform: uppercase; }
.nav-menu a { position: relative; padding: .35rem 0; transition: color .25s; }
.nav-menu a::after { content: ''; position: absolute; left: 0; bottom: -2px; width: 0; height: 2px; background: var(--brand-orange); transition: width .3s var(--ease); }
.nav-menu a:hover::after, .nav-menu .current-menu-item > a::after { width: 100%; }
.nav-menu a:hover, .nav-menu .current-menu-item > a { color: var(--brand-orange); }
.nav-menu .menu-cta a, .nav-menu li:last-child.menu-cta a { display: inline-flex; align-items: center; gap: .5rem; background: var(--brand-beige-dark); color: var(--brand-dark); padding: .6rem 1.3rem; border-radius: 999px; transition: background-color .3s var(--ease), color .3s var(--ease), transform .3s var(--ease); }
.nav-menu .menu-cta a::after { display: none; }
.nav-menu .menu-cta a:hover { background: var(--brand-orange); color: #fff; transform: translateY(-2px); }
.menu-cta-icon { width: 1rem; height: 1rem; }

.mobile-toggle { display: none; background: none; border: none; color: #fff; cursor: pointer; padding: .4rem; width: 48px; height: 48px; align-items: center; justify-content: center; border-radius: var(--radius); transition: background-color .25s; }
.mobile-toggle:hover { background: rgba(255,255,255,.1); }

.mobile-menu { position: absolute; top: 100%; left: 0; width: 100%; background: rgba(26,17,12,.98); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-top: 1px solid rgba(255,255,255,.1); max-height: calc(100vh - var(--nav-h)); overflow-y: auto; }
.mobile-nav-menu { list-style: none; margin: 0; padding: 1.2rem; display: flex; flex-direction: column; gap: .15rem; text-align: center; text-transform: uppercase; font-size: .9rem; font-weight: 600; letter-spacing: .12em; }
.mobile-nav-menu a { display: block; padding: .9rem; color: #d8cdbb; border-radius: var(--radius); transition: color .25s, background-color .25s; }
.mobile-nav-menu a:hover { color: var(--brand-orange); background: rgba(255,255,255,.05); }
.mobile-nav-menu .menu-cta a { margin-top: .8rem; color: #fff; background: var(--brand-orange); border-radius: var(--radius); display: inline-flex; align-items: center; justify-content: center; gap: .5rem; }
.mobile-nav-menu .menu-cta a:hover { background: var(--brand-orange-hover); }

.section { padding: var(--section-y) 0; }
.section-pillars { background: #fff; }
.section-stay { background: var(--brand-beige); }
.section-activities { background: var(--brand-beige-light); }
.section-gallery { background: #fff; }

.section-head { margin-bottom: clamp(2.5rem, 1.5rem + 3vw, 3.8rem); }
.section-head.center { display: flex; flex-direction: column; align-items: center; }

.section-eyebrow { font-family: var(--font-serif); font-style: italic; font-size: var(--fs-eyebrow); color: var(--brand-beige-dark); margin: 0 0 .5rem; letter-spacing: .01em; }
.section-title { font-family: var(--font-sans); font-weight: 700; font-size: var(--fs-h2); color: var(--brand-dark); }
.section-lead { max-width: 640px; margin: 1.2rem auto 0; font-size: var(--fs-lead); color: var(--brand-text); }

.hero { position: relative; min-height: 100vh; min-height: 100svh; display: flex; align-items: center; justify-content: center; text-align: center; padding: calc(var(--nav-h) + 3rem) var(--gutter) 4rem; background-image: var(--hero-bg); background-size: cover; background-position: center; background-attachment: fixed; color: #fff; overflow: hidden; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(rgba(20,14,9,.42), rgba(20,14,9,.72)); }
.hero-content { position: relative; max-width: 940px; animation: heroIn 1.1s var(--ease-soft) both; }
@keyframes heroIn { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }
.hero-eyebrow { font-family: var(--font-serif); font-style: italic; font-size: clamp(1.05rem, .85rem + 1vw, 1.5rem); letter-spacing: .08em; color: var(--brand-beige-dark); margin: 0 0 1rem; }
.hero-title { font-family: var(--font-sans); font-weight: 700; font-size: clamp(2.1rem, 1.2rem + 4.5vw, 4.6rem); line-height: 1.08; color: #fff; margin: 0 0 1.4rem; text-shadow: 0 2px 24px rgba(0,0,0,.32); }
.hero-text { max-width: 680px; margin: 0 auto 2.4rem; font-weight: 300; font-size: clamp(.95rem, .85rem + .5vw, 1.18rem); color: #ede6dd; line-height: 1.75; }
.hero-scroll { position: absolute; bottom: 1.8rem; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,.7); animation: bounce 2.2s infinite; padding: .5rem; }
@keyframes bounce { 0%,100% { transform: translate(-50%,0); } 50% { transform: translate(-50%,10px); } }

.pillars-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1.5rem, .5rem + 3vw, 2.5rem); }
.pillar-card { text-align: center; display: flex; flex-direction: column; align-items: center; padding: 1rem .5rem; }
.pillar-icon { width: clamp(5rem, 4rem + 3vw, 6rem); height: clamp(5rem, 4rem + 3vw, 6rem); border-radius: 50%; background: var(--brand-beige); color: var(--brand-dark); display: flex; align-items: center; justify-content: center; margin-bottom: 1.4rem; transition: background-color .5s var(--ease), color .5s var(--ease), transform .5s var(--ease), box-shadow .5s var(--ease); }
.pillar-card:hover .pillar-icon { background: var(--brand-orange); color: #fff; transform: translateY(-8px) scale(1.05); box-shadow: 0 16px 30px -12px rgba(245,130,32,.5); }
.pillar-icon svg, .serenar-icon { width: 2.4rem; height: 2.4rem; }
.pillar-title { font-size: clamp(1.1rem, 1rem + .4vw, 1.25rem); margin-bottom: .7rem; }
.pillar-text { font-size: .92rem; color: #7a7268; max-width: 260px; }

.split { display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; }
.split-reverse .split-media { order: 2; }
.split-light { background: var(--brand-beige-light); }
.split-media { min-height: clamp(300px, 40vw, 520px); background-size: cover; background-position: center; }
.split-body { padding: clamp(2.2rem, 1rem + 5vw, 5.5rem) clamp(1.5rem, .8rem + 4vw, 5rem); display: flex; flex-direction: column; justify-content: center; }
.split-text { font-size: var(--fs-lead); line-height: 1.85; margin: 1.4rem 0 2rem; color: var(--brand-text); }

.stay-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, .5rem + 1.5vw, 1.5rem); margin-bottom: clamp(2rem, 1rem + 3vw, 3rem); }
.stay-item { aspect-ratio: 4/3; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); }
.stay-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.stay-item:hover img { transform: scale(1.08); }

.activities-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.2rem, .5rem + 2vw, 2rem); }
.activity-card { background: #fff; padding: clamp(2rem, 1.5rem + 1.5vw, 2.6rem) clamp(1.5rem, 1rem + 1.5vw, 2rem); border-radius: var(--radius-lg); text-align: center; box-shadow: var(--shadow-sm); border: 1px solid rgba(212,184,134,.3); transition: transform .45s var(--ease), box-shadow .45s var(--ease), border-color .45s var(--ease); }
.activity-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); border-color: var(--brand-beige-dark); }
.activity-icon { width: 4.5rem; height: 4.5rem; margin: 0 auto 1.4rem; border-radius: 50%; background: var(--brand-beige); color: var(--brand-orange); display: flex; align-items: center; justify-content: center; transition: transform .45s var(--ease); }
.activity-card:hover .activity-icon { transform: scale(1.1) rotate(-4deg); }
.activity-icon svg { width: 2rem; height: 2rem; }
.activity-title { font-size: 1.2rem; margin-bottom: .6rem; }
.activity-text { font-size: .92rem; color: #7a7268; }

.section-program { background: linear-gradient(rgba(26,17,12,.92), rgba(26,17,12,.94)), url('https://images.unsplash.com/photo-1505235687559-28b5f54645b7?auto=format&fit=crop&w=1920&q=80'); background-size: cover; background-position: center; background-attachment: fixed; }
.program-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.2rem, .5rem + 2vw, 2rem); align-items: stretch; }
.program-card { position: relative; background: rgba(255,255,255,.045); border: 1px solid rgba(212,184,134,.3); border-radius: var(--radius-lg); padding: clamp(2.2rem, 1.5rem + 1.5vw, 2.8rem) clamp(1.5rem, 1rem + 1.5vw, 2rem); text-align: center; color: #ede6dd; display: flex; flex-direction: column; transition: transform .45s var(--ease), border-color .45s var(--ease), background-color .45s var(--ease); }
.program-card:hover { transform: translateY(-10px); border-color: var(--brand-orange); background: rgba(255,255,255,.07); }
.program-card.is-featured { background: rgba(245,130,32,.1); border-color: var(--brand-orange); }
.program-badge { position: absolute; top: -.85rem; left: 50%; transform: translateX(-50%); background: var(--brand-orange); color: #fff; font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: .4rem 1.1rem; border-radius: 999px; white-space: nowrap; box-shadow: 0 8px 20px -8px rgba(245,130,32,.7); }
.program-name { font-family: var(--font-serif); font-size: clamp(1.35rem, 1.2rem + .6vw, 1.6rem); color: #fff; margin-bottom: .5rem; }
.program-price { color: var(--brand-beige-dark); font-weight: 600; letter-spacing: .04em; margin: 0 0 1.2rem; }
.program-text { font-size: .92rem; color: #cdbfae; margin-bottom: 2rem; flex-grow: 1; }

.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(.6rem, .3rem + 1vw, 1rem); }
.gallery-item { position: relative; aspect-ratio: 1; overflow: hidden; border-radius: var(--radius); cursor: pointer; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.gallery-item:hover img, .gallery-item:focus-visible img { transform: scale(1.1); }
.gallery-zoom { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; background: rgba(45,36,30,.45); color: #fff; opacity: 0; transition: opacity .35s var(--ease); }
.gallery-item:hover .gallery-zoom, .gallery-item:focus-visible .gallery-zoom { opacity: 1; }

.lightbox { position: fixed; inset: 0; z-index: 200; background: rgba(20,14,9,.95); display: flex; align-items: center; justify-content: center; padding: clamp(1rem, 4vw, 2rem); animation: fadeIn .3s var(--ease); }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.lightbox-img { max-width: 94vw; max-height: 88vh; border-radius: var(--radius); box-shadow: 0 20px 60px rgba(0,0,0,.6); }
.lightbox-close { position: absolute; top: clamp(.5rem,2vw,1.2rem); right: clamp(.8rem,2vw,1.8rem); background: none; border: none; color: #fff; font-size: clamp(2.2rem,5vw,2.8rem); line-height: 1; cursor: pointer; width: 48px; height: 48px; }

.section-contact { background: var(--brand-beige); padding: var(--section-y) 0; }
.contact-title { margin-bottom: 1.2rem; }
.contact-text { max-width: 600px; margin: 0 auto 2rem; font-size: var(--fs-lead); }
.contact-meta { display: flex; flex-wrap: wrap; gap: 1rem 2.5rem; justify-content: center; margin-bottom: 2.4rem; font-weight: 500; color: var(--brand-dark); }
.contact-meta-item { display: inline-flex; align-items: center; gap: .5rem; transition: color .25s; min-height: 32px; }
.contact-meta-item:hover { color: var(--brand-orange); }
.contact-icon { width: 1.1rem; height: 1.1rem; color: var(--brand-orange); flex-shrink: 0; }

.site-footer { background: var(--brand-footer); color: #b9ad9d; padding: clamp(3rem, 2rem + 3vw, 4.5rem) 0 0; }
.footer-inner { max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); display: grid; grid-template-columns: 2fr 1fr 1fr; gap: clamp(2rem, 1rem + 3vw, 3rem); }
.footer-brand { display: inline-flex; align-items: center; gap: .6rem; font-family: var(--font-serif); font-size: 1.5rem; font-weight: 700; color: #fff; letter-spacing: .15em; margin-bottom: 1.2rem; }
.footer-brand .brand-icon { width: 1.8rem; height: 1.8rem; }
.footer-desc { font-size: .92rem; max-width: 340px; line-height: 1.8; }
.footer-social { display: flex; gap: .8rem; margin-top: 1.5rem; }
.footer-social a { width: 2.5rem; height: 2.5rem; border-radius: 50%; background: rgba(255,255,255,.07); display: flex; align-items: center; justify-content: center; color: #b9ad9d; transition: background-color .3s var(--ease), color .3s var(--ease), transform .3s var(--ease); }
.footer-social a:hover { background: var(--brand-orange); color: #fff; transform: translateY(-3px); }
.footer-title { color: #fff; font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 1.2rem; font-weight: 700; }
.footer-menu, .footer-contact { list-style: none; margin: 0; padding: 0; }
.footer-menu li, .footer-contact li { margin-bottom: .7rem; font-size: .92rem; }
.footer-menu a { transition: color .25s, padding-left .25s; }
.footer-menu a:hover { color: var(--brand-orange); padding-left: .3rem; }
.footer-contact li { display: flex; align-items: center; gap: .5rem; }
.footer-icon { width: 1rem; height: 1rem; color: var(--brand-beige-dark); flex-shrink: 0; }
.footer-contact a { transition: color .25s; }
.footer-contact a:hover { color: var(--brand-orange); }
.footer-bottom { margin-top: clamp(2.5rem, 1.5rem + 2vw, 3.5rem); border-top: 1px solid rgba(255,255,255,.08); padding: 1.5rem; text-align: center; font-size: .82rem; color: #8a7e6e; }

.back-to-top { position: fixed; bottom: clamp(1rem, 3vw, 1.8rem); right: clamp(1rem, 3vw, 1.8rem); z-index: 60; width: 3rem; height: 3rem; border-radius: 50%; border: none; background: var(--brand-orange); color: #fff; cursor: pointer; display: flex; align-items: center; justify-content: center; box-shadow: 0 10px 25px -8px rgba(245,130,32,.6); opacity: 0; transform: translateY(20px); pointer-events: none; transition: opacity .35s var(--ease), transform .35s var(--ease), background-color .3s var(--ease); }
.back-to-top.is-visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.back-to-top:hover { background: var(--brand-orange-hover); transform: translateY(-3px); }

.page-header { background: linear-gradient(rgba(26,17,12,.72), rgba(26,17,12,.72)), url('https://images.unsplash.com/photo-1505235687559-28b5f54645b7?auto=format&fit=crop&w=1920&q=80'); background-size: cover; background-position: center; padding: calc(var(--nav-h) + 5rem) 0 4rem; text-align: center; color: #fff; }
.page-header-title { color: #fff; font-size: clamp(1.9rem, 1.2rem + 3vw, 3rem); }
.page-header-meta { color: var(--brand-beige-dark); margin-top: .5rem; }
.content-narrow { max-width: 820px; padding-top: clamp(2.5rem, 1.5rem + 3vw, 4rem); padding-bottom: clamp(2.5rem, 1.5rem + 3vw, 4rem); }
.entry-content { line-height: 1.85; font-size: 1.02rem; }
.entry-content p { margin: 0 0 1.4rem; }
.entry-content h2, .entry-content h3 { margin: 2.2rem 0 1rem; }
.entry-content a { color: var(--brand-orange); text-decoration: underline; }
.entry-content img { border-radius: var(--radius); }
.page-thumb { margin-bottom: 2.5rem; border-radius: var(--radius); overflow: hidden; }

.post-list { display: flex; flex-direction: column; gap: 2.5rem; }
.post-card { display: grid; grid-template-columns: 300px 1fr; gap: 1.8rem; background: #fff; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); transition: box-shadow .4s var(--ease), transform .4s var(--ease); }
.post-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.post-thumb img { width: 100%; height: 100%; object-fit: cover; }
.post-body { padding: 1.8rem 1.8rem 1.8rem 0; }
.post-title { font-size: 1.4rem; margin-bottom: .4rem; }
.post-title a:hover { color: var(--brand-orange); }
.post-meta { font-size: .82rem; color: #999; margin: 0 0 1rem; }
.error-404 { padding: clamp(3rem, 2rem + 4vw, 5rem) 0; }

.search-form { display: flex; gap: .5rem; flex-wrap: wrap; }
.search-field { flex: 1; min-width: 180px; padding: .85rem 1rem; border: 1px solid var(--brand-beige-dark); border-radius: var(--radius); font-family: inherit; }

.pagination { margin-top: 3rem; text-align: center; }
.pagination .page-numbers { display: inline-block; padding: .6rem 1rem; margin: .2rem; border: 1px solid var(--brand-beige-dark); border-radius: var(--radius); min-width: 44px; }
.pagination .current { background: var(--brand-orange); color: #fff; border-color: var(--brand-orange); }

/* ===================== RESPONSIVO ===================== */
@media (min-width: 1400px) { :root { --container: 1320px; } }

@media (max-width: 1100px) {
	.nav-menu { gap: .8rem; font-size: .7rem; }
	.nav-menu .menu-cta a { padding: .55rem 1rem; }
}

@media (max-width: 980px) {
	.nav-menu { display: none; }
	.mobile-toggle { display: flex; }
	.pillars-grid { grid-template-columns: repeat(2, 1fr); gap: 2.5rem 2rem; }
	.program-grid { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }
	.program-card.is-featured { transform: none; }
	.program-card.is-featured:hover { transform: translateY(-10px); }
}

@media (max-width: 860px) {
	.split { grid-template-columns: 1fr; }
	.split-reverse .split-media { order: 0; }
	.split-media { min-height: 280px; }
	.split-body { text-align: center; align-items: center; }
	.link-arrow { margin-inline: auto; }
	.activities-grid { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
	.footer-inner { grid-template-columns: 1fr 1fr; }
	.footer-about { grid-column: 1 / -1; }
	.footer-desc { max-width: none; }
}

@media (max-width: 768px) {
	.topbar { display: none; }
	.navbar { top: 0; }
	html { scroll-padding-top: 70px; }
	.hero { background-attachment: scroll; min-height: 92vh; min-height: 92svh; }
	.section-program { background-attachment: scroll; }
	.stay-grid { grid-template-columns: 1fr 1fr; }
	.gallery-grid { grid-template-columns: repeat(2, 1fr); }
	.post-card { grid-template-columns: 1fr; }
	.post-thumb img { aspect-ratio: 16/9; }
	.post-body { padding: 0 1.5rem 1.8rem; }
}

@media (max-width: 560px) {
	.pillars-grid { grid-template-columns: 1fr; gap: 2.2rem; max-width: 340px; margin-inline: auto; }
	.stay-grid { grid-template-columns: 1fr; max-width: 380px; margin-inline: auto; }
	.gallery-grid { grid-template-columns: 1fr 1fr; }
	.footer-inner { grid-template-columns: 1fr; text-align: center; }
	.footer-about { text-align: center; }
	.footer-brand, .footer-social { justify-content: center; }
	.footer-contact li { justify-content: center; }
	.contact-meta { flex-direction: column; gap: .9rem; align-items: center; }
	.btn { width: 100%; max-width: 320px; }
	.hero .btn { width: auto; }
}

@media (max-width: 380px) {
	:root { --gutter: 1rem; }
	.gallery-grid { grid-template-columns: 1fr; max-width: 320px; margin-inline: auto; }
	.brand-link, .navbar-brand .custom-logo-link { letter-spacing: .1em; }
}

@media (hover: none) {
	.pillar-card:hover .pillar-icon { transform: none; box-shadow: none; }
	.gallery-zoom { opacity: 0; }
	.activity-card:hover { transform: none; }
}

@media (max-height: 520px) and (orientation: landscape) {
	.hero { min-height: 520px; padding-top: 5rem; }
	.hero-scroll { display: none; }
}

@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
	[data-reveal] { opacity: 1; transform: none; }
	.hero-content { animation: none; }
}

@media print {
	.navbar, .topbar, .hero-scroll, .back-to-top, .mobile-menu, .site-footer { display: none !important; }
	body { color: #000; background: #fff; }
}
