:root {
	--navy: #0D1B2A;
	--navy-dark: #0A1628;
	--navy-darker: #060E18;
	--gold: #C9A84C;
	--gold-light: #D4B96A;
	--white: #ffffff;
	--gray-300: #d1d5db;
	--gray-400: #9ca3af;
	--gray-500: #6b7280;
	--gray-600: #4b5563;
}

* { margin: 0; padding: 0; box-sizing: border-box; }


html { scroll-behavior: smooth; }
    
body {
	font-family: 'Lato', sans-serif;		
	min-height: 100vh;
	background: #F8F6F1; 
	color: #374151;
}


body.home{
	background: var(--navy);
	color: var(--white);
}
    
    
    
h1, h2, h3, h4, blockquote {
	font-family: 'Cormorant Garamond', serif;
}
    
.container {
	width: 100%;
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 1.5rem;
}
    
.gold { color: var(--gold); }
.gold-line {
	display: block;
	width: 3rem;
	height: 1px;
	background: var(--gold);
	margin: 1.5rem 0;
}
 
.gold-line-center {
      display: block;
      width: 3rem;
      height: 1px;
      background: var(--gold);
      margin: 1.5rem auto;
}


/* NAV */
header {
	position: fixed;
	top: 0; left: 0; right: 0;
	z-index: 100;
	transition: background 0.3s, box-shadow 0.3s;
}
header.scrolled {
	background: rgba(13,27,42,0.95);
	backdrop-filter: blur(8px);
	box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.nav-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1rem 0;
}

.logo-name {
	font-family: 'Cormorant Garamond', serif;
	font-size: 1.2rem;
	font-weight: 600;
	color: var(--white) !important;
	letter-spacing: 0.05em;
	line-height: 1.2;
	text-decoration: none;
}
.logo-sub {
	font-family: 'Lato', sans-serif;
	font-size: 0.6rem;
	letter-spacing: 0.3em;
	color: var(--gold);
	text-transform: uppercase;
	font-weight: 300;
}
.nav-links {
	display: flex;
	align-items: center;
	gap: 2rem;
	list-style: none;
}
.nav-links a, .nav-links button {
	font-family: 'Lato', sans-serif;
	font-size: 0.85rem;
	color: var(--gray-300);
	text-decoration: none;
	background: none;
	border: none;
	cursor: pointer;
	letter-spacing: 0.05em;
	font-weight: 300;
	transition: color 0.2s;
}
.nav-links a:hover, .nav-links button:hover { color: var(--gold); }
.btn-nav {
	padding: 0.5rem 1.25rem;
	border: 1px solid var(--gold) !important;
	color: var(--gold) !important;
	font-size: 0.8rem !important;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	transition: all 0.2s !important;
}
.btn-nav:hover { background: var(--gold) !important; color: var(--navy) !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: white; transition: all 0.3s; }
.mobile-menu { display: none; background: rgba(13,27,42,0.98); border-top: 1px solid rgba(255,255,255,0.1); padding: 1rem 0; }
.mobile-menu.open { display: block; }
.mobile-menu nav { display: flex; flex-direction: column; gap: 0.5rem; }
.mobile-menu a, .mobile-menu button {
	font-family: 'Lato', sans-serif;
	font-size: 0.9rem;
	color: var(--gray-300);
	text-decoration: none;
	background: none;
	border: none;
	cursor: pointer;
	padding: 0.75rem 0;
	border-bottom: 1px solid rgba(255,255,255,0.05);
	text-align: left;
	width: 100%;
	transition: color 0.2s;
}
.mobile-menu a:hover, .mobile-menu button:hover { color: var(--gold); }
.mobile-cta {
	margin-top: 0.5rem;
	padding: 0.75rem !important;
	border: 1px solid var(--gold) !important;
	color: var(--gold) !important;
	text-align: center !important;
	border-bottom: none !important;
}




/* HERO */
.home .hero {
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.home .hero-bg {
	position: absolute;
	inset: 0;
	background-image: url('../imgs/hero-bg-TSuVL7PLyfUFoC9yXokRZb.webp');
	background-size: cover;
	background-position: center;
}

.home .hero-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to bottom, rgba(13,27,42,0.85), rgba(13,27,42,0.70), rgba(13,27,42,0.90));
}

.home .hero-content {
	position: relative;
	z-index: 10;
	text-align: center;
	padding: 8rem 1.5rem 4rem;
	max-width: 900px;
	margin: 0 auto;
}

.home .hero-eyebrow {
	font-family: 'Lato', sans-serif;
	font-size: 0.7rem;
	letter-spacing: 0.4em;
	text-transform: uppercase;
	color: var(--gold);
	margin-bottom: 1.5rem;
}

.home .hero-title {
	font-size: clamp(2.5rem, 6vw, 5rem);
	font-weight: 300;
	line-height: 1.15;
	color: var(--white);
	margin-bottom: 1.5rem;
}

.home .hero-title em { color: var(--gold); font-style: italic; }
.home .hero-desc {
	font-family: 'Lato', sans-serif;
	font-size: 1.05rem;
	color: var(--gray-300);
	font-weight: 300;
	line-height: 1.7;
	max-width: 600px;
	margin: 0 auto 2.5rem;
}

.home .hero-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.home .btn-gold {
	display: inline-block;
	padding: 1rem 2rem;
	background: var(--gold);
	color: var(--navy);
	font-family: 'Lato', sans-serif;
	font-size: 0.8rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	text-decoration: none;
	transition: background 0.2s;
}

.home .btn-gold:hover { background: var(--gold-light); }
.home .btn-outline {
	display: inline-block;
	padding: 1rem 2rem;
	border: 1px solid rgba(255,255,255,0.4);
	color: var(--white);
	font-family: 'Lato', sans-serif;
	font-size: 0.8rem;
	font-weight: 300;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	text-decoration: none;
	cursor: pointer;
	background: none;
	transition: all 0.2s;
}

.home .btn-outline:hover { border-color: var(--gold); color: var(--gold); }


/* STATS */
.stats-bar {
	background: var(--navy-dark);
	border-top: 1px solid rgba(201,168,76,0.2);
	border-bottom: 1px solid rgba(201,168,76,0.2);
	padding: 0.5rem 0;
}
.stats-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	divide-x: 1px solid rgba(255,255,255,0.1);
}
.stat-item {
	text-align: center;
	padding: 1rem 1.5rem;
	border-right: 1px solid rgba(255,255,255,0.1);
}
.stat-item:last-child { border-right: none; }
.stat-num {
	font-family: 'Cormorant Garamond', serif;
	font-size: 3rem;
	font-weight: 300;
	color: var(--gold);
	line-height: 1.1;
}
.stat-label {
	font-family: 'Lato', sans-serif;
	font-size: 0.65rem;
	text-transform: uppercase;
	letter-spacing: 0.2em;
	color: var(--gray-300);
	margin-top: 0.25rem;
}



/* SECTIONS */
.home section { padding: 6rem 0; }


.section-eyebrow {
	font-family: 'Lato', sans-serif;
	font-size: 0.65rem;
	letter-spacing: 0.3em;
	text-transform: uppercase;
	color: var(--gold);
	margin-bottom: 1rem;
}
.section-title {
	font-size: clamp(2rem, 4vw, 3.5rem);
	font-weight: 300;
	color: var(--white);
	line-height: 1.2;
	margin-bottom: 1rem;
}
.section-title em { color: var(--gold); font-style: italic; }
/* GRID LAYOUTS */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
/* CARDS */
.card {
	background: var(--navy);
	padding: 2rem;
	border: 1px solid transparent;
	transition: border-color 0.3s;
}
.card:hover { border-color: rgba(201,168,76,0.3); }
.card-dark {
	background: var(--navy-dark);
	padding: 2rem;
	border: 1px solid transparent;
	transition: border-color 0.3s;
}
.card-dark:hover { border-color: rgba(201,168,76,0.3); }


/* AREAS */
.areas-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.area-card {
	background: var(--navy);
	padding: 2rem;
	border: 1px solid transparent;
	transition: border-color 0.3s;
}
.area-card:hover { border-color: rgba(201,168,76,0.3); }
.area-num { font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 300; color: var(--gold); margin-bottom: 1rem; }
.area-title { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 500; color: var(--white); margin-bottom: 0.5rem; }
.area-sub { font-family: 'Lato', sans-serif; font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(201,168,76,0.8); margin-bottom: 1rem; }
.area-desc { font-family: 'Lato', sans-serif; font-size: 0.85rem; color: var(--gray-300); line-height: 1.7; font-weight: 300; margin-bottom: 1.5rem; }
.area-list { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.area-list li { display: flex; gap: 0.5rem; font-family: 'Lato', sans-serif; font-size: 0.8rem; color: var(--gray-400); }
.area-list li::before { content: "—"; color: var(--gold); flex-shrink: 0; }
.area-link { display: inline-flex; align-items: center; gap: 0.5rem; color: var(--gold); font-family: 'Lato', sans-serif; font-size: 0.85rem; text-decoration: none; margin-top: 1rem; transition: gap 0.2s; }
.area-link:hover { gap: 0.75rem; }
    
	
/* BIO */
.bio-section { background: var(--navy-dark); position: relative; overflow: hidden; }

.bio-bg { 
	position: absolute; 
	inset: 0; 
	background-image: url('../imgs/credentials-bg-ioYZAhSBhFEYHKTVMnvvog.webp'); 
	background-size: cover; 
	opacity: 0.1; 	
}
		
.cred-list { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 2rem; }

.cred-list li { display: flex; gap: 0.75rem; font-family: 'Lato', sans-serif; font-size: 0.85rem; color: var(--gray-300); font-weight: 300; }

.cred-list li::before { content: "✦"; color: var(--gold); font-size: 0.65rem; flex-shrink: 0; margin-top: 0.2rem; }

.img-wrapper { position: relative; }

.img-wrapper img { width: 100%; object-fit: cover; aspect-ratio: 4/4; }

.img-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,22,40,0.6), transparent); }

.img-quote { position: absolute; bottom: 1.5rem; left: 1.5rem; right: 1.5rem; }

.img-quote blockquote { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-style: italic; color: var(--white); }
    
	
	
	
/* FAQ */
.faq-item { border-bottom: 1px solid rgba(255,255,255,0.1); }
.faq-btn {
	width: 100%;
	text-align: left;
	padding: 1.25rem 0;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 1rem;
	background: none;
	border: none;
	cursor: pointer;
}
.faq-q { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-weight: 500; color: var(--white); transition: color 0.2s; line-height: 1.4; }
.faq-btn:hover .faq-q { color: var(--gold); }
.faq-icon { color: var(--gold); font-size: 1.5rem; flex-shrink: 0; transition: transform 0.3s; line-height: 1; margin-top: 2px; }
.faq-icon.open { transform: rotate(45deg); }
.faq-answer { overflow: hidden; max-height: 0; transition: max-height 0.3s ease; }
.faq-answer.open { max-height: 500px; }
.faq-answer p { font-family: 'Lato', sans-serif; font-size: 0.9rem; color: var(--gray-300); line-height: 1.8; padding-bottom: 1.25rem; font-weight: 300; }




/* CONTACT */
.contact-info { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-item { display: flex; align-items: flex-start; gap: 1rem; text-decoration: none; }
.contact-icon { width: 3rem; height: 3rem; border: 1px solid rgba(201,168,76,0.4); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.contact-label { font-family: 'Lato', sans-serif; font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.2em; color: var(--gray-500); margin-bottom: 0.25rem; }
.contact-value { font-family: 'Lato', sans-serif; font-size: 0.9rem; color: var(--white); font-weight: 300; }
.contact-item:hover .contact-value { color: var(--gold); }
.social-links { display: flex; gap: 1.5rem; margin-top: 2.5rem; }
.social-links a { font-family: 'Lato', sans-serif; font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.2em; color: var(--gray-500); text-decoration: none; transition: color 0.2s; }
.social-links a:hover { color: var(--gold); }
.cta-card { background: var(--navy-dark); border: 1px solid rgba(201,168,76,0.2); padding: 2.5rem; }
.cta-card-title { font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 300; color: var(--white); margin-bottom: 0.5rem; }
.cta-card-sub { font-family: 'Lato', sans-serif; font-size: 0.8rem; color: var(--gray-400); font-weight: 300; margin-bottom: 2rem; }
.cta-checklist { list-style: none; display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2rem; }
.cta-checklist li { display: flex; align-items: center; gap: 0.75rem; font-family: 'Lato', sans-serif; font-size: 0.85rem; color: var(--gray-300); font-weight: 300; }
.cta-checklist li::before { content: "✓"; color: var(--gold); font-size: 0.85rem; }
.btn-gold-full { display: block; width: 100%; padding: 1rem; background: var(--gold); color: var(--navy); font-family: 'Lato', sans-serif; font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; text-align: center; text-decoration: none; transition: background 0.2s; }
.btn-gold-full:hover { background: var(--gold-light); }
.cta-note { text-align: center; font-family: 'Lato', sans-serif; font-size: 0.7rem; color: var(--gray-600); margin-top: 1rem; }


/* FOOTER */
footer { background: var(--navy-darker); border-top: 1px solid rgba(255,255,255,0.05); padding: 3rem 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 2rem; margin-bottom: 3rem; }
.footer-brand-name { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; font-weight: 600; color: var(--white); letter-spacing: 0.05em; }
.footer-brand-sub { font-family: 'Lato', sans-serif; font-size: 0.6rem; letter-spacing: 0.3em; color: var(--gold); text-transform: uppercase; font-weight: 300; }
.footer-desc { font-family: 'Lato', sans-serif; font-size: 0.8rem; color: var(--gray-500); line-height: 1.7; font-weight: 300; max-width: 320px; margin-top: 1rem; }
.footer-col-title { font-family: 'Lato', sans-serif; font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.2em; color: var(--white); margin-bottom: 1rem; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links a, .footer-links button { font-family: 'Lato', sans-serif; font-size: 0.8rem; color: var(--gray-500); text-decoration: none; background: none; border: none; cursor: pointer; text-align: left; transition: color 0.2s; font-weight: 300; }
.footer-links a:hover, .footer-links button:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.05); padding-top: 2rem; display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; }
.footer-copy { font-family: 'Lato', sans-serif; font-size: 0.7rem; color: var(--gray-600); font-weight: 300; }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { font-family: 'Lato', sans-serif; font-size: 0.7rem; color: var(--gray-600); text-decoration: none; transition: color 0.2s; }
.footer-legal a:hover { color: var(--gold); 
}
    
	
/* WHATSAPP FLOAT */
.whatsapp-float {
	position: fixed;
	bottom: 1.5rem;
	right: 1.5rem;
	z-index: 200;
	width: 3.5rem;
	height: 3.5rem;
	background: #25D366;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 20px rgba(37,211,102,0.3);
	transition: all 0.2s;
	text-decoration: none;
}
.whatsapp-float:hover { background: #20c05a; transform: scale(1.1); }



/* REVEAL */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }





/* RESPONSIVE */
@media (max-width: 1024px) {
	.grid-2 { grid-template-columns: 1fr; gap: 2rem; }
	.grid-3 { grid-template-columns: 1fr 1fr; }
	.stats-grid { grid-template-columns: repeat(2, 1fr); }
	.footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
	.nav-links { display: none; }
	.hamburger { display: flex; }
	.areas-grid { grid-template-columns: 1fr; }
	.grid-3 { grid-template-columns: 1fr; }
	.grid-4 { grid-template-columns: 1fr 1fr; }
	.footer-grid { grid-template-columns: 1fr; }
	.footer-bottom { flex-direction: column; text-align: center; }
	.stats-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
	.stats-grid { grid-template-columns: repeat(2, 1fr); }
	.hero-btns { flex-direction: column; align-items: center; }
}