/* =========================================================
   OLENA REAL — main stylesheet
   Premium transformational institute
   Paleta: oliva-oro (marca) · base ivory · acentos bronce
   ========================================================= */

/* ---------- 1. RESET & ROOT ---------- */
*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body,
h1, h2, h3, h4, h5, h6,
p, ul, ol, figure, blockquote {
	margin: 0;
	padding: 0;
}

ul, ol { list-style: none; }

img,
picture {
	max-width: 100%;
	display: block;
	height: auto;
}

a {
	color: inherit;
	text-decoration: none;
	transition: color .25s ease, opacity .25s ease;
}

button {
	font: inherit;
	border: 0;
	background: transparent;
	cursor: pointer;
	color: inherit;
}

input,
textarea,
select {
	font: inherit;
	color: inherit;
}

/* ---------- 2. DESIGN TOKENS ---------- */
:root {
	/* paleta de marca */
	--c-ivory:      #F0EAD2;
	--c-olive-lt:   #DDE5B6;
	--c-green:      #ADC178;
	--c-olive:      #9FA86B;   /* oliva-oro — marca */
	--c-olive-gold: #97992F;   /* oro-oliva del logotipo */
	--c-sand:       #A98467;
	--c-earth:      #6C584C;
	--c-bronze:     #C9A17C;

	/* funcionales */
	--c-bg:         #F4EFDD;   /* crema cálida base */
	--c-bg-soft:    #ECE5CC;   /* crema más profunda */
	--c-bg-dark:    #2A2E22;   /* oliva casi negro */
	--c-bg-olive:   #5C6442;   /* oliva oscuro (bandas) */
	--c-text:       #2C2E25;
	--c-text-soft:  #5F5345;
	--c-text-muted: #8C8463;
	--c-text-light: #F0EAD2;

	--c-primary:    #8F9A55;   /* botones — oliva marca */
	--c-primary-d:  #6E783F;   /* hover oliva oscuro */

	--c-line:       rgba(92, 100, 66, .20);
	--c-line-light: rgba(240, 234, 210, .22);

	/* tipografía */
	--ff-serif:     "Cormorant Garamond", "Playfair Display", Georgia, serif;
	--ff-serif-alt: "Playfair Display", "Cormorant Garamond", Georgia, serif;
	--ff-sans:      "Inter", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;

	/* espacio */
	--site-width:   1280px;
	--site-pad:     32px;
	--section-py:   140px;
	--section-py-m: 80px;

	/* radios */
	--r-sm: 4px;
	--r-md: 8px;
	--r-lg: 18px;

	/* easing */
	--ease:      cubic-bezier(.22, .61, .36, 1);
	--ease-soft: cubic-bezier(.4, 0, .2, 1);
}

/* ---------- 3. BASE TYPOGRAPHY ---------- */
body {
	font-family: var(--ff-sans);
	font-weight: 300;
	font-size: 17px;
	line-height: 1.7;
	color: var(--c-text);
	background: var(--c-bg);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--ff-serif);
	font-weight: 400;
	line-height: 1.15;
	color: var(--c-text);
	letter-spacing: .005em;
}

em {
	font-family: var(--ff-serif);
	font-style: italic;
	font-weight: 400;
	color: var(--c-olive-gold);
}

p { line-height: 1.7; }

::selection { background: var(--c-olive); color: #fff; }

/* ---------- 4. LAYOUT HELPERS ---------- */
.contentWrapper { overflow-x: clip; }

.siteWidth {
	max-width: var(--site-width);
	margin: 0 auto;
	padding: 0 var(--site-pad);
}

.section {
	padding-top: var(--section-py);
	padding-bottom: var(--section-py);
	position: relative;
}

.sectionDark {
	background: var(--c-bg-dark);
	color: var(--c-text-light);
}
.sectionDark h1,
.sectionDark h2,
.sectionDark h3,
.sectionDark h4 { color: var(--c-text-light); }

.sectionSoft { background: var(--c-bg-soft); }

.sectionHead {
	margin-bottom: 64px;
	max-width: 820px;
}
.sectionHead.centered {
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}

.sectionEyebrow {
	font-family: var(--ff-sans);
	font-size: 12px;
	font-weight: 500;
	letter-spacing: .28em;
	text-transform: uppercase;
	color: var(--c-olive-gold);
	margin-bottom: 22px;
}
.sectionEyebrow.lightEyebrow { color: var(--c-bronze); }

.sectionTitle {
	font-size: clamp(34px, 4.4vw, 58px);
	font-weight: 400;
	line-height: 1.1;
	letter-spacing: -.005em;
	margin-bottom: 28px;
}
.sectionTitle.light { color: var(--c-text-light); }

.sectionLead {
	font-family: var(--ff-serif);
	font-size: clamp(18px, 1.6vw, 22px);
	font-weight: 300;
	font-style: italic;
	line-height: 1.55;
	color: var(--c-text-soft);
	max-width: 720px;
}
.sectionHead.centered .sectionLead { margin-left: auto; margin-right: auto; }
.sectionLead.light { color: rgba(240, 234, 210, .78); }

/* ---------- 5. BUTTONS ---------- */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	font-family: var(--ff-sans);
	font-size: 13px;
	font-weight: 500;
	letter-spacing: .2em;
	text-transform: uppercase;
	padding: 17px 32px;
	border: 1px solid transparent;
	border-radius: 999px;
	cursor: pointer;
	transition: all .35s var(--ease);
	white-space: nowrap;
}

.btnPrimary {
	background: var(--c-primary);
	color: #fff;
	border-color: var(--c-primary);
}
.btnPrimary:hover {
	background: var(--c-primary-d);
	border-color: var(--c-primary-d);
	transform: translateY(-1px);
}

.btnGhost {
	background: transparent;
	color: var(--c-text);
	border-color: var(--c-primary);
}
.btnGhost:hover {
	background: var(--c-primary);
	color: #fff;
}

.btnGhostLight {
	background: transparent;
	color: var(--c-bg-dark);
	border-color: var(--c-bg-dark);
}
.btnGhostLight:hover {
	background: var(--c-bg-dark);
	color: var(--c-text-light);
}

.btnLightOutline {
	background: transparent;
	color: var(--c-text-light);
	border-color: var(--c-bronze);
}
.btnLightOutline:hover {
	background: var(--c-bronze);
	color: var(--c-bg-dark);
}

.btnLink {
	padding: 4px 0;
	border-radius: 0;
	background: transparent;
	color: var(--c-text);
	border-bottom: 1px solid transparent;
	letter-spacing: .16em;
}
.btnLink:hover { color: var(--c-olive-gold); border-bottom-color: var(--c-olive-gold); }

.btnSm { padding: 12px 22px; font-size: 11px; letter-spacing: .18em; }

.btnFull { width: 100%; }

/* ---------- 6. HEADER ---------- */
.headerCD {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
	background: rgba(244, 239, 221, .82);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	border-bottom: 1px solid var(--c-line);
	transition: padding .35s var(--ease), background .35s var(--ease);
}

.headerCD.headerScrolled {
	background: rgba(244, 239, 221, .96);
}

.headerInner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 78px;
	padding: 14px 0;
	gap: 32px;
}

.logo img { height: 40px; width: auto; }

.mainNav { flex: 1; }

.mainNavList {
	display: flex;
	justify-content: center;
	gap: 30px;
	flex-wrap: wrap;
}

.mainNavList a {
	font-size: 12px;
	letter-spacing: .18em;
	text-transform: uppercase;
	font-weight: 400;
	color: var(--c-earth);
	padding: 6px 0;
	position: relative;
}
.mainNavList a::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 1px;
	background: var(--c-olive-gold);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform .35s var(--ease);
}
.mainNavList a:hover { color: var(--c-olive-gold); }
.mainNavList a:hover::after { transform: scaleX(1); }

.headerActions {
	display: flex;
	align-items: center;
	gap: 16px;
}

.burgerBtn {
	display: none;
	width: 38px;
	height: 38px;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 6px;
}
.burgerBtn span {
	display: block;
	width: 22px;
	height: 1.5px;
	background: var(--c-earth);
	transition: transform .3s var(--ease), opacity .25s var(--ease);
}
body.navOpen .burgerBtn span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
body.navOpen .burgerBtn span:nth-child(2) { opacity: 0; }
body.navOpen .burgerBtn span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---------- 7. HERO (split: texto + retrato en arco) ---------- */
.heroSection {
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: center;
	padding: 130px 0 70px;
	overflow: hidden;
	background:
		radial-gradient(circle at 78% 28%, rgba(159, 168, 107, .28), transparent 42%),
		radial-gradient(circle at 12% 80%, rgba(201, 161, 124, .14), transparent 45%),
		linear-gradient(115deg, #FBF7E9 0%, var(--c-bg) 58%, #E4DCC0 100%);
}

.heroGrid {
	position: relative;
	z-index: 2;
	width: 100%;
	display: grid;
	grid-template-columns: 1.04fr .96fr;
	align-items: center;
	gap: 60px;
}

.heroTextWrap { max-width: 620px; }

.heroEyebrow {
	font-size: 12px;
	letter-spacing: .32em;
	text-transform: uppercase;
	color: var(--c-olive-gold);
	font-weight: 500;
	margin-bottom: 26px;
}

.heroTitle {
	font-family: var(--ff-serif);
	font-size: clamp(46px, 6vw, 88px);
	font-weight: 300;
	line-height: 1.04;
	letter-spacing: -.01em;
	color: var(--c-bg-dark);
	margin-bottom: 26px;
}
.heroTitle em {
	font-style: italic;
	font-weight: 400;
	color: var(--c-olive-gold);
}

.heroSubtitle {
	font-family: var(--ff-serif);
	font-size: clamp(18px, 1.7vw, 23px);
	font-weight: 300;
	font-style: italic;
	line-height: 1.5;
	color: var(--c-text-soft);
	max-width: 520px;
	margin-bottom: 30px;
}

.heroTagline {
	font-size: 11px;
	letter-spacing: .26em;
	text-transform: uppercase;
	color: var(--c-earth);
	opacity: .7;
	margin-bottom: 40px;
	line-height: 1.9;
}

.heroCtas,
.heroCtas > p
{
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	align-items: center;
}

/* retrato en arco + orbe + monograma de fondo */
.heroVisual {
	position: relative;
	display: flex;
	justify-content: center;
}

.heroMonogram {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -54%);
	font-family: var(--ff-serif);
	font-size: clamp(280px, 34vw, 460px);
	line-height: .8;
	font-weight: 400;
	color: rgba(151, 153, 47, .10);
	letter-spacing: -.04em;
	pointer-events: none;
	z-index: 0;
	white-space: nowrap;
}

.portraitCard {
	position: relative;
	z-index: 1;
	width: min(100%, 420px);
	overflow: hidden;
	border-radius: 210px 210px 6px 6px;
	box-shadow: 0 40px 90px -30px rgba(60, 65, 40, .45);
}
.portraitCard img {
	width: 100%;
	height: 620px;
	object-fit: cover;
	object-position: center top;
	filter: saturate(.92) contrast(.98);
	animation: heroFade 1.6s var(--ease) both;
}

.portraitOrb {
	position: absolute;
	z-index: 2;
	inset: 6% 4%;
	border: 1px solid rgba(151, 153, 47, .45);
	border-radius: 50%;
	pointer-events: none;
}
.portraitRing {
	position: absolute;
	z-index: 0;
	right: -34px;
	bottom: 40px;
	width: 150px;
	height: 150px;
	border: 1px solid var(--c-bronze);
	border-radius: 50%;
	opacity: .55;
}

.heroScroll {
	position: absolute;
	bottom: 30px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 3;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
}
.scrollLine {
	width: 1px;
	height: 52px;
	background: var(--c-earth);
	position: relative;
	overflow: hidden;
}
.scrollLine::before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: -52px;
	height: 52px;
	background: var(--c-olive-gold);
	animation: scrollLine 2.4s var(--ease) infinite;
}
.scrollLabel {
	font-size: 10px;
	letter-spacing: .3em;
	text-transform: uppercase;
	color: var(--c-earth);
}

@keyframes heroFade {
	from { opacity: 0; transform: scale(1.04); }
	to   { opacity: 1; transform: scale(1); }
}
@keyframes scrollLine {
	0%   { transform: translateY(0); }
	100% { transform: translateY(104px); }
}

/* ---------- 8. FADE-IN ANIMATION ---------- */
.fadeIn {
	opacity: 0;
	transform: translateY(28px);
	transition: opacity 1s var(--ease), transform 1s var(--ease);
}
.fadeIn.isVisible {
	opacity: 1;
	transform: translateY(0);
}

/* ---------- 9. PILLARS BAND (oliva) ---------- */
.pillarsBand {
	background:
		linear-gradient(120deg, var(--c-bg-olive) 0%, #6E7A4C 100%);
	color: var(--c-text-light);
	padding: 70px 0;
}
.pillarsGrid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 30px;
}
.pillarItem {
	text-align: center;
	padding: 0 14px;
}
.pillarIco {
	display: block;
	font-size: 34px;
	line-height: 1;
	color: var(--c-olive-lt);
	margin-bottom: 16px;
	text-align: center;
}
.pillarIco img{
	display: inline-block;
	max-width: 34px;
	max-height: 34px;
}
.pillarItem h3 {
	font-size: 22px;
	font-weight: 400;
	color: var(--c-text-light);
	margin-bottom: 8px;
}
.pillarItem p {
	font-size: 14px;
	color: rgba(240, 234, 210, .78);
	line-height: 1.6;
}

/* ---------- 10. PROBLEM SECTION ---------- */
.problemSection { background: var(--c-bg); }

.problemGrid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1px;
	background: var(--c-line);
	border: 1px solid var(--c-line);
}

.problemCard {
	background: var(--c-bg);
	padding: 48px 38px;
	transition: background .4s var(--ease);
}
.problemCard:hover { background: var(--c-bg-soft); }

.problemIndex {
	display: block;
	font-family: var(--ff-serif);
	font-size: 14px;
	letter-spacing: .15em;
	color: var(--c-olive-gold);
	margin-bottom: 24px;
}

.problemTitle {
	font-size: 24px;
	font-weight: 400;
	margin-bottom: 14px;
	color: var(--c-bg-dark);
}

.problemCard p {
	font-size: 15px;
	color: var(--c-text-soft);
	line-height: 1.65;
}

/* ---------- 11. ABOUT SECTION ---------- */
.aboutSection { background: var(--c-bg-soft); }

.aboutGrid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
	gap: 80px;
	align-items: center;
}

.aboutMedia { position: relative; }

.aboutImgFrame {
	position: relative;
	aspect-ratio: 4 / 5;
	overflow: hidden;
	border-radius: 4px;
	box-shadow: 0 30px 60px -25px rgba(42, 46, 34, .3);
}
.aboutImg {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 1.4s var(--ease);
}
.aboutMedia:hover .aboutImg { transform: scale(1.04); }

/* marco oliva desplazado */
.aboutMedia::before {
	content: "";
	position: absolute;
	right: -22px;
	bottom: -22px;
	left: 40px;
	top: 60px;
	border: 1px solid var(--c-olive);
	border-radius: 4px;
	z-index: -1;
}

.aboutBody p {
	font-size: 17px;
	color: var(--c-text-soft);
	margin-bottom: 18px;
}
.aboutBody strong { color: var(--c-bg-dark); font-weight: 500; }

.aboutQuote {
	font-family: var(--ff-serif);
	font-style: italic;
	font-size: clamp(22px, 1.8vw, 28px);
	line-height: 1.5;
	color: var(--c-earth);
	padding: 28px 0 28px 28px;
	margin: 40px 0;
	border-left: 1px solid var(--c-olive);
}

/* ---------- 12. REAL CODE METHOD ---------- */
.realCodeSection {
	background:
		radial-gradient(ellipse at 20% 18%, rgba(151, 153, 47, .14), transparent 50%),
		radial-gradient(ellipse at 82% 82%, rgba(201, 161, 124, .10), transparent 50%),
		var(--c-bg-dark);
}

.realCodeTimeline {
	position: relative;
	max-width: 880px;
	margin: 0 auto;
}

.timelineLine {
	position: absolute;
	top: 20px;
	bottom: 20px;
	left: 31px;
	width: 1px;
	background: linear-gradient(to bottom, transparent, var(--c-olive) 10%, var(--c-olive) 90%, transparent);
}

.timelineStep {
	display: grid;
	grid-template-columns: 64px 1fr;
	gap: 36px;
	padding: 22px 0;
	margin-bottom: 28px;
}

.stepCircle {
	width: 64px;
	height: 64px;
	border-radius: 50%;
	border: 1px solid var(--c-olive);
	background: var(--c-bg-dark);
	color: var(--c-olive-lt);
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--ff-serif);
	font-size: 18px;
	letter-spacing: .1em;
	z-index: 2;
	position: relative;
}

.stepBody h3 {
	font-size: clamp(22px, 2.2vw, 30px);
	font-weight: 400;
	color: var(--c-text-light);
	margin-bottom: 10px;
}
.stepBody p {
	color: rgba(240, 234, 210, .72);
	font-size: 16px;
	line-height: 1.7;
	max-width: 640px;
}

.realCodeCta {
	margin-top: 70px;
	text-align: center;
}

/* ---------- 13. NAVIGATION SYSTEM ---------- */
.navigationSection { background: var(--c-bg); }

.navigationGrid {
	display: grid;
	grid-template-columns: 1.1fr 1fr;
	gap: 80px;
	align-items: center;
}

.navigationMedia img {
	width: 100%;
	aspect-ratio: 4 / 5;
	object-fit: cover;
	border-radius: 4px;
	box-shadow: 0 30px 60px -25px rgba(42, 46, 34, .3);
}

.navigationFeatures {
	margin: 36px 0;
}
.navigationFeatures li {
	font-family: var(--ff-serif);
	font-size: 19px;
	padding: 12px 0;
	border-bottom: 1px solid var(--c-line);
	color: var(--c-bg-dark);
}
.navigationFeatures li span {
	color: var(--c-olive-gold);
	display: inline-block;
	margin-right: 14px;
}

.navigationFooter {
	display: flex;
	align-items: center;
	gap: 36px;
	flex-wrap: wrap;
	margin-top: 32px;
}

.navigationPrice {
	display: flex;
	flex-direction: column;
	gap: 4px;
}
.priceLabel {
	font-size: 11px;
	letter-spacing: .3em;
	text-transform: uppercase;
	color: var(--c-olive-gold);
}
.priceValue {
	font-family: var(--ff-serif);
	font-size: 40px;
	font-weight: 400;
	color: var(--c-bg-dark);
}

/* ---------- 14. TRANSFORMATION AREAS ---------- */
.areasSection { background: var(--c-bg-soft); }

.areasGrid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1px;
	background: var(--c-line);
	border: 1px solid var(--c-line);
}

.areaItem {
	background: var(--c-bg-soft);
	padding: 38px 32px;
	font-family: var(--ff-serif);
	font-size: 22px;
	font-weight: 400;
	color: var(--c-bg-dark);
	display: flex;
	align-items: center;
	gap: 18px;
	transition: background .4s var(--ease), color .4s var(--ease);
}
.areaItem:hover {
	background: var(--c-olive-lt);
	color: var(--c-bg-dark);
}
.areaIco {
	color: var(--c-olive-gold);
	font-size: 28px;
	line-height: 1;
}

/* ---------- 15. ECOSYSTEM ---------- */
.ecosystemSection { background: var(--c-bg); }

.ecosystemFlow {
	max-width: 680px;
	margin: 0 auto;
}

.ecoStep {
	display: grid;
	grid-template-columns: 64px 1fr;
	gap: 28px;
	align-items: start;
	background: var(--c-bg-soft);
	padding: 32px 36px;
	border-radius: var(--r-lg);
	border: 1px solid var(--c-line);
	transition: transform .4s var(--ease), border-color .4s var(--ease), background .4s var(--ease);
}
.ecoStep:hover {
	transform: translateY(-3px);
	border-color: var(--c-olive);
}

.ecoStepHero {
	background: var(--c-bg-dark);
	color: var(--c-text-light);
	border-color: var(--c-olive);
}
.ecoStepHero .ecoBadge {
	background: var(--c-olive);
	color: #fff;
	border-color: var(--c-olive);
}
.ecoStepHero h3 { color: var(--c-text-light); }
.ecoStepHero .ecoFormat { color: var(--c-olive-lt); }
.ecoStepHero .ecoDesc { color: rgba(240, 234, 210, .8); }
.ecoStepHero .ecoPrice { color: var(--c-olive-lt); border-color: rgba(173, 193, 120, .35); }

.ecoBadge {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: var(--c-bg);
	border: 1px solid var(--c-olive);
	color: var(--c-primary-d);
	font-family: var(--ff-serif);
	font-size: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.ecoBody h3 {
	font-size: 22px;
	font-weight: 500;
	letter-spacing: .02em;
	margin-bottom: 6px;
	color: var(--c-bg-dark);
}
.ecoFormat {
	font-family: var(--ff-serif);
	font-style: italic;
	color: var(--c-olive-gold);
	font-size: 15px;
	margin-bottom: 10px;
}
.ecoDesc {
	color: var(--c-text-soft);
	font-size: 15px;
	line-height: 1.65;
	margin-bottom: 14px;
}
.ecoPrice {
	display: inline-block;
	font-size: 12px;
	letter-spacing: .22em;
	text-transform: uppercase;
	color: var(--c-primary-d);
	padding-top: 10px;
	border-top: 1px solid var(--c-line);
}

.ecoArrow {
	text-align: center;
	font-size: 22px;
	color: var(--c-olive);
	padding: 12px 0;
	font-family: var(--ff-serif);
}

/* MOOD BOX */
.moodBoxBlock {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
	background: var(--c-bg-dark);
	color: var(--c-text-light);
	border-radius: var(--r-lg);
	overflow: hidden;
}
.moodBoxMedia {
	background: linear-gradient(135deg, #6E7A4C, var(--c-bg-olive));
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 360px;
	padding: 40px;
}
.moodBoxMedia img {
	width: auto;
	max-height: 320px;
	max-width: 100%;
	object-fit: contain;
	filter: drop-shadow(0 24px 40px rgba(0, 0, 0, .3));
}
.moodBoxText {
	padding: 56px;
}
.moodBoxTitle {
	font-size: clamp(28px, 3vw, 40px);
	color: var(--c-text-light);
	margin-bottom: 20px;
}
.moodBoxText p {
	color: rgba(240, 234, 210, .8);
	margin-bottom: 28px;
	max-width: 480px;
}
.moodBoxText .btnGhost {
	color: var(--c-text-light);
	border-color: var(--c-bronze);
}
.moodBoxText .btnGhost:hover { background: var(--c-bronze); color: var(--c-bg-dark); }

/* ---------- 16. TESTIMONIALS ---------- */
.testimonialsSection { background: var(--c-bg); }

.testimonialsGrid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 28px;
}

.testimonialCard {
	background: var(--c-bg-soft);
	border-radius: var(--r-lg);
	padding: 48px;
	border: 1px solid var(--c-line);
	transition: border-color .35s var(--ease), transform .35s var(--ease);
}
.testimonialCard:hover {
	border-color: var(--c-olive);
	transform: translateY(-3px);
}

.testimonialCard blockquote {
	font-family: var(--ff-serif);
	font-size: 22px;
	line-height: 1.5;
	color: var(--c-bg-dark);
	margin-bottom: 26px;
	font-weight: 400;
}

.testimonialCard figcaption {
	display: flex;
	flex-direction: column;
	gap: 4px;
}
.testName {
	font-family: var(--ff-sans);
	font-weight: 500;
	letter-spacing: .04em;
	color: var(--c-bg-dark);
}
.testMeta {
	font-size: 12px;
	letter-spacing: .2em;
	text-transform: uppercase;
	color: var(--c-olive-gold);
}

/* ---------- 17. RETREATS ---------- */
.retreatsSection {
	position: relative;
	min-height: 86vh;
	display: flex;
	align-items: center;
	padding: 120px 0;
	overflow: hidden;
}

.retreatsMedia {
	position: absolute;
	inset: 0;
	z-index: 0;
}
.retreatsMedia img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.retreatsOverlay {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(120deg,
			rgba(34, 38, 26, .88) 0%,
			rgba(42, 46, 34, .6) 58%,
			rgba(42, 46, 34, .3) 100%
		);
}

.retreatsContent {
	position: relative;
	z-index: 2;
	width: 100%;
}

.retreatsTextWrap {
	max-width: 620px;
}

.retreatsTags {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin: 28px 0 36px;
}
.retreatsTags li {
	font-size: 11px;
	letter-spacing: .25em;
	text-transform: uppercase;
	color: var(--c-olive-lt);
	padding: 8px 18px;
	border: 1px solid rgba(173, 193, 120, .4);
	border-radius: 999px;
}

/* ---------- 18. JOURNAL ---------- */
.journalSection { background: var(--c-bg-soft); }

.journalGrid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 36px;
}

.journalCard {
	background: var(--c-bg);
	border-radius: var(--r-lg);
	overflow: hidden;
	border: 1px solid var(--c-line);
	transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.journalCard:hover {
	transform: translateY(-4px);
	box-shadow: 0 24px 50px -25px rgba(42, 46, 34, .3);
}

.journalImg {
	aspect-ratio: 16 / 9;
	overflow: hidden;
}
.journalImg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 1s var(--ease);
}
.journalCard:hover .journalImg img { transform: scale(1.06); }

.journalBody { padding: 36px 32px; }

.journalTag {
	display: inline-block;
	font-size: 11px;
	letter-spacing: .25em;
	text-transform: uppercase;
	color: var(--c-olive-gold);
	margin-bottom: 14px;
}

.journalCard h3 {
	font-size: 24px;
	font-weight: 500;
	margin-bottom: 12px;
	line-height: 1.3;
}

.journalCard p {
	color: var(--c-text-soft);
	font-size: 15px;
	margin-bottom: 16px;
}

/* ---------- 19. BOOKING ---------- */
.bookingSection { background: var(--c-bg-soft); }

.bookingGrid {
	display: grid;
	grid-template-columns: 1fr 1.05fr;
	gap: 80px;
	align-items: start;
}

.bookingChannels {
	margin-top: 40px;
	border-top: 1px solid var(--c-line);
}
.bookingChannels li {
	border-bottom: 1px solid var(--c-line);
}
.bookingChannels a {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 22px 0;
	color: var(--c-bg-dark);
	transition: padding .3s var(--ease), color .3s var(--ease);
}
.bookingChannels a:hover {
	padding-left: 8px;
	color: var(--c-olive-gold);
}
.channelLabel {
	font-family: var(--ff-serif);
	font-size: 22px;
	font-weight: 400;
}
.channelMeta {
	font-size: 12px;
	letter-spacing: .22em;
	text-transform: uppercase;
	color: var(--c-text-muted);
}

.bookingForm {
	background: var(--c-bg);
	border-radius: var(--r-lg);
	padding: 48px;
	border: 1px solid var(--c-line);
	display: flex;
	flex-direction: column;
	gap: 18px;
}

.formField {
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.formField label {
	font-size: 11px;
	letter-spacing: .25em;
	text-transform: uppercase;
	color: var(--c-olive-gold);
}
.formField input,
.formField textarea,
.formField select {
	background: transparent;
	border: 0;
	border-bottom: 1px solid var(--c-line);
	padding: 10px 0;
	font-family: var(--ff-sans);
	font-size: 15px;
	color: var(--c-bg-dark);
	outline: none;
	transition: border-color .3s var(--ease);
	width: 100%;
	resize: vertical;
}
.formField input::placeholder,
.formField textarea::placeholder { color: var(--c-text-muted); }
.formField input:focus,
.formField textarea:focus,
.formField select:focus { border-color: var(--c-olive); }

.formNote {
	font-size: 12px;
	color: var(--c-text-muted);
	margin-top: 6px;
}

.formSuccess {
	display: none;
	margin-top: 12px;
	padding: 14px 18px;
	background: var(--c-olive-lt);
	color: var(--c-bg-dark);
	border-radius: var(--r-md);
	font-size: 14px;
}
.formSuccess.isVisible { display: block; }

/* ---------- 20. FOOTER ---------- */
.footerCD {
	background: var(--c-bg-dark);
	color: rgba(240, 234, 210, .75);
	padding: 110px 0 40px;
}

.footerTop {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr 1fr;
	gap: 60px;
	padding-bottom: 70px;
	border-bottom: 1px solid var(--c-line-light);
}

.footerLogo { display: inline-block; margin-bottom: 26px; }
.footerLogo img { height: 48px; width: auto; }

.footerTagline {
	font-family: var(--ff-serif);
	font-style: italic;
	font-size: 16px;
	color: rgba(240, 234, 210, .65);
	line-height: 1.6;
}

.footerColTitle {
	font-size: 12px;
	letter-spacing: .25em;
	text-transform: uppercase;
	color: var(--c-olive-lt);
	margin-bottom: 22px;
}

.footerCol ul li { margin-bottom: 12px; }
.footerCol ul a {
	font-size: 14px;
	color: rgba(240, 234, 210, .75);
}
.footerCol ul a:hover { color: var(--c-olive-lt); }

.footerBottom {
	padding-top: 36px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 24px;
	flex-wrap: wrap;
}

.footerCopy {
	font-size: 12px;
	letter-spacing: .2em;
	text-transform: uppercase;
	color: rgba(240, 234, 210, .55);
}

.footerSlogan {
	font-family: var(--ff-serif);
	font-style: italic;
	font-size: 15px;
	color: rgba(240, 234, 210, .65);
}

/* ===========================================================
   21. RESPONSIVE
   =========================================================== */

@media (max-width: 1200px) {
	.mainNavList { gap: 22px; }
	.mainNavList a { font-size: 11px; letter-spacing: .14em; }
	.heroGrid { gap: 40px; }
}

@media (max-width: 1024px) {
	:root { --section-py: 100px; }

	.mainNav {
		position: fixed;
		top: 0;
		right: 0;
		width: min(420px, 100vw);
		height: 100vh;
		background: var(--c-bg-soft);
		padding: 110px 36px 40px;
		transform: translateX(100%);
		transition: transform .5s var(--ease);
		z-index: 90;
		overflow-y: auto;
		border-left: 1px solid var(--c-line);
	}
	body.navOpen .mainNav { transform: translateX(0); }

	.mainNavList {
		flex-direction: column;
		align-items: flex-start;
		gap: 14px;
	}
	.mainNavList a {
		font-family: var(--ff-serif);
		font-size: 22px;
		letter-spacing: .04em;
		text-transform: none;
		color: var(--c-bg-dark);
	}

	.burgerBtn { display: flex; }

	.heroGrid { grid-template-columns: 1fr; gap: 48px; }
	.heroVisual { order: -1; }
	.heroTextWrap { max-width: 680px; }
	.portraitCard { width: min(86%, 360px); }
	.portraitCard img { height: 480px; }
	.heroMonogram { font-size: 300px; }

	.pillarsGrid { grid-template-columns: repeat(2, 1fr); gap: 40px; }

	.aboutGrid,
	.navigationGrid,
	.bookingGrid {
		grid-template-columns: 1fr;
		gap: 50px;
	}

	.aboutMedia::before { left: 24px; top: 40px; right: -14px; bottom: -14px; }

	.problemGrid,
	.areasGrid { grid-template-columns: repeat(2, 1fr); }

	.testimonialsGrid,
	.journalGrid { grid-template-columns: 1fr; }

	.footerTop {
		grid-template-columns: 1fr 1fr;
		gap: 40px;
	}

	.moodBoxBlock { grid-template-columns: 1fr; }
	.moodBoxMedia { min-height: 280px; }
	.moodBoxText { padding: 40px 32px; }
}

@media (max-width: 768px) {
	:root {
		--section-py: 80px;
		--site-pad: 22px;
	}

	body { font-size: 16px; }

	.headerInner { min-height: 64px; padding: 10px 0; gap: 12px; }
	.logo img { height: 34px; }

	.headerActions .btnSm { display: none; }

	.heroSection {
		min-height: auto;
		padding: 100px 0 70px;
	}
	.heroTitle { font-size: clamp(38px, 11vw, 56px); }
	.heroCtas .btn { width: 100%; }
	.heroCtas .btnLink { width: auto; }
	.heroScroll { display: none; }
	.portraitCard { width: min(82%, 320px); border-radius: 170px 170px 6px 6px; }
	.portraitCard img { height: 420px; }
	.portraitRing { width: 110px; height: 110px; right: -16px; }

	.pillarsBand { padding: 54px 0; }
	.pillarsGrid { gap: 34px 24px; }

	.problemGrid,
	.areasGrid {
		grid-template-columns: 1fr;
	}

	.problemCard { padding: 36px 26px; }
	.areaItem { padding: 28px 22px; font-size: 19px; }

	.timelineStep {
		grid-template-columns: 48px 1fr;
		gap: 22px;
	}
	.stepCircle { width: 48px; height: 48px; font-size: 14px; }
	.timelineLine { left: 23px; }

	.ecoStep {
		grid-template-columns: 44px 1fr;
		gap: 18px;
		padding: 24px 22px;
	}
	.ecoBadge { width: 44px; height: 44px; font-size: 13px; }

	.testimonialCard { padding: 32px 26px; }
	.testimonialCard blockquote { font-size: 18px; }

	.bookingForm { padding: 30px 24px; }

	.footerCD { padding: 70px 0 30px; }
	.footerTop {
		grid-template-columns: 1fr;
		gap: 36px;
		padding-bottom: 50px;
	}
	.footerBottom { justify-content: flex-start; }

	.aboutQuote {
		padding: 20px 0 20px 22px;
		margin: 30px 0;
		font-size: 19px;
	}

	.sectionHead { margin-bottom: 44px; }

	.retreatsSection { min-height: 70vh; }
}

@media (max-width: 480px) {
	.heroEyebrow { font-size: 10px; letter-spacing: .24em; }
	.heroSubtitle { font-size: 17px; }
	.pillarsGrid { grid-template-columns: 1fr; }

	.priceValue { font-size: 32px; }

	.moodBoxText { padding: 32px 24px; }

	.btn { padding: 16px 26px; font-size: 12px; letter-spacing: .16em; }
}
