/* ==========================================================================
   Devraj Pathak – Founder theme
   main.css : tokens, base, layout, components, sections
   Breakpoints live in responsive.css
   ========================================================================== */

/* 1. Design tokens ------------------------------------------------------- */
:root {
	--dp-forest: #16302a;
	--dp-forest-2: #1f4237;
	--dp-forest-3: #2b5a4a;
	--dp-gold: #c39a4e;
	--dp-gold-2: #e3c68b;
	--dp-cream: #faf6ee;
	--dp-sand: #f1eadb;
	--dp-ink: #14201c;
	--dp-text: #33413b;
	--dp-muted: #62716a;
	--dp-line: #e4dccb;
	--dp-white: #ffffff;
	--dp-danger: #b3261e;
	--dp-success: #1e6b47;

	--dp-font-head: "Cormorant Garamond", Georgia, "Times New Roman", serif;
	--dp-font-body: "Manrope", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

	--dp-radius: 18px;
	--dp-radius-sm: 10px;
	--dp-shadow: 0 18px 50px -20px rgba(22, 48, 42, .28);
	--dp-shadow-sm: 0 6px 20px -10px rgba(22, 48, 42, .25);
	--dp-container: 1200px;
	--dp-gutter: 24px;
	--dp-section: 110px;
	--dp-header-h: 78px;
	--dp-ease: cubic-bezier(.2, .7, .2, 1);
}

/* 2. Base ----------------------------------------------------------------- */
*,
*::before,
*::after { box-sizing: border-box; }

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

body {
	margin: 0;
	font-family: var(--dp-font-body);
	font-size: 16px;
	line-height: 1.7;
	color: var(--dp-text);
	background: var(--dp-white);
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}

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

a { color: var(--dp-forest-3); text-decoration: none; transition: color .2s; }
a:hover { color: var(--dp-gold); }

h1, h2, h3, h4, h5, h6 {
	font-family: var(--dp-font-head);
	color: var(--dp-ink);
	line-height: 1.15;
	font-weight: 600;
	margin: 0 0 .5em;
}

p { margin: 0 0 1.1em; }
ul, ol { padding-left: 1.2em; }

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

:focus-visible { outline: 2px solid var(--dp-gold); outline-offset: 3px; }

[id] { scroll-margin-top: calc(var(--dp-header-h) + 12px); }

.screen-reader-text {
	position: absolute !important;
	width: 1px; height: 1px;
	padding: 0; margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}
.skip-link:focus {
	clip: auto; width: auto; height: auto;
	top: 10px; left: 10px; z-index: 1000;
	padding: 10px 18px;
	background: var(--dp-white); color: var(--dp-ink);
	border-radius: 8px; box-shadow: var(--dp-shadow-sm);
}

.dp-icon { width: 1.15em; height: 1.15em; flex-shrink: 0; }

/* 3. Layout helpers ------------------------------------------------------- */
.dp-container {
	width: 100%;
	max-width: calc(var(--dp-container) + var(--dp-gutter) * 2);
	margin: 0 auto;
	padding: 0 var(--dp-gutter);
}
.dp-container--narrow { max-width: calc(820px + var(--dp-gutter) * 2); }

.dp-section { padding: var(--dp-section) 0; position: relative; }
.dp-section--compact { padding: 60px 0 0; }
.dp-section--tint { background: var(--dp-cream); }
.dp-section--dark { background: var(--dp-forest); color: rgba(255, 255, 255, .78); }
.dp-section--dark h2,
.dp-section--dark h3 { color: var(--dp-white); }

.dp-section__head { max-width: 720px; margin: 0 auto 56px; text-align: center; }
.dp-section__head--left { margin: 0; text-align: left; }

.dp-eyebrow {
	display: inline-flex; align-items: center; gap: 10px;
	font-size: 12.5px; font-weight: 700;
	letter-spacing: .18em; text-transform: uppercase;
	color: var(--dp-gold);
	margin-bottom: 14px;
}
.dp-eyebrow::before { content: ""; width: 28px; height: 1px; background: currentColor; }
.dp-eyebrow--light { color: var(--dp-gold-2); }

.dp-title { font-size: clamp(34px, 4.2vw, 52px); letter-spacing: -.01em; }
.dp-lead { font-size: 18px; color: var(--dp-muted); }
.dp-section--dark .dp-lead { color: rgba(255, 255, 255, .72); }

/* 4. Buttons ------------------------------------------------------------- */
.dp-btn {
	display: inline-flex; align-items: center; justify-content: center; gap: 10px;
	padding: 15px 28px;
	border-radius: 999px;
	border: 1.5px solid transparent;
	font-weight: 700; font-size: 15px; line-height: 1.2;
	cursor: pointer;
	transition: transform .25s var(--dp-ease), background .25s, color .25s, border-color .25s, box-shadow .25s;
	text-align: center;
	white-space: nowrap;
}
.dp-btn:hover { transform: translateY(-2px); }
.dp-btn .dp-icon { width: 18px; height: 18px; }
.dp-btn--sm { padding: 11px 20px; font-size: 14px; }

.dp-btn--primary { background: var(--dp-forest); color: var(--dp-white); box-shadow: var(--dp-shadow-sm); }
.dp-btn--primary:hover { background: var(--dp-forest-3); color: var(--dp-white); }

.dp-btn--gold { background: var(--dp-gold); color: var(--dp-ink); }
.dp-btn--gold:hover { background: var(--dp-gold-2); color: var(--dp-ink); }

.dp-btn--ghost { border-color: rgba(255, 255, 255, .55); color: var(--dp-white); background: rgba(255, 255, 255, .06); }
.dp-btn--ghost:hover { background: var(--dp-white); color: var(--dp-forest); border-color: var(--dp-white); }

.dp-btn--outline { border-color: var(--dp-forest); color: var(--dp-forest); background: transparent; }
.dp-btn--outline:hover { background: var(--dp-forest); color: var(--dp-white); }

.dp-btn[disabled] { opacity: .6; cursor: wait; transform: none; }

/* 5. Top bar + header ---------------------------------------------------- */
.dp-topbar { background: var(--dp-forest); color: rgba(255, 255, 255, .8); font-size: 13.5px; }
.dp-topbar__inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; min-height: 42px; }
.dp-topbar__contact { display: flex; flex-wrap: wrap; gap: 6px 26px; }
.dp-topbar__contact a,
.dp-topbar__contact > span { display: inline-flex; align-items: center; gap: 8px; color: inherit; }
.dp-topbar__contact a:hover { color: var(--dp-gold-2); }
.dp-topbar .dp-icon { width: 15px; height: 15px; color: var(--dp-gold-2); }

.dp-header {
	position: sticky; top: 0; z-index: 100;
	background: rgba(255, 255, 255, .92);
	backdrop-filter: saturate(160%) blur(12px);
	-webkit-backdrop-filter: saturate(160%) blur(12px);
	border-bottom: 1px solid transparent;
	transition: box-shadow .3s, border-color .3s;
}
.admin-bar .dp-header { top: 32px; }
.dp-header.is-scrolled { box-shadow: 0 10px 30px -18px rgba(0, 0, 0, .25); border-color: var(--dp-line); }
.dp-header__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; min-height: var(--dp-header-h); }

.dp-brand { display: flex; align-items: center; gap: 12px; color: var(--dp-ink); }
.dp-brand:hover { color: var(--dp-ink); }
.dp-brand__logo { max-height: 52px; width: auto; }
.dp-brand__mark {
	display: grid; place-items: center;
	width: 46px; height: 46px; border-radius: 50%;
	background: var(--dp-forest); color: var(--dp-gold-2);
	font-family: var(--dp-font-head); font-weight: 700; font-size: 20px; letter-spacing: .04em;
	box-shadow: inset 0 0 0 2px var(--dp-forest), inset 0 0 0 3.5px var(--dp-gold);
}
.dp-brand__text { display: flex; flex-direction: column; line-height: 1.15; }
.dp-brand__name { font-family: var(--dp-font-head); font-size: 24px; font-weight: 700; }
.dp-brand__role { font-size: 11.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--dp-muted); }

/* Navigation (desktop) */
.dp-nav { display: flex; align-items: center; gap: 22px; }
.dp-menu { list-style: none; margin: 0; padding: 0; display: flex; align-items: center; gap: 2px; }
.dp-menu li { position: relative; }
.dp-menu > li > a {
	display: flex; align-items: center; gap: 4px;
	padding: 10px 14px;
	font-weight: 600; font-size: 15px;
	color: var(--dp-ink);
	border-radius: 999px;
}
.dp-menu > li > a:hover,
.dp-menu > li.current-menu-item > a,
.dp-menu > li.is-active > a { color: var(--dp-forest-3); background: var(--dp-cream); }

.dp-menu .menu-item-has-children > a::after {
	content: ""; width: 7px; height: 7px; margin-left: 4px; margin-top: -3px;
	border-right: 1.7px solid currentColor; border-bottom: 1.7px solid currentColor;
	transform: rotate(45deg); transition: transform .2s;
}

.dp-menu .sub-menu {
	list-style: none; margin: 0; padding: 10px;
	position: absolute; top: 100%; left: 0; min-width: 260px;
	background: var(--dp-white);
	border: 1px solid var(--dp-line);
	border-radius: 14px;
	box-shadow: var(--dp-shadow);
	opacity: 0; visibility: hidden; transform: translateY(8px);
	transition: opacity .2s, transform .2s, visibility .2s;
	z-index: 20;
}
.dp-menu .sub-menu .sub-menu { top: -10px; left: 100%; }
.dp-menu li:hover > .sub-menu,
.dp-menu li:focus-within > .sub-menu,
.dp-menu li.is-open > .sub-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dp-menu .sub-menu a {
	display: block; padding: 10px 14px; border-radius: 8px;
	font-size: 14.5px; font-weight: 500; color: var(--dp-text);
}
.dp-menu .sub-menu a:hover { background: var(--dp-cream); color: var(--dp-forest); }

.dp-submenu-toggle { display: none; }

.dp-nav-toggle {
	display: none;
	width: 46px; height: 46px; border-radius: 50%;
	border: 1px solid var(--dp-line); background: var(--dp-white);
	cursor: pointer; align-items: center; justify-content: center;
}
.dp-nav-toggle__bars { position: relative; width: 20px; height: 14px; }
.dp-nav-toggle__bars span {
	position: absolute; left: 0; width: 100%; height: 2px; border-radius: 2px;
	background: var(--dp-ink); transition: transform .3s, opacity .2s, top .3s;
}
.dp-nav-toggle__bars span:nth-child(1) { top: 0; }
.dp-nav-toggle__bars span:nth-child(2) { top: 6px; }
.dp-nav-toggle__bars span:nth-child(3) { top: 12px; }
.dp-nav-toggle[aria-expanded="true"] .dp-nav-toggle__bars span:nth-child(1) { top: 6px; transform: rotate(45deg); }
.dp-nav-toggle[aria-expanded="true"] .dp-nav-toggle__bars span:nth-child(2) { opacity: 0; }
.dp-nav-toggle[aria-expanded="true"] .dp-nav-toggle__bars span:nth-child(3) { top: 6px; transform: rotate(-45deg); }

/* Social icons */
.dp-social { list-style: none; margin: 0; padding: 0; display: flex; gap: 10px; }
.dp-social a {
	display: grid; place-items: center;
	width: 40px; height: 40px; border-radius: 50%;
	border: 1px solid rgba(255, 255, 255, .22);
	color: var(--dp-white);
	transition: background .2s, color .2s, border-color .2s;
}
.dp-social a:hover { background: var(--dp-gold); border-color: var(--dp-gold); color: var(--dp-ink); }
.dp-social .dp-icon { width: 18px; height: 18px; }
.dp-social--small { gap: 4px; }
.dp-social--small a { width: 30px; height: 30px; border: 0; color: rgba(255, 255, 255, .8); }
.dp-social--small .dp-icon { width: 15px; height: 15px; }
.dp-social a[data-placeholder] { opacity: .55; }

/* 6. Hero ---------------------------------------------------------------- */
.dp-hero {
	position: relative;
	padding: 90px 0 0;
	color: var(--dp-white);
	background: var(--dp-forest) var(--dp-hero-bg) center / cover no-repeat;
	isolation: isolate;
}
.dp-hero__overlay {
	position: absolute; inset: 0; z-index: -1;
	background:
		linear-gradient(100deg, rgba(14, 33, 28, .94) 0%, rgba(14, 33, 28, .82) 45%, rgba(14, 33, 28, .45) 100%),
		linear-gradient(0deg, rgba(14, 33, 28, .6), transparent 40%);
}
.dp-hero__inner {
	display: grid; grid-template-columns: 1.15fr .85fr; gap: 60px; align-items: center;
	padding-bottom: 120px;
}
.dp-hero__title {
	font-size: clamp(52px, 7.5vw, 96px);
	line-height: .98; color: var(--dp-white);
	letter-spacing: -.02em; margin-bottom: 22px;
}
.dp-hero__lead { font-size: 19px; line-height: 1.7; color: rgba(255, 255, 255, .82); max-width: 600px; margin-bottom: 34px; }
.dp-hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 40px; }
.dp-hero__companies { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 10px; }
.dp-hero__companies a {
	display: inline-flex; align-items: center; gap: 10px;
	padding: 6px 16px 6px 6px; border-radius: 999px;
	background: rgba(255, 255, 255, .08); border: 1px solid rgba(255, 255, 255, .16);
	color: var(--dp-white); font-size: 13.5px; font-weight: 600;
	transition: background .2s;
}
.dp-hero__companies a:hover { background: rgba(255, 255, 255, .18); color: var(--dp-white); }
.dp-hero__companies img { width: 32px; height: 32px; border-radius: 50%; object-fit: contain; background: var(--dp-white); padding: 2px; }

.dp-hero__portrait { position: relative; margin: 0; justify-self: end; max-width: 440px; width: 100%; }
.dp-hero__portrait::before {
	content: ""; position: absolute; inset: -16px 16px 16px -16px;
	border: 1.5px solid var(--dp-gold); border-radius: 220px 220px var(--dp-radius) var(--dp-radius);
}
.dp-hero__portrait img {
	position: relative;
	width: 100%; aspect-ratio: 3 / 4; object-fit: cover; object-position: 50% 20%;
	border-radius: 220px 220px var(--dp-radius) var(--dp-radius);
	box-shadow: 0 30px 80px -30px rgba(0, 0, 0, .6);
}
.dp-hero__badge {
	position: absolute; left: -34px; bottom: 40px;
	display: flex; align-items: center; gap: 12px;
	padding: 14px 18px; border-radius: 14px;
	background: var(--dp-white); color: var(--dp-text);
	font-size: 13.5px; line-height: 1.35; max-width: 230px;
	box-shadow: var(--dp-shadow);
}
.dp-hero__badge .dp-icon { width: 34px; height: 34px; padding: 7px; border-radius: 50%; background: var(--dp-sand); color: var(--dp-gold); }
.dp-hero__badge strong { display: block; font-size: 17px; color: var(--dp-ink); }

.dp-stats {
	display: grid; grid-template-columns: repeat(4, 1fr);
	margin: 0; transform: translateY(50%);
	background: var(--dp-white); color: var(--dp-text);
	border-radius: var(--dp-radius); box-shadow: var(--dp-shadow);
	position: relative; z-index: 2;
}
.dp-stats > div { padding: 30px 24px; text-align: center; border-left: 1px solid var(--dp-line); }
.dp-stats > div:first-child { border-left: 0; }
.dp-stats dt { font-family: var(--dp-font-head); font-size: 44px; font-weight: 700; line-height: 1; color: var(--dp-forest); }
.dp-stats dd { margin: 8px 0 0; font-size: 14px; color: var(--dp-muted); }

/* 7. About -------------------------------------------------------------- */
.dp-about { padding-top: calc(var(--dp-section) + 70px); }
.dp-about__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.dp-about__media { position: relative; padding: 0 60px 70px 0; }
.dp-about__img { width: 100%; border-radius: var(--dp-radius); object-fit: cover; aspect-ratio: 4 / 3.4; box-shadow: var(--dp-shadow); }
.dp-about__img--small {
	position: absolute; right: 0; bottom: 0; width: 52%; aspect-ratio: 4 / 3;
	border: 8px solid var(--dp-white);
}
.dp-quote {
	margin: 30px 0 0; padding: 26px 28px;
	background: var(--dp-cream); border-left: 3px solid var(--dp-gold);
	border-radius: 0 var(--dp-radius-sm) var(--dp-radius-sm) 0;
}
.dp-quote p { font-family: var(--dp-font-head); font-size: 22px; font-style: italic; line-height: 1.45; color: var(--dp-ink); margin-bottom: 10px; }
.dp-quote cite { font-style: normal; font-size: 13px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--dp-gold); }

.dp-pillars { list-style: none; margin: 80px 0 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.dp-pillar {
	padding: 34px 30px; border: 1px solid var(--dp-line); border-radius: var(--dp-radius);
	transition: transform .3s var(--dp-ease), box-shadow .3s, border-color .3s;
}
.dp-pillar:hover { transform: translateY(-4px); box-shadow: var(--dp-shadow); border-color: transparent; }
.dp-pillar__icon,
.dp-service__icon,
.dp-features__icon,
.dp-contact__icon {
	display: grid; place-items: center; flex-shrink: 0;
	width: 54px; height: 54px; border-radius: 14px;
	background: var(--dp-sand); color: var(--dp-forest-3);
	margin-bottom: 18px;
}
.dp-pillar__icon .dp-icon { width: 26px; height: 26px; }
.dp-pillar h3 { font-size: 25px; }
.dp-pillar p { margin: 0; color: var(--dp-muted); }

/* 8. Companies ---------------------------------------------------------- */
.dp-company {
	display: grid; grid-template-columns: 1fr 1fr; align-items: stretch;
	background: var(--dp-white); border-radius: calc(var(--dp-radius) + 6px);
	overflow: hidden; box-shadow: var(--dp-shadow);
	margin-bottom: 40px;
}
.dp-company:last-child { margin-bottom: 0; }
.dp-company:nth-of-type(even) .dp-company__media { order: 2; }
.dp-company__media { min-height: 420px; position: relative; }
.dp-company__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.dp-company__body { padding: 52px 54px; }
.dp-company__brand { display: flex; align-items: center; gap: 16px; margin-bottom: 18px; }
.dp-company__brand img { width: 56px; height: 56px; object-fit: contain; border-radius: 50%; border: 1px solid var(--dp-line); padding: 3px; background: var(--dp-white); }
#company-school .dp-company__brand img { border-radius: 12px; width: 92px; }
.dp-company__name { font-size: 32px; margin: 0; }
.dp-company__legal { margin: 0; font-size: 13px; color: var(--dp-muted); }
.dp-company__tagline { font-family: var(--dp-font-head); font-size: 22px; font-style: italic; color: var(--dp-gold); margin-bottom: 12px; }

.dp-checklist { list-style: none; padding: 0; margin: 0 0 26px; display: grid; gap: 8px; }
.dp-checklist li { display: flex; align-items: center; gap: 10px; font-weight: 600; color: var(--dp-ink); }
.dp-checklist .dp-icon { width: 22px; height: 22px; padding: 4px; border-radius: 50%; background: var(--dp-forest); color: var(--dp-gold-2); }

.dp-company__stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin: 0 0 30px; }
.dp-company__stats > div { padding: 14px; border-radius: 12px; background: var(--dp-cream); text-align: center; }
.dp-company__stats dt { font-family: var(--dp-font-head); font-weight: 700; font-size: 26px; color: var(--dp-forest); line-height: 1.1; }
.dp-company__stats dd { margin: 4px 0 0; font-size: 12.5px; color: var(--dp-muted); line-height: 1.3; }
.dp-company__actions { display: flex; flex-wrap: wrap; gap: 12px; }

/* 9. Programme cards ---------------------------------------------------- */
.dp-program-grid { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.dp-program:first-child { grid-column: span 2; }
.dp-program a {
	position: relative; display: flex; align-items: flex-end;
	min-height: 360px; height: 100%;
	border-radius: var(--dp-radius); overflow: hidden;
	color: var(--dp-white); isolation: isolate;
}
.dp-program img {
	position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2;
	transition: transform .8s var(--dp-ease);
}
.dp-program a::before {
	content: ""; position: absolute; inset: 0; z-index: -1;
	background: linear-gradient(180deg, rgba(14, 33, 28, 0) 25%, rgba(14, 33, 28, .92) 100%);
}
.dp-program a:hover img { transform: scale(1.06); }
.dp-program__body { display: flex; flex-direction: column; gap: 6px; padding: 26px; }
.dp-program__count {
	align-self: flex-start;
	padding: 4px 12px; border-radius: 999px;
	background: rgba(255, 255, 255, .16); backdrop-filter: blur(6px);
	font-size: 12px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
}
.dp-program__title { font-family: var(--dp-font-head); font-size: 30px; font-weight: 600; line-height: 1.1; }
.dp-program__text { font-size: 14.5px; color: rgba(255, 255, 255, .8); line-height: 1.55; }
.dp-program__link { display: inline-flex; align-items: center; gap: 8px; margin-top: 6px; font-weight: 700; color: var(--dp-gold-2); font-size: 14px; }
.dp-program a:hover .dp-program__link .dp-icon { transform: translateX(4px); }
.dp-program__link .dp-icon { transition: transform .2s; }

/* 10. Course catalogue -------------------------------------------------- */
.dp-filters { display: flex; flex-direction: column; align-items: center; gap: 18px; margin-bottom: 18px; }
.dp-tabs {
	display: inline-flex; flex-wrap: wrap; justify-content: center; gap: 4px;
	padding: 5px; border-radius: 999px; background: var(--dp-white); border: 1px solid var(--dp-line);
}
.dp-tab {
	border: 0; background: transparent; cursor: pointer;
	padding: 11px 22px; border-radius: 999px;
	font-weight: 700; font-size: 14.5px; color: var(--dp-muted);
	transition: background .2s, color .2s;
}
.dp-tab:hover { color: var(--dp-forest); }
.dp-tab.is-active { background: var(--dp-forest); color: var(--dp-white); }

.dp-chips { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; }
.dp-chip {
	border: 1px solid var(--dp-line); background: var(--dp-white); cursor: pointer;
	padding: 8px 16px; border-radius: 999px;
	font-size: 13.5px; font-weight: 600; color: var(--dp-text);
	transition: all .2s;
}
.dp-chip:hover { border-color: var(--dp-gold); color: var(--dp-forest); }
.dp-chip.is-active { background: var(--dp-gold); border-color: var(--dp-gold); color: var(--dp-ink); }

.dp-course-count { text-align: center; font-size: 14px; color: var(--dp-muted); margin-bottom: 28px; min-height: 1.5em; }

.dp-course-grid { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.dp-course {
	display: flex; flex-direction: column;
	padding: 26px; border-radius: var(--dp-radius);
	background: var(--dp-white); border: 1px solid var(--dp-line);
	transition: transform .3s var(--dp-ease), box-shadow .3s, border-color .3s;
	animation: dp-fade-up .45s var(--dp-ease) both;
}
.dp-course:hover { transform: translateY(-4px); box-shadow: var(--dp-shadow); border-color: transparent; }
.dp-course[hidden] { display: none; }
.dp-course__top { display: flex; justify-content: space-between; align-items: center; gap: 10px; margin-bottom: 14px; }
.dp-course__cat { font-size: 11.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--dp-gold); }
.dp-course__school {
	flex-shrink: 0; padding: 3px 10px; border-radius: 999px;
	font-size: 11.5px; font-weight: 700;
}
.dp-course__school--school { background: #e8f1ea; color: #2a6a3f; }
.dp-course__school--yogshala { background: #f5ecda; color: #8a6420; }
.dp-course__title { font-size: 23px; line-height: 1.2; margin-bottom: 12px; }
.dp-course__meta { list-style: none; padding: 0; margin: 0 0 20px; display: flex; flex-wrap: wrap; gap: 6px 16px; font-size: 14px; color: var(--dp-muted); }
.dp-course__meta li { display: inline-flex; align-items: center; gap: 6px; }
.dp-course__meta .dp-icon { width: 16px; height: 16px; color: var(--dp-forest-3); }
.dp-course__foot { margin-top: auto; padding-top: 18px; border-top: 1px dashed var(--dp-line); display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.dp-course__price { margin: 0; font-family: var(--dp-font-head); font-weight: 700; font-size: 26px; color: var(--dp-forest); line-height: 1; }
.dp-course__price small { font-family: var(--dp-font-body); font-size: 12px; font-weight: 600; color: var(--dp-muted); }
.dp-course__price--ask { font-family: var(--dp-font-body); font-size: 13.5px; font-weight: 600; color: var(--dp-muted); }
.dp-course__link { display: inline-flex; align-items: center; gap: 6px; font-weight: 700; font-size: 14px; color: var(--dp-forest); white-space: nowrap; }
.dp-course__link .dp-icon { width: 16px; height: 16px; transition: transform .2s; }
.dp-course__link:hover .dp-icon { transform: translateX(4px); }

.dp-course-empty { text-align: center; padding: 40px; color: var(--dp-muted); }
.dp-courses__more { text-align: center; margin-top: 36px; }
.dp-courses__more [hidden] { display: none; }
.dp-courses__note { max-width: 780px; margin: 40px auto 0; text-align: center; font-size: 14px; color: var(--dp-muted); }
.dp-courses__note a { font-weight: 700; }

/* 11. Digital services -------------------------------------------------- */
.dp-digital { overflow: hidden; }
.dp-digital::before {
	content: ""; position: absolute; right: -200px; top: -200px; width: 600px; height: 600px; border-radius: 50%;
	background: radial-gradient(circle, rgba(195, 154, 78, .18), transparent 70%);
	pointer-events: none;
}
.dp-digital__head { display: flex; justify-content: space-between; align-items: flex-end; gap: 40px; margin-bottom: 56px; }
.dp-digital__head .dp-section__head { max-width: 640px; }
.dp-digital__actions { display: flex; flex-wrap: wrap; gap: 12px; flex-shrink: 0; }

.dp-service-grid { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; position: relative; }
.dp-service {
	display: flex; flex-direction: column;
	padding: 30px 26px; border-radius: var(--dp-radius);
	background: rgba(255, 255, 255, .04); border: 1px solid rgba(255, 255, 255, .1);
	transition: background .3s, transform .3s var(--dp-ease), border-color .3s;
}
.dp-service:hover { background: rgba(255, 255, 255, .08); border-color: rgba(227, 198, 139, .4); transform: translateY(-4px); }
.dp-service__icon { background: rgba(227, 198, 139, .14); color: var(--dp-gold-2); }
.dp-service__icon .dp-icon { width: 26px; height: 26px; }
.dp-service h3 { font-size: 24px; }
.dp-service p { font-size: 14.5px; margin-bottom: 18px; }
.dp-service a:not(.dp-btn) { margin-top: auto; display: inline-flex; align-items: center; gap: 6px; font-weight: 700; font-size: 14px; color: var(--dp-gold-2); }
.dp-service a:not(.dp-btn):hover { color: var(--dp-white); }
.dp-service a .dp-icon { width: 16px; height: 16px; }
.dp-service--cta { background: var(--dp-gold); border-color: var(--dp-gold); color: var(--dp-ink); justify-content: center; }
.dp-service--cta:hover { background: var(--dp-gold-2); }
.dp-service--cta h3 { color: var(--dp-ink); }
.dp-service--cta .dp-btn { align-self: flex-start; background: var(--dp-forest); color: var(--dp-white); }
.dp-service--cta .dp-btn:hover { background: var(--dp-ink); color: var(--dp-white); }

/* 12. Experience -------------------------------------------------------- */
.dp-experience__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.dp-features { list-style: none; padding: 0; margin: 36px 0 0; display: grid; gap: 26px; }
.dp-features li { display: flex; gap: 20px; }
.dp-features__icon { margin: 0; }
.dp-features__icon .dp-icon { width: 24px; height: 24px; }
.dp-features h3 { font-size: 23px; margin-bottom: 4px; }
.dp-features p { margin: 0; color: var(--dp-muted); }

.dp-experience__gallery { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 220px 220px; gap: 16px; }
.dp-experience__gallery img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--dp-radius); }
.dp-experience__gallery img:first-child { grid-column: 1 / -1; }

/* 13. CTA band ---------------------------------------------------------- */
.dp-cta {
	position: relative; padding: 110px 0; text-align: center; color: var(--dp-white);
	background: var(--dp-forest) var(--dp-cta-bg) center / cover no-repeat; isolation: isolate;
}
.dp-cta::before { content: ""; position: absolute; inset: 0; z-index: -1; background: rgba(14, 33, 28, .78); }
.dp-cta h2 { color: var(--dp-white); font-size: clamp(34px, 4.5vw, 56px); }
.dp-cta p { font-size: 18px; color: rgba(255, 255, 255, .8); max-width: 560px; margin: 0 auto 32px; }
.dp-cta__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; }

/* 14. Contact ----------------------------------------------------------- */
.dp-contact__grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 70px; align-items: start; }
.dp-contact__list { list-style: none; padding: 0; margin: 34px 0; display: grid; gap: 18px; }
.dp-contact__list li { display: flex; align-items: center; gap: 16px; }
.dp-contact__icon { margin: 0; }
.dp-contact__icon .dp-icon { width: 22px; height: 22px; }
.dp-contact__list small { display: block; font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--dp-muted); font-weight: 700; }
.dp-contact__list a,
.dp-contact__list span:not(.dp-contact__icon) { font-weight: 700; font-size: 17px; color: var(--dp-ink); word-break: break-word; }
.dp-contact__list a:hover { color: var(--dp-gold); }

.dp-contact__social { display: flex; flex-wrap: wrap; gap: 12px; }
.dp-social-btn {
	display: inline-flex; align-items: center; gap: 10px;
	padding: 12px 20px; border-radius: 999px;
	font-weight: 700; font-size: 14px; color: var(--dp-white);
	transition: transform .2s, opacity .2s;
}
.dp-social-btn:hover { transform: translateY(-2px); color: var(--dp-white); }
.dp-social-btn .dp-icon { width: 18px; height: 18px; }
.dp-social-btn--instagram { background: linear-gradient(45deg, #f09433, #dc2743 50%, #bc1888); }
.dp-social-btn--facebook { background: #1877f2; }
.dp-social-btn.is-placeholder { opacity: .55; cursor: default; }
.dp-social-btn.is-placeholder:hover { transform: none; }

.dp-contact__card {
	padding: 44px; border-radius: calc(var(--dp-radius) + 6px);
	background: var(--dp-cream); border: 1px solid var(--dp-line);
}
.dp-contact__card h3 { font-size: 30px; margin-bottom: 24px; }

/* Form */
.dp-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.dp-field { margin-bottom: 18px; }
.dp-field label { display: block; margin-bottom: 7px; font-size: 13.5px; font-weight: 700; color: var(--dp-ink); }
.dp-field label span { color: var(--dp-gold); }
.dp-field input,
.dp-field select,
.dp-field textarea,
.dp-search input {
	width: 100%; padding: 14px 16px;
	border: 1.5px solid var(--dp-line); border-radius: 12px;
	background: var(--dp-white); color: var(--dp-ink);
	font-size: 15px; line-height: 1.4;
	transition: border-color .2s, box-shadow .2s;
	-webkit-appearance: none; appearance: none;
}
.dp-field textarea { resize: vertical; min-height: 130px; }
.dp-field input:focus,
.dp-field select:focus,
.dp-field textarea:focus,
.dp-search input:focus { outline: none; border-color: var(--dp-forest-3); box-shadow: 0 0 0 4px rgba(43, 90, 74, .12); }
.dp-field.has-error input,
.dp-field.has-error textarea { border-color: var(--dp-danger); }
.dp-select { position: relative; }
.dp-select::after {
	content: ""; position: absolute; right: 18px; top: 50%; width: 8px; height: 8px; margin-top: -6px;
	border-right: 2px solid var(--dp-muted); border-bottom: 2px solid var(--dp-muted);
	transform: rotate(45deg); pointer-events: none;
}
.dp-select select { padding-right: 44px; cursor: pointer; }
.dp-hp { position: absolute !important; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.dp-form__footer { display: flex; flex-wrap: wrap; align-items: center; gap: 16px; }
.dp-form__status { margin: 0; font-size: 14.5px; font-weight: 600; flex: 1 1 220px; }
.dp-form__status.is-success { color: var(--dp-success); }
.dp-form__status.is-error { color: var(--dp-danger); }

/* 15. Footer ------------------------------------------------------------ */
.dp-footer { background: #0f231e; color: rgba(255, 255, 255, .66); padding-top: 90px; font-size: 15px; }
.dp-footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1.1fr 1.3fr; gap: 50px; padding-bottom: 60px; }
.dp-footer__name { font-family: var(--dp-font-head); font-size: 32px; font-weight: 700; color: var(--dp-white); margin-bottom: 12px; }
.dp-footer__brand p { max-width: 340px; }
.dp-footer__brand .dp-social { margin-top: 24px; }
.dp-footer__title { font-family: var(--dp-font-body); font-size: 13px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--dp-gold-2); margin-bottom: 20px; }
.dp-footer-menu,
.dp-footer-contact { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.dp-footer a { color: rgba(255, 255, 255, .72); }
.dp-footer a:hover { color: var(--dp-gold-2); }
.dp-footer-contact li { display: flex; gap: 10px; align-items: flex-start; }
.dp-footer-contact .dp-icon { margin-top: 4px; color: var(--dp-gold-2); width: 16px; height: 16px; }
.dp-footer-contact a { word-break: break-word; }
.dp-footer__bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 10px; padding-top: 26px; padding-bottom: 26px; border-top: 1px solid rgba(255, 255, 255, .1); font-size: 13.5px; }
.dp-footer__bottom p { margin: 0; }

/* Floating buttons */
.dp-whatsapp-float,
.dp-to-top {
	position: fixed; right: 22px; z-index: 90;
	display: grid; place-items: center;
	border-radius: 50%; border: 0; cursor: pointer;
	box-shadow: 0 12px 30px -10px rgba(0, 0, 0, .4);
	transition: transform .25s var(--dp-ease), opacity .25s, visibility .25s;
}
.dp-whatsapp-float { bottom: 22px; width: 58px; height: 58px; background: #25d366; color: var(--dp-white); }
.dp-whatsapp-float:hover { transform: scale(1.08); color: var(--dp-white); }
.dp-whatsapp-float .dp-icon { width: 28px; height: 28px; }
.dp-to-top { bottom: 92px; width: 44px; height: 44px; background: var(--dp-forest); color: var(--dp-white); opacity: 0; visibility: hidden; }
.dp-to-top.is-visible { opacity: 1; visibility: visible; }
.dp-to-top:hover { transform: translateY(-3px); }

/* 16. Inner pages, blog, WordPress content ------------------------------ */
.dp-page-hero {
	position: relative; padding: 90px 0 80px; text-align: center; color: var(--dp-white);
	background: var(--dp-forest) var(--dp-hero-bg) center / cover no-repeat; isolation: isolate;
}
.dp-page-hero::before { content: ""; position: absolute; inset: 0; z-index: -1; background: rgba(14, 33, 28, .82); }
.dp-page-hero__title { color: var(--dp-white); font-size: clamp(36px, 5vw, 60px); margin: 0; }
.dp-page-hero__sub { max-width: 680px; margin: 14px auto 0; color: rgba(255, 255, 255, .78); }
.dp-page-hero__sub p { margin: 0; }
.dp-page-hero .dp-post-meta { color: var(--dp-gold-2); }

.dp-layout { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: 60px; align-items: start; }
.dp-layout__side { position: sticky; top: calc(var(--dp-header-h) + 24px); display: grid; gap: 24px; }
.dp-layout__side .widget { padding: 28px; border-radius: var(--dp-radius); background: var(--dp-cream); border: 1px solid var(--dp-line); }
.dp-layout__side .widget ul { padding-left: 1em; margin: 0; }
.widget-title { font-size: 24px; }
.dp-founder-card img { width: 100%; aspect-ratio: 1; object-fit: cover; object-position: 50% 20%; border-radius: 12px; margin-bottom: 18px; }

.dp-post-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.dp-post-card { border-radius: var(--dp-radius); overflow: hidden; background: var(--dp-white); border: 1px solid var(--dp-line); display: flex; flex-direction: column; transition: box-shadow .3s, transform .3s; }
.dp-post-card:hover { box-shadow: var(--dp-shadow); transform: translateY(-3px); }
.dp-post-card__media img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.dp-post-card__body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.dp-post-card__title { font-size: 26px; }
.dp-post-card__title a { color: var(--dp-ink); }
.dp-post-card__title a:hover { color: var(--dp-forest-3); }
.dp-post-card__excerpt { color: var(--dp-muted); font-size: 15px; }
.dp-post-card .dp-course__link { margin-top: auto; }
.dp-post-meta { font-size: 13px; font-weight: 600; letter-spacing: .05em; color: var(--dp-gold); margin-bottom: 8px; }

.dp-entry { font-size: 17px; }
.dp-entry > * + * { margin-top: 1.1em; }
.dp-entry h2 { font-size: 36px; margin-top: 1.4em; }
.dp-entry h3 { font-size: 28px; margin-top: 1.3em; }
.dp-entry img { border-radius: 12px; }
.dp-entry blockquote { margin: 1.5em 0; padding: 20px 26px; border-left: 3px solid var(--dp-gold); background: var(--dp-cream); font-family: var(--dp-font-head); font-size: 22px; font-style: italic; }
.dp-entry table { width: 100%; border-collapse: collapse; }
.dp-entry th,
.dp-entry td { border: 1px solid var(--dp-line); padding: 10px 12px; text-align: left; }
.dp-entry__thumb { margin: 0 0 30px; }
.dp-entry__thumb img { width: 100%; border-radius: var(--dp-radius); }
.dp-entry__footer { margin-top: 50px; padding-top: 30px; border-top: 1px solid var(--dp-line); }
.dp-entry--full > * { max-width: none; }
.dp-tags a { display: inline-block; padding: 4px 12px; margin: 0 6px 6px 0; border-radius: 999px; background: var(--dp-cream); font-size: 13px; }
.post-navigation .nav-links { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.post-navigation a { display: block; padding: 18px; border: 1px solid var(--dp-line); border-radius: 12px; color: var(--dp-ink); font-weight: 600; }
.post-navigation a span { display: block; font-size: 12px; text-transform: uppercase; letter-spacing: .1em; color: var(--dp-gold); }
.post-navigation .nav-next { text-align: right; }

.pagination { margin-top: 50px; }
.pagination .nav-links { display: flex; flex-wrap: wrap; gap: 8px; }
.page-numbers { display: grid; place-items: center; min-width: 44px; height: 44px; padding: 0 12px; border-radius: 999px; border: 1px solid var(--dp-line); color: var(--dp-ink); font-weight: 600; }
.page-numbers.current,
a.page-numbers:hover { background: var(--dp-forest); border-color: var(--dp-forest); color: var(--dp-white); }

.dp-search { position: relative; display: flex; max-width: 480px; }
.dp-search input { padding-right: 54px; }
.dp-search button { position: absolute; right: 6px; top: 50%; transform: translateY(-50%); width: 40px; height: 40px; border: 0; border-radius: 10px; background: var(--dp-forest); color: var(--dp-white); cursor: pointer; display: grid; place-items: center; }
.dp-search button .dp-icon { width: 18px; height: 18px; }

.dp-empty { text-align: center; }
.dp-empty .dp-search { margin: 26px auto; }
.dp-empty__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }

.dp-comments { margin-top: 60px; }
.dp-comment-list { list-style: none; padding: 0; }
.dp-comment-list .children { list-style: none; padding-left: 30px; }
.dp-comment-list .comment-body { padding: 20px 0; border-bottom: 1px solid var(--dp-line); }
.dp-comment-list .avatar { border-radius: 50%; float: left; margin-right: 14px; }
.comment-form input:not([type="submit"]):not([type="checkbox"]),
.comment-form textarea { width: 100%; padding: 12px 14px; border: 1.5px solid var(--dp-line); border-radius: 10px; }
.comment-form label { display: block; font-weight: 600; margin-bottom: 6px; }

/* Core alignment + caption classes */
.alignleft { float: left; margin: .3em 1.5em 1em 0; }
.alignright { float: right; margin: .3em 0 1em 1.5em; }
.aligncenter { display: block; margin-left: auto; margin-right: auto; }
.wp-caption-text,
.wp-element-caption { font-size: 14px; color: var(--dp-muted); text-align: center; margin-top: 8px; }
.sticky .dp-post-card__title::before { content: "★ "; color: var(--dp-gold); }
.bypostauthor > .comment-body .fn::after { content: " · Author"; color: var(--dp-gold); font-size: 12px; }
.gallery-caption { font-size: 13px; }

/* 17. Motion ------------------------------------------------------------ */
@keyframes dp-fade-up {
	from { opacity: 0; transform: translateY(14px); }
	to { opacity: 1; transform: none; }
}
.dp-js [data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--dp-ease), transform .8s var(--dp-ease); }
.dp-js [data-reveal].is-revealed { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	*, *::before, *::after { animation: none !important; transition: none !important; }
	.dp-js [data-reveal] { opacity: 1; transform: none; }
}
