/* =========================================================
   GuruMukhi Advisory — Design System
   Reuse these tokens/classes in Elementor (Custom CSS / Custom
   Classes) on every new page so nothing looks "off-brand".
   ========================================================= */

:root {
	--cream: #fffdec;
	--ink: #17150f;
	--ink-soft: #2a271d;
	--muted: #6b6455;
	--gold: #b8923c;
	--border: #e7e0c4;
	--white: #ffffff;
	--footer-bg: #100f0b;
	--footer-text: #cfcabd;

	--font-display: "Playfair Display", Georgia, serif;
	--font-body: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
	--font-mono: "IBM Plex Mono", ui-monospace, monospace;

	--wrap: 1220px;
	--radius: 4px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
	margin: 0;
	background: var(--cream);
	color: var(--ink);
	font-family: var(--font-body);
	font-size: 16px;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
button { font-family: inherit; cursor: pointer; }
.screen-reader-text { position: absolute; left: -9999px; }

.wrap {
	max-width: var(--wrap);
	margin: 0 auto;
	padding: 0 40px;
}

/* ---------- Typography ---------- */
.display-xl {
	font-family: var(--font-display);
	font-weight: 600;
	font-size: clamp(2.6rem, 4.6vw, 4.1rem);
	line-height: 1.08;
	letter-spacing: -0.01em;
	margin: 0 0 24px;
}
.display-lg {
	font-family: var(--font-display);
	font-weight: 600;
	font-size: clamp(2rem, 3.2vw, 2.9rem);
	line-height: 1.12;
	margin: 10px 0 16px;
}
.display-xl em, .display-lg em {
	font-style: italic;
	font-weight: 500;
}
.lead {
	color: var(--muted);
	font-size: 1.05rem;
	max-width: 46ch;
	margin: 0 0 32px;
}
.eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-family: var(--font-mono);
	text-transform: uppercase;
	letter-spacing: 0.14em;
	font-size: 0.72rem;
	color: var(--ink-soft);
	margin-bottom: 6px;
}
.eyebrow i {
	width: 22px;
	height: 1px;
	background: var(--gold);
	display: inline-block;
}
.eyebrow-mono {
	font-family: var(--font-mono);
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-size: 0.72rem;
	color: var(--ink-soft);
}
.fine-print { color: var(--muted); font-size: 0.82rem; margin: 4px 0 0; }

/* ---------- Buttons ---------- */
.btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 15px 26px;
	border-radius: var(--radius);
	font-weight: 600;
	font-size: 0.95rem;
	border: 1px solid transparent;
	transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease;
	white-space: nowrap;
}
.btn--dark { background: var(--ink); color: var(--cream); }
.btn--dark:hover { background: var(--ink-soft); }
.btn--outline { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn--outline:hover { background: var(--ink); color: var(--cream); }
.btn-row { display: flex; flex-wrap: wrap; gap: 16px; }

.link-more {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-weight: 600;
	border-bottom: 1px solid var(--ink);
	padding-bottom: 2px;
}

/* ---------- Cards ---------- */
.card {
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: var(--radius);
}

/* ---------- Header ---------- */
.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: var(--cream);
	border-bottom: 1px solid var(--border);
}
.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	height: 92px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand__mark { color: var(--gold); display: flex; }
.brand__text { display: flex; flex-direction: column; line-height: 1.2; }
.brand__name { font-family: var(--font-display); font-weight: 700; font-size: 1.2rem; }
.brand__sub { font-family: var(--font-mono); font-size: 0.62rem; letter-spacing: 0.18em; color: var(--muted); }

.primary-nav__list { display: flex; gap: 34px; }
.primary-nav__list a { font-weight: 500; font-size: 0.95rem; }
.primary-nav__list a:hover { color: var(--gold); }

.nav-toggle {
	display: none;
	flex-direction: column;
	gap: 5px;
	background: none;
	border: none;
	padding: 8px;
}
.nav-toggle span { width: 22px; height: 2px; background: var(--ink); display: block; }

/* ---------- Hero ---------- */
.hero { padding: 72px 0 96px; }
.hero__inner {
	display: grid;
	grid-template-columns: 1.05fr 1fr;
	gap: 64px;
	align-items: center;
}
.hero__chart { padding: 28px; }
.chart-svg { width: 100%; height: auto; }
.chart-label { font-family: var(--font-mono); font-size: 10px; fill: var(--muted); }
.hero__chart-foot {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	border-top: 1px solid var(--border);
	margin-top: 16px;
	padding-top: 16px;
	gap: 16px;
}
.pill {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: var(--gold);
	font-size: 0.85rem;
	font-weight: 600;
	white-space: nowrap;
}

/* ---------- Trust bar ---------- */
.trust-bar { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.trust-bar__inner {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
}
.trust-item {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	padding: 28px 24px;
	border-left: 1px solid var(--border);
}
.trust-item:first-child { border-left: none; }
.trust-item svg { color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.trust-item strong { display: block; font-size: 0.95rem; }
.trust-item span { display: block; color: var(--muted); font-size: 0.82rem; margin-top: 2px; }

/* ---------- Section spacing ---------- */
.section { padding: 96px 0; }
.section-head {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	gap: 24px;
	margin-bottom: 48px;
}
.section-head__note { color: var(--muted); max-width: 32ch; text-align: right; }

/* ---------- Philosophy ---------- */
.philosophy { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 64px; }
.philosophy__grid { display: grid; grid-template-columns: 1fr 1fr; }
.num-card {
	padding: 32px 32px 32px 0;
	border-top: 1px solid var(--border);
}
.philosophy__grid .num-card:nth-child(odd) { padding-right: 40px; border-right: 1px solid var(--border); padding-left:0; }
.philosophy__grid .num-card:nth-child(-n+2) { border-top: none; }
.philosophy__grid .num-card:nth-child(even) { padding-left: 40px; }
.num { font-family: var(--font-mono); color: var(--gold); font-size: 0.85rem; }
.num-card h3 { font-family: var(--font-display); font-weight: 600; font-size: 1.25rem; margin: 10px 0 10px; }
.num-card p { color: var(--muted); margin: 0; }

/* ---------- Services ---------- */
.services-card { padding: 56px; }
.services-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 44px 40px;
}
.service svg { color: var(--gold); margin-bottom: 18px; }
.service h3 { font-family: var(--font-display); font-weight: 600; font-size: 1.15rem; margin: 0 0 10px; }
.service p { color: var(--muted); margin: 0; font-size: 0.95rem; }

/* ---------- Resources ---------- */
.resources-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 28px;
}
.resource-card {
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 28px 24px;
}
.resource-card .tag {
	font-family: var(--font-mono);
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-size: 0.68rem;
	color: var(--gold);
}
.resource-card h3 {
	font-family: var(--font-display);
	font-weight: 600;
	font-size: 1.05rem;
	margin: 14px 0 0;
	line-height: 1.35;
}

/* ---------- Testimonials ---------- */
.testimonial-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
}
.testimonial-card {
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 32px;
}
.stars { color: var(--gold); letter-spacing: 3px; margin-bottom: 18px; }
.testimonial-card p { font-family: var(--font-display); font-style: italic; margin: 0 0 22px; line-height: 1.5; }
.testimonial-card strong { display: block; font-size: 0.95rem; }
.testimonial-card span { color: var(--muted); font-size: 0.82rem; }

/* ---------- Contact ---------- */
.contact { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 64px; }
.contact-list { margin-top: 28px; display: flex; flex-direction: column; gap: 14px; }
.contact-list li { display: flex; align-items: center; gap: 12px; }
.contact-list svg { color: var(--gold); }
.contact-card { padding: 40px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { margin-bottom: 20px; }
.field label {
	display: block;
	font-family: var(--font-mono);
	text-transform: uppercase;
	letter-spacing: 0.08em;
	font-size: 0.68rem;
	color: var(--muted);
	margin-bottom: 8px;
}
.field input, .field textarea {
	width: 100%;
	padding: 13px 14px;
	border: 1px solid var(--border);
	border-radius: var(--radius);
	background: var(--cream);
	font-family: var(--font-body);
	font-size: 0.95rem;
	color: var(--ink);
}
.field input:focus, .field textarea:focus {
	outline: 2px solid var(--gold);
	outline-offset: 1px;
}
.field textarea { resize: vertical; }
.form-success { color: #3f7a3f; font-weight: 600; margin-bottom: 18px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--footer-bg); color: var(--footer-text); padding-top: 72px; }
.site-footer__top {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr 1fr;
	gap: 40px;
	padding-bottom: 56px;
}
.brand--footer .brand__name { color: var(--white); }
.brand--footer .brand__sub { color: var(--gold); }
.footer-about p { color: var(--footer-text); font-size: 0.9rem; margin: 16px 0 20px; max-width: 34ch; }
.social-row { display: flex; gap: 10px; }
.social-row a {
	width: 34px; height: 34px;
	display: flex; align-items: center; justify-content: center;
	border: 1px solid #38352a;
	border-radius: var(--radius);
	color: var(--footer-text);
}
.footer-col h4 {
	font-family: var(--font-mono);
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-size: 0.72rem;
	color: var(--gold);
	margin: 0 0 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col a { font-size: 0.92rem; color: var(--footer-text); }
.footer-col a:hover { color: var(--white); }
.footer-contact li { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; }
.footer-contact svg { color: var(--gold); flex-shrink: 0; }

.disclaimer-box {
	border-left: 2px solid var(--gold);
	background: rgba(184, 146, 60, 0.06);
	padding: 18px 22px;
	font-size: 0.82rem;
	color: #a9a394;
	margin-bottom: 36px;
}
.disclaimer-box strong { color: var(--gold); font-weight: 600; }

.site-footer__bottom {
	border-top: 1px solid #26241c;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 22px 0;
	font-size: 0.85rem;
	color: #948e7d;
}
.footer-legal { display: flex; gap: 24px; }
.footer-legal a:hover { color: var(--white); }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1024px) {
	.services-grid, .resources-grid, .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
	.site-footer__top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
	.wrap { padding: 0 24px; }
	.hero__inner, .philosophy, .contact { grid-template-columns: 1fr; }
	.philosophy__grid { grid-template-columns: 1fr; }
	.philosophy__grid .num-card,
	.philosophy__grid .num-card:nth-child(odd),
	.philosophy__grid .num-card:nth-child(even) { border: none; padding: 24px 0; border-top: 1px solid var(--border); }
	.philosophy__grid .num-card:first-child { border-top: none; }
	.trust-bar__inner { grid-template-columns: repeat(2, 1fr); }
	.trust-item:nth-child(2n+1) { border-left: none; }

	.primary-nav {
		position: absolute;
		top: 92px; left: 0; right: 0;
		background: var(--cream);
		border-bottom: 1px solid var(--border);
		max-height: 0;
		overflow: hidden;
		transition: max-height 0.25s ease;
	}
	.primary-nav.is-open { max-height: 320px; }
	.primary-nav__list { flex-direction: column; gap: 0; padding: 8px 40px 20px; }
	.primary-nav__list li { border-bottom: 1px solid var(--border); }
	.primary-nav__list a { display: block; padding: 14px 0; }
	.site-header__cta { display: none; }
	.nav-toggle { display: flex; }
	.section-head { flex-direction: column; align-items: flex-start; }
	.section-head__note { text-align: left; }
}

@media (max-width: 600px) {
	.services-grid, .resources-grid, .testimonial-grid, .form-row { grid-template-columns: 1fr; }
	.services-card { padding: 32px 24px; }
	.site-footer__top { grid-template-columns: 1fr; }
	.site-footer__bottom { flex-direction: column; gap: 12px; text-align: center; }
	.section { padding: 64px 0; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	* { transition: none !important; }
}
