/* ==========================================================================
   Etum Life — main stylesheet
   A refreshed take on the Etum Organics look: warm cream, modern greens,
   editorial serif headings (Fraunces) + clean sans body (DM Sans).
   ========================================================================== */

:root {
	/* Brand palette — refreshed from Etum Organics */
	--etum-forest: #1f3a2b;   /* deep header/footer green */
	--etum-green:  #2f7d4f;   /* primary green */
	--etum-green-d:#256340;   /* primary green hover */
	--etum-leaf:   #6fae84;   /* mid leaf */
	--etum-sprout: #b7df9a;   /* light accent */
	--etum-sprout-soft:#e4f1d8;

	--etum-cream:  #f7f4ec;   /* page background */
	--etum-sand:   #efe9da;   /* alt section background */
	--etum-paper:  #fffefb;   /* cards */

	--etum-ink:    #1b241e;   /* primary text */
	--etum-body:   #3c4a40;   /* body text */
	--etum-muted:  #6c7a6f;   /* muted text */
	--etum-line:   #e2ddd0;   /* borders */

	--font-display: "Fraunces", Georgia, "Times New Roman", serif;
	--font-body: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

	--wrap: 1180px;
	--radius: 18px;
	--radius-sm: 12px;
	--shadow: 0 18px 40px -24px rgba(31, 58, 43, .35);
	--shadow-sm: 0 8px 24px -16px rgba(31, 58, 43, .4);
	--transition: .35s cubic-bezier(.2, .7, .3, 1);
}

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

body {
	margin: 0;
	font-family: var(--font-body);
	font-size: 18px;
	line-height: 1.7;
	color: var(--etum-body);
	background: var(--etum-cream);
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

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

a { color: var(--etum-green); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--etum-green-d); }

h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-display);
	color: var(--etum-ink);
	line-height: 1.12;
	font-weight: 500;
	margin: 0 0 .5em;
	letter-spacing: -.01em;
}

p { margin: 0 0 1.2em; }

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

.eyebrow {
	font-family: var(--font-body);
	text-transform: uppercase;
	letter-spacing: .18em;
	font-size: .74rem;
	font-weight: 600;
	color: var(--etum-green);
	margin: 0 0 .9em;
}

.screen-reader-text {
	position: absolute !important;
	clip: rect(1px, 1px, 1px, 1px);
	width: 1px; height: 1px; overflow: hidden;
	word-wrap: normal !important;
}

.skip-link {
	position: absolute; left: -9999px; top: 0; z-index: 1000;
	background: var(--etum-ink); color: #fff; padding: 10px 16px; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; color: #fff; }

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.btn {
	display: inline-flex; align-items: center; justify-content: center;
	gap: .5em;
	font-family: var(--font-body);
	font-weight: 600;
	font-size: .95rem;
	line-height: 1;
	padding: 14px 26px;
	border-radius: 999px;
	border: 1.5px solid transparent;
	cursor: pointer;
	transition: transform var(--transition), background var(--transition), color var(--transition), border-color var(--transition);
}
.btn:hover { transform: translateY(-2px); }
.btn--solid { background: var(--etum-green); color: #fff; }
.btn--solid:hover { background: var(--etum-green-d); color: #fff; }
.btn--ghost { background: transparent; color: var(--etum-ink); border-color: var(--etum-line); }
.btn--ghost:hover { border-color: var(--etum-green); color: var(--etum-green); }
.btn--lg { padding: 16px 32px; font-size: 1rem; }

.link-more { font-weight: 600; white-space: nowrap; }

/* --------------------------------------------------------------------------
   Topbar + Header
   -------------------------------------------------------------------------- */
.topbar { background: var(--etum-forest); color: #eaf3ea; font-size: .82rem; }
.topbar__inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding-top: 9px; padding-bottom: 9px; }
.topbar__msg { margin: 0; opacity: .9; }
.topbar__link { color: var(--etum-sprout); font-weight: 600; }
.topbar__link:hover { color: #fff; }

.site-header {
	position: sticky; top: 0; z-index: 100;
	background: rgba(247, 244, 236, .9);
	backdrop-filter: saturate(140%) blur(10px);
	border-bottom: 1px solid var(--etum-line);
}
.site-header__inner { display: flex; align-items: center; gap: 24px; padding-top: 14px; padding-bottom: 14px; }

.site-branding { display: flex; align-items: center; gap: 10px; }
.site-branding img, .custom-logo { max-height: 48px; width: auto; }
.site-mark { color: var(--etum-green); display: inline-flex; }
.site-title { font-family: var(--font-display); font-size: 1.5rem; margin: 0; font-weight: 600; letter-spacing: -.02em; }
.site-title a { color: var(--etum-ink); }

.main-navigation { margin-left: auto; }
.main-navigation ul { list-style: none; margin: 0; padding: 0; display: flex; align-items: center; gap: 30px; }
.main-navigation li { position: relative; }
.main-navigation a {
	font-weight: 500; color: var(--etum-ink); font-size: .98rem;
	padding: 6px 0; display: inline-block; position: relative;
}
.main-navigation a::after {
	content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 2px;
	background: var(--etum-green); transition: width var(--transition);
}
.main-navigation a:hover::after, .main-navigation .current-menu-item > a::after { width: 100%; }

/* Submenus */
.main-navigation ul ul {
	position: absolute; top: 100%; left: 0; flex-direction: column; gap: 0;
	background: var(--etum-paper); border: 1px solid var(--etum-line); border-radius: var(--radius-sm);
	padding: 8px; min-width: 200px; box-shadow: var(--shadow-sm);
	opacity: 0; visibility: hidden; transform: translateY(8px); transition: all var(--transition);
}
.main-navigation li:hover > ul { opacity: 1; visibility: visible; transform: translateY(0); }
.main-navigation ul ul a { padding: 8px 12px; width: 100%; }
.main-navigation ul ul a::after { display: none; }

.site-header__cta { margin-left: 4px; }

.menu-toggle {
	display: none; background: transparent; border: 0; cursor: pointer; padding: 8px;
	margin-left: auto;
}
.menu-toggle__bars { display: block; width: 26px; height: 16px; position: relative; }
.menu-toggle__bars span {
	position: absolute; left: 0; width: 100%; height: 2px; background: var(--etum-ink);
	border-radius: 2px; transition: transform var(--transition), opacity var(--transition);
}
.menu-toggle__bars span:nth-child(1) { top: 0; }
.menu-toggle__bars span:nth-child(2) { top: 7px; }
.menu-toggle__bars span:nth-child(3) { top: 14px; }
.menu-toggle[aria-expanded="true"] .menu-toggle__bars span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] .menu-toggle__bars span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] .menu-toggle__bars span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* --------------------------------------------------------------------------
   Section heads
   -------------------------------------------------------------------------- */
.section-head { text-align: center; max-width: 640px; margin: 0 auto 48px; }
.section-head--row { display: flex; align-items: flex-end; justify-content: space-between; text-align: left; max-width: none; gap: 24px; }
.section-title { font-size: clamp(1.9rem, 3.6vw, 2.8rem); margin: 0 0 .3em; }
.section-sub { color: var(--etum-muted); font-size: 1.05rem; margin: 0; }

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */
.hero { position: relative; overflow: hidden; background: var(--etum-forest); color: #f4f8f2; }
.hero__bg {
	position: absolute; inset: 0;
	background:
		radial-gradient(120% 90% at 80% -10%, rgba(183, 223, 154, .28), transparent 55%),
		radial-gradient(90% 80% at 0% 110%, rgba(111, 174, 132, .35), transparent 60%),
		linear-gradient(160deg, #1f3a2b 0%, #224430 60%, #1c3326 100%);
}
.hero__bg::after {
	content: ""; position: absolute; inset: 0; opacity: .5;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 160 160'%3E%3Cg fill='none' stroke='%23ffffff' stroke-opacity='0.05' stroke-width='1.5'%3E%3Cpath d='M80 150c0-40 18-66 52-78-6 46-28 72-52 78Z'/%3E%3Cpath d='M80 150c0-40-18-66-52-78 6 46 28 72 52 78Z'/%3E%3C/g%3E%3C/svg%3E");
}
.hero__inner { position: relative; padding: 96px 24px 104px; max-width: 820px; text-align: center; }
.hero__title { color: #fff; font-size: clamp(2.6rem, 6vw, 4.6rem); font-weight: 500; margin: 0 0 .3em; }
.hero__lead { font-size: clamp(1.05rem, 1.8vw, 1.3rem); color: #dce8da; max-width: 620px; margin: 0 auto 2em; }
.hero__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero .btn--ghost { color: #fff; border-color: rgba(255, 255, 255, .35); }
.hero .btn--ghost:hover { border-color: #fff; color: #fff; background: rgba(255,255,255,.08); }
.hero__meta { margin: 28px 0 0; font-size: .82rem; letter-spacing: .16em; text-transform: uppercase; color: var(--etum-sprout); }

/* --------------------------------------------------------------------------
   Pillars
   -------------------------------------------------------------------------- */
.pillars { padding: 92px 0; }
.pillar-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.pillar {
	background: var(--etum-paper); border: 1px solid var(--etum-line); border-radius: var(--radius);
	padding: 32px 26px; text-align: center; transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.pillar:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.pillar__icon {
	display: inline-flex; align-items: center; justify-content: center;
	width: 62px; height: 62px; border-radius: 50%;
	background: var(--etum-sprout-soft); color: var(--etum-green); margin-bottom: 18px;
}
.pillar__title { font-size: 1.3rem; margin: 0 0 .4em; }
.pillar__text { color: var(--etum-muted); font-size: .98rem; margin: 0; }

/* --------------------------------------------------------------------------
   Belief / editorial
   -------------------------------------------------------------------------- */
.belief { padding: 40px 0 92px; }
.belief__inner { display: grid; grid-template-columns: 1.05fr 1fr; gap: 64px; align-items: center; }
.belief__media { position: relative; min-height: 460px; }
.belief__photo {
	position: absolute; border-radius: var(--radius); background-size: cover; background-position: center;
	box-shadow: var(--shadow);
}
.belief__photo--1 {
	inset: 0 30% 26% 0;
	background-image: linear-gradient(135deg, #2f7d4f, #6fae84);
}
.belief__photo--2 {
	right: 0; bottom: 0; width: 58%; height: 62%;
	background-image: linear-gradient(135deg, #b7df9a, #2f7d4f);
	border: 6px solid var(--etum-cream);
}
.belief__copy .section-title { font-size: clamp(1.8rem, 3.2vw, 2.6rem); }
.checklist { list-style: none; margin: 0 0 1.8em; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 10px 20px; }
.checklist li { position: relative; padding-left: 30px; font-weight: 500; color: var(--etum-ink); }
.checklist li::before {
	content: ""; position: absolute; left: 0; top: 2px; width: 20px; height: 20px; border-radius: 50%;
	background: var(--etum-green);
	-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M9.55 17.05 4.5 12l1.4-1.4 3.65 3.6 8.15-8.15L19.1 7.5z'/%3E%3C/svg%3E") center/contain no-repeat;
	mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M9.55 17.05 4.5 12l1.4-1.4 3.65 3.6 8.15-8.15L19.1 7.5z'/%3E%3C/svg%3E") center/contain no-repeat;
	background-color: var(--etum-green);
}

/* --------------------------------------------------------------------------
   Journal / cards
   -------------------------------------------------------------------------- */
.journal { padding: 92px 0; background: var(--etum-sand); }
.journal-grid, .post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }

.card {
	background: var(--etum-paper); border: 1px solid var(--etum-line); border-radius: var(--radius);
	overflow: hidden; display: flex; flex-direction: column;
	transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.card__media { display: block; aspect-ratio: 4 / 3; overflow: hidden; background: var(--etum-sprout-soft); }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.card:hover .card__media img { transform: scale(1.05); }
.card__media-fallback, .card--placeholder .card__media {
	display: block; width: 100%; height: 100%; aspect-ratio: 4 / 3;
	background: linear-gradient(135deg, var(--etum-leaf), var(--etum-sprout));
}
.card__body { padding: 24px 24px 28px; display: flex; flex-direction: column; flex: 1; }
.card__cat {
	display: inline-block; align-self: flex-start; font-size: .72rem; font-weight: 600;
	text-transform: uppercase; letter-spacing: .12em; color: var(--etum-green);
	background: var(--etum-sprout-soft); padding: 5px 11px; border-radius: 999px; margin-bottom: 14px;
}
.card__title { font-size: 1.3rem; line-height: 1.25; margin: 0 0 .5em; }
.card__title a { color: var(--etum-ink); }
.card__title a:hover { color: var(--etum-green); }
.card__excerpt { color: var(--etum-muted); font-size: .96rem; margin: 0 0 18px; }
.card__meta { margin-top: auto; font-size: .82rem; color: var(--etum-muted); display: flex; align-items: center; gap: 8px; }
.card__dot { opacity: .6; }

/* --------------------------------------------------------------------------
   Stats
   -------------------------------------------------------------------------- */
.stats { padding: 0; }
.stats__inner {
	display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
	background: var(--etum-forest); color: #fff; border-radius: var(--radius);
	padding: 48px 32px; margin: 92px auto; text-align: center;
}
.stat__num { display: block; font-family: var(--font-display); font-size: clamp(2.2rem, 4vw, 3rem); color: var(--etum-sprout); line-height: 1; }
.stat__label { display: block; margin-top: 10px; font-size: .92rem; color: #d6e4d4; }

/* --------------------------------------------------------------------------
   CTA / newsletter
   -------------------------------------------------------------------------- */
.cta { padding: 0 0 100px; }
.cta__inner {
	background: linear-gradient(135deg, var(--etum-green), var(--etum-green-d));
	color: #fff; border-radius: calc(var(--radius) + 6px);
	padding: 64px 40px; text-align: center; box-shadow: var(--shadow);
}
.cta__title { color: #fff; font-size: clamp(1.8rem, 3.4vw, 2.6rem); margin: 0 0 .3em; }
.cta__text { color: #e3f0e2; max-width: 540px; margin: 0 auto 28px; }
.cta__form { display: flex; gap: 10px; max-width: 480px; margin: 0 auto 14px; }
.cta__form input {
	flex: 1; padding: 14px 18px; border-radius: 999px; border: 0; font-size: 1rem;
	font-family: var(--font-body); background: #fff; color: var(--etum-ink);
}
.cta__form input:focus { outline: 3px solid var(--etum-sprout); }
.cta__form .btn--solid { background: var(--etum-forest); }
.cta__form .btn--solid:hover { background: var(--etum-ink); }
.cta__fine { font-size: .8rem; color: #cfe2cd; margin: 0; }

/* --------------------------------------------------------------------------
   Content areas (blog / pages)
   -------------------------------------------------------------------------- */
.content-area { padding: 64px 24px 88px; }
.content-area--with-sidebar { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: 56px; align-items: start; }
.no-sidebar .content-area--with-sidebar { grid-template-columns: minmax(0, 1fr); }
.site-main--page { max-width: 800px; margin: 0 auto; }

.page-header { margin-bottom: 44px; }
.page-header--blog { text-align: center; }
.page-title { font-size: clamp(2rem, 4vw, 3rem); margin: 0 0 .2em; }
.page-title span { color: var(--etum-green); }
.page-sub { color: var(--etum-muted); margin: 0; }

.post-grid { margin-bottom: 56px; }

/* Single post (scope to the article so we don't hit WordPress's body.single-post class) */
article.single-post, article.single-page { max-width: 760px; }
.content-area--with-sidebar article.single-post { max-width: none; }
.entry-header { margin-bottom: 28px; }
.entry-header--page { text-align: center; }
.entry-cat {
	display: inline-block; font-size: .74rem; font-weight: 600; text-transform: uppercase;
	letter-spacing: .12em; color: var(--etum-green); background: var(--etum-sprout-soft);
	padding: 6px 13px; border-radius: 999px; margin-bottom: 18px;
}
.entry-title { font-size: clamp(2rem, 4.4vw, 3.1rem); margin: 0 0 .4em; }
.entry-meta { display: flex; align-items: center; gap: 12px; }
.entry-meta__avatar { border-radius: 50%; }
.entry-meta__by { display: flex; flex-direction: column; line-height: 1.3; }
.entry-meta__author { font-weight: 600; color: var(--etum-ink); }
.entry-meta__sub { font-size: .85rem; color: var(--etum-muted); }

.entry-featured { margin: 0 0 36px; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.entry-featured img { width: 100%; }

.entry-content { font-size: 1.075rem; }
.entry-content h2 { font-size: 1.8rem; margin: 1.8em 0 .5em; }
.entry-content h3 { font-size: 1.4rem; margin: 1.6em 0 .5em; }
.entry-content a { text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; }
.entry-content img { border-radius: var(--radius-sm); margin: 1.5em 0; }
.entry-content blockquote {
	margin: 1.6em 0; padding: 6px 0 6px 26px; border-left: 4px solid var(--etum-green);
	font-family: var(--font-display); font-size: 1.3rem; color: var(--etum-ink); font-style: italic;
}
.entry-content ul, .entry-content ol { padding-left: 1.3em; margin: 0 0 1.4em; }
.entry-content li { margin-bottom: .5em; }
.entry-content code {
	background: var(--etum-sand); padding: 2px 7px; border-radius: 6px; font-size: .9em;
}
.entry-content pre { background: var(--etum-ink); color: #eef3ec; padding: 20px; border-radius: var(--radius-sm); overflow-x: auto; }

.entry-footer { margin-top: 36px; }
.entry-tags span { font-weight: 600; color: var(--etum-ink); margin-right: 8px; }
.entry-tags a {
	display: inline-block; background: var(--etum-sand); padding: 4px 12px; border-radius: 999px;
	font-size: .85rem; margin: 0 6px 6px 0;
}

.post-nav { display: flex; justify-content: space-between; gap: 20px; margin: 48px 0; padding-top: 28px; border-top: 1px solid var(--etum-line); }
.post-nav a { font-weight: 600; color: var(--etum-ink); }
.post-nav a:hover { color: var(--etum-green); }
.post-nav__next { text-align: right; margin-left: auto; }

/* Pagination */
.pagination, .comments-pagination { margin-top: 24px; }
.pagination .nav-links, .comments-pagination .nav-links { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; }
.pagination a, .pagination span, .comments-pagination a, .comments-pagination span {
	display: inline-flex; align-items: center; justify-content: center; min-width: 44px; height: 44px;
	padding: 0 12px; border-radius: 12px; border: 1px solid var(--etum-line); background: var(--etum-paper);
	font-weight: 600; color: var(--etum-ink);
}
.pagination .current { background: var(--etum-green); color: #fff; border-color: var(--etum-green); }
.pagination a:hover { border-color: var(--etum-green); color: var(--etum-green); }

/* No results */
.no-results { text-align: center; max-width: 560px; margin: 40px auto; }
.no-results .page-title { margin-bottom: .4em; }

/* --------------------------------------------------------------------------
   Sidebar / widgets
   -------------------------------------------------------------------------- */
.widget-area { position: sticky; top: 96px; display: grid; gap: 28px; }
.widget {
	background: var(--etum-paper); border: 1px solid var(--etum-line); border-radius: var(--radius);
	padding: 26px;
}
.widget-title { font-size: 1.15rem; margin: 0 0 16px; }
.widget ul { list-style: none; margin: 0; padding: 0; }
.widget ul li { padding: 8px 0; border-bottom: 1px dashed var(--etum-line); }
.widget ul li:last-child { border-bottom: 0; }
.widget a { color: var(--etum-body); }
.widget a:hover { color: var(--etum-green); }
.widget--about p { color: var(--etum-muted); font-size: .96rem; }

/* Search form */
.search-form { display: flex; gap: 8px; }
.search-field {
	flex: 1; padding: 12px 16px; border-radius: 999px; border: 1px solid var(--etum-line);
	font-family: var(--font-body); font-size: .95rem; background: var(--etum-cream); color: var(--etum-ink);
}
.search-field:focus { outline: none; border-color: var(--etum-green); }
.search-submit { padding: 12px 20px; }

/* --------------------------------------------------------------------------
   Comments
   -------------------------------------------------------------------------- */
.comments-area { max-width: 760px; margin: 56px 0 0; }
.content-area--with-sidebar .comments-area { max-width: none; }
.comments-title, .comment-reply-title { font-size: 1.6rem; margin-bottom: 24px; }
.comment-list { list-style: none; margin: 0 0 40px; padding: 0; }
.comment-list ol { list-style: none; }
.comment-body { padding: 20px 0; border-bottom: 1px solid var(--etum-line); }
.comment-author { display: flex; align-items: center; gap: 12px; font-weight: 600; }
.comment-author img { border-radius: 50%; }
.comment-meta { font-size: .82rem; color: var(--etum-muted); margin-bottom: 10px; }
.comment-respond { background: var(--etum-paper); border: 1px solid var(--etum-line); border-radius: var(--radius); padding: 30px; }
.comment-form label { display: block; font-weight: 600; margin-bottom: 6px; font-size: .9rem; }
.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
	width: 100%; padding: 12px 16px; border: 1px solid var(--etum-line); border-radius: var(--radius-sm);
	font-family: var(--font-body); font-size: 1rem; background: var(--etum-cream); margin-bottom: 16px;
}
.comment-form input:focus, .comment-form textarea:focus { outline: none; border-color: var(--etum-green); }

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.site-footer { background: var(--etum-forest); color: #cdddc9; padding: 72px 0 32px; }
.footer-top { display: grid; grid-template-columns: 1.4fr 2fr; gap: 56px; padding-bottom: 48px; border-bottom: 1px solid rgba(255, 255, 255, .12); }
.site-mark--light { color: var(--etum-sprout); }
.footer-tagline { color: #c3d4bf; max-width: 320px; margin: 14px 0 20px; }
.footer-widgets { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.footer-col .widget-title, .footer-col h3 { color: #fff; font-size: 1.05rem; margin-bottom: 14px; }
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: 9px; }
.footer-col a { color: #c3d4bf; }
.footer-col a:hover { color: var(--etum-sprout); }

.social-links__list { list-style: none; display: flex; gap: 12px; margin: 0; padding: 0; }
.social-links__list a {
	display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px;
	border-radius: 50%; background: rgba(255, 255, 255, .08); color: #fff; font-size: .85rem;
}
.social-links__list a:hover { background: var(--etum-green); }

.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding-top: 26px; flex-wrap: wrap; }
.site-info { margin: 0; font-size: .85rem; color: #a9bca5; }
.to-top { color: #c3d4bf; font-size: .85rem; font-weight: 600; }
.to-top:hover { color: var(--etum-sprout); }

/* --------------------------------------------------------------------------
   Scroll reveal
   -------------------------------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s cubic-bezier(.2, .7, .3, 1); }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
	.reveal { opacity: 1; transform: none; transition: none; }
	.btn:hover, .card:hover, .pillar:hover { transform: none; }
}

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 980px) {
	.pillar-grid { grid-template-columns: 1fr 1fr; }
	.belief__inner { grid-template-columns: 1fr; gap: 40px; }
	.belief__media { min-height: 360px; max-width: 520px; }
	.journal-grid, .post-grid { grid-template-columns: 1fr 1fr; }
	.footer-top { grid-template-columns: 1fr; gap: 40px; }
	.content-area--with-sidebar { grid-template-columns: 1fr; gap: 48px; }
	.widget-area { position: static; }
}

@media (max-width: 760px) {
	body { font-size: 17px; }
	.topbar__msg { display: none; }
	.topbar__inner { justify-content: center; }

	.site-header__cta { display: none; }
	.menu-toggle { display: inline-flex; }
	.main-navigation { margin-left: auto; }
	.main-navigation ul#primary-menu {
		position: fixed; inset: 0 0 0 auto; width: min(82vw, 340px);
		flex-direction: column; align-items: flex-start; gap: 0;
		background: var(--etum-cream); padding: 88px 28px 40px; box-shadow: var(--shadow);
		transform: translateX(100%); transition: transform var(--transition); overflow-y: auto;
	}
	.main-navigation.is-open ul#primary-menu { transform: translateX(0); }
	.main-navigation ul#primary-menu > li { width: 100%; border-bottom: 1px solid var(--etum-line); }
	.main-navigation ul#primary-menu a { padding: 14px 0; width: 100%; font-size: 1.1rem; }
	.main-navigation ul ul { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: 0; padding: 0 0 8px 14px; background: transparent; }
	.menu-toggle { z-index: 120; position: relative; }

	.section-head--row { flex-direction: column; align-items: flex-start; }
	.pillar-grid { grid-template-columns: 1fr; }
	.journal-grid, .post-grid { grid-template-columns: 1fr; }
	.stats__inner { grid-template-columns: 1fr 1fr; gap: 28px; padding: 36px 24px; }
	.checklist { grid-template-columns: 1fr; }
	.cta__form { flex-direction: column; }
	.cta__form .btn { width: 100%; }
	.footer-widgets { grid-template-columns: 1fr 1fr; }
	.hero__inner { padding: 72px 24px 80px; }
}

@media (max-width: 460px) {
	.footer-widgets { grid-template-columns: 1fr; }
	.footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* Body scroll lock when mobile menu open */
body.menu-open { overflow: hidden; }

/* WordPress core alignment + caption helpers */
.alignwide { width: min(1100px, 100%); margin-left: auto; margin-right: auto; }
.alignfull { width: 100%; }
.alignleft { float: left; margin: .4em 1.6em 1.2em 0; }
.alignright { float: right; margin: .4em 0 1.2em 1.6em; }
.aligncenter { margin-left: auto; margin-right: auto; }
.wp-caption { max-width: 100%; }
.wp-caption-text, .wp-element-caption { font-size: .85rem; color: var(--etum-muted); text-align: center; margin-top: 8px; }
.sticky .card__cat::after { content: " · Featured"; }
.bypostauthor > .comment-body { }

/* Contact form (shortcode: etum_contact_form) */
.etum-contact-form { max-width: 620px; margin: 1.5rem 0; }
.etum-contact-form .etum-field { display: flex; flex-direction: column; margin-bottom: 1.1rem; }
.etum-contact-form label { font-weight: 600; margin-bottom: .35rem; }
.etum-contact-form input[type="text"],
.etum-contact-form input[type="email"],
.etum-contact-form textarea {
	width: 100%; padding: .7rem .85rem; font: inherit;
	background: var(--etum-paper); border: 1px solid var(--etum-line);
	border-radius: var(--radius-sm, 10px); color: inherit;
}
.etum-contact-form input:focus,
.etum-contact-form textarea:focus { outline: 2px solid var(--etum-green); outline-offset: 1px; }
.etum-form-notice { padding: .85rem 1rem; border-radius: 10px; margin: 0 0 1.25rem; }
.etum-form-notice--ok { background: #e8f3ea; border: 1px solid #bcd9c2; color: #23543a; }
.etum-form-notice--err { background: #fbeae8; border: 1px solid #e6c3bd; color: #7a2e22; }
