/* =================================================================
   Janaka Wellness — main stylesheet
   Palette: forest green + warm gold on ivory. Boxed, fixed header.
   ================================================================= */

:root {
	--green-900: #2b3124; /* deepest olive — headings, footer, overlays */
	--green-800: #3a4230; /* nav, sub-headings */
	--green-700: #4c563c; /* solid buttons */
	--green-600: #5c6747; /* links / emphasis */
	--green-500: #6e7b54; /* focus ring */
	--sage: #889070;      /* logo leaf green */
	--sage-soft: #dde1ce;
	--cream: #f4ecdd;     /* warm cream */
	--ivory: #fefaf3;     /* logo background */
	--paper: #faf3e7;     /* card surface */
	--gold: #c2ab7c;      /* logo gold */
	--gold-dark: #a8915f; /* logo gold (dark) */
	--charcoal: #34332f;  /* warm charcoal body text */
	--muted: #837e72;
	--line: rgba(58, 58, 57, 0.12);

	--shadow-sm: 0 6px 24px rgba(43, 49, 36, 0.08);
	--shadow-md: 0 18px 50px rgba(43, 49, 36, 0.14);
	--shadow-lg: 0 30px 80px rgba(43, 49, 36, 0.22);

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

	--header-h: 104px;
	--radius: 18px;
	--radius-lg: 28px;
	--ease: cubic-bezier(0.22, 1, 0.36, 1);
	--maxw: 1180px;
}

/* ---------- Reset / base ---------- */
*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); }

body {
	margin: 0;
	font-family: var(--font-body);
	font-size: 17px;
	line-height: 1.75;
	color: var(--charcoal);
	/* Textured backdrop behind the boxed layout */
	background-color: #e9e2d3;
	background-image:
		radial-gradient(circle at 18% 12%, rgba(58, 114, 86, 0.10), transparent 38%),
		radial-gradient(circle at 85% 80%, rgba(195, 154, 77, 0.12), transparent 40%);
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--green-600); text-decoration: none; transition: color 0.25s var(--ease); }
a:hover { color: var(--gold-dark); }

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.08; margin: 0; color: var(--green-900); letter-spacing: 0.2px; }
p { margin: 0 0 1.1em; }
em { font-style: italic; color: var(--green-600); }

.screen-reader-text {
	position: absolute !important;
	clip: rect(1px, 1px, 1px, 1px);
	width: 1px; height: 1px; overflow: hidden;
}
.skip-link { position: absolute; left: -999px; }
.skip-link:focus { left: 16px; top: 16px; background: #fff; padding: 10px 16px; z-index: 9999; border-radius: 8px; }

/* ---------- Boxed shell ---------- */
.site-shell {
	width: 100%;
	background: var(--ivory);
	position: relative;
	overflow: hidden;
}

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }

.section { padding: clamp(64px, 9vw, 130px) 0; position: relative; }

/* ---------- Buttons ---------- */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	font-family: var(--font-body);
	font-weight: 600;
	font-size: 14px;
	letter-spacing: 0.6px;
	text-transform: uppercase;
	padding: 15px 30px;
	border-radius: 999px;
	border: 1.5px solid transparent;
	cursor: pointer;
	transition: transform 0.3s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.btn--solid { background: var(--green-700); color: #fff; box-shadow: var(--shadow-sm); }
.btn--solid:hover { background: var(--green-900); color: #fff; transform: translateY(-3px); box-shadow: var(--shadow-md); }
.btn--ghost { background: transparent; color: #fff; border-color: rgba(255, 255, 255, 0.7); }
.btn--ghost:hover { background: #fff; color: var(--green-900); transform: translateY(-3px); }
.btn--pill { background: var(--gold); color: #1f1a0e; padding: 11px 22px; font-size: 12.5px; }
.btn--pill:hover { background: var(--gold-dark); color: #fff; transform: translateY(-2px); }
.btn--block { width: 100%; margin-top: 18px; }

/* ---------- Eyebrow / headings ---------- */
.eyebrow {
	display: inline-block;
	font-family: var(--font-body);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 3px;
	text-transform: uppercase;
	color: var(--gold-dark);
	margin-bottom: 18px;
	position: relative;
	padding-left: 38px;
}
.eyebrow::before { content: ""; position: absolute; left: 0; top: 50%; width: 26px; height: 1.5px; background: var(--gold); }
.eyebrow--light { color: #ecdcb6; }
.eyebrow--light::before { background: #ecdcb6; }

.section__title { font-size: clamp(2.1rem, 4.6vw, 3.7rem); }
.section__title--light { color: #fff; }
.section__title--light em { color: #e7d3a3; }
.section__sub { color: var(--muted); max-width: 620px; font-size: 1.05rem; margin-top: 14px; }
.section__head { max-width: 760px; margin-bottom: 56px; }

/* =================================================================
   HEADER — fixed, boxed-aligned
   ================================================================= */
.site-header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1000;
	background: #fefaf3;
	border-bottom: 1px solid var(--line);
	transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease), padding 0.4s var(--ease);
}
.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding: 14px 40px;
	max-width: 1440px;
	margin: 0 auto;
	transition: padding 0.4s var(--ease);
}
/* Scrolled state set via JS */
.site-header.is-scrolled { background: #fefaf3; box-shadow: 0 8px 30px rgba(43, 49, 36, 0.10); }
.site-header.is-scrolled .site-header__inner { padding-top: 8px; padding-bottom: 8px; }

/* Branding */
.brand { display: inline-flex; flex-direction: column; align-items: center; gap: 3px; }
.brand__logo { height: 56px; width: auto; display: block; transition: height 0.4s var(--ease); }
.brand__tagline {
	font-family: var(--font-body);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 5px;
	text-transform: uppercase;
	color: var(--gold-dark);
	line-height: 1;
	transition: font-size 0.4s var(--ease);
}
.site-header.is-scrolled .brand__logo { height: 46px; }
.site-header.is-scrolled .brand__tagline { font-size: 9.5px; letter-spacing: 4px; }

/* Nav */
.site-nav .nav-menu { list-style: none; display: flex; gap: 34px; margin: 0; padding: 0; }
.site-nav .nav-menu a {
	font-size: 13px; font-weight: 600; letter-spacing: 1.2px; text-transform: uppercase;
	color: var(--green-800); position: relative; padding: 6px 0;
}
.site-nav .nav-menu a::after {
	content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 0;
	background: var(--gold); transition: width 0.3s var(--ease);
}
.site-nav .nav-menu a:hover::after,
.site-nav .nav-menu .current-menu-item > a::after { width: 100%; }
.site-nav .nav-menu a:hover { color: var(--gold-dark); }

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

/* Hamburger */
.nav-toggle { display: none; flex-direction: column; gap: 5px; width: 42px; height: 42px; border: none; background: transparent; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; height: 2px; width: 100%; background: var(--green-800); border-radius: 2px; transition: transform 0.3s var(--ease), opacity 0.3s var(--ease); }
body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav panel */
.mobile-nav {
	position: fixed; top: 0; right: 0; z-index: 999;
	width: min(86vw, 360px); height: 100vh;
	background: var(--green-900);
	padding: calc(var(--header-h) + 20px) 32px 40px;
	transform: translateX(110%);
	transition: transform 0.45s var(--ease);
	display: flex; flex-direction: column;
}
body.nav-open .mobile-nav { transform: translateX(0); }
.mobile-nav__menu { list-style: none; margin: 0; padding: 0; }
.mobile-nav__menu li { border-bottom: 1px solid rgba(255, 255, 255, 0.12); }
.mobile-nav__menu a { display: block; padding: 18px 0; color: #f3ecdd; font-size: 18px; font-family: var(--font-display); }
.mobile-nav__menu a:hover { color: var(--gold); }

/* =================================================================
   HERO
   ================================================================= */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; }
.hero__bg { position: absolute; inset: -10% 0; background-size: cover; background-position: center; will-change: transform; }
.hero__overlay {
	position: absolute; inset: 0;
	background:
		linear-gradient(110deg, rgba(43, 49, 36, 0.74) 0%, rgba(43, 49, 36, 0.45) 48%, rgba(43, 49, 36, 0.18) 100%),
		linear-gradient(to top, rgba(43, 49, 36, 0.55), transparent 42%);
}
.hero__inner { position: relative; z-index: 2; padding-top: var(--header-h); max-width: 820px; }
.hero__title { color: #fff; font-size: clamp(3rem, 8vw, 6.4rem); font-weight: 600; line-height: 0.98; margin: 8px 0 22px; }
.hero__title em { color: #e7d3a3; }
.hero__lead { color: rgba(255, 255, 255, 0.9); font-size: clamp(1.05rem, 1.6vw, 1.3rem); max-width: 580px; margin-bottom: 34px; }
.hero__cta { display: flex; gap: 16px; flex-wrap: wrap; }

.hero__scroll { position: absolute; left: 50%; bottom: 32px; transform: translateX(-50%); width: 26px; height: 44px; border: 2px solid rgba(255, 255, 255, 0.6); border-radius: 14px; z-index: 2; }
.hero__scroll span { position: absolute; left: 50%; top: 8px; width: 4px; height: 8px; background: #fff; border-radius: 4px; transform: translateX(-50%); animation: scrollDot 1.8s infinite; }
@keyframes scrollDot { 0% { opacity: 0; transform: translate(-50%, 0); } 40% { opacity: 1; } 80% { opacity: 0; transform: translate(-50%, 14px); } 100% { opacity: 0; } }

/* =================================================================
   MARQUEE
   ================================================================= */
.marquee { background: var(--green-900); padding: 22px 0; overflow: hidden; white-space: nowrap; }
.marquee__track { display: inline-flex; align-items: center; gap: 0; animation: marquee 28s linear infinite; }
.marquee__item { display: inline-flex; align-items: center; color: #f3ecdd; font-family: var(--font-display); font-size: 1.5rem; padding: 0 34px; letter-spacing: 0.5px; }
.marquee__item i { color: var(--gold); font-style: normal; margin-left: 34px; font-size: 0.9rem; }
@keyframes marquee { to { transform: translateX(-50%); } }
.marquee:hover .marquee__track { animation-play-state: paused; }

/* =================================================================
   ABOUT
   ================================================================= */
.about { background: var(--ivory); }
.about__grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(40px, 6vw, 90px); align-items: center; }
.about__media { position: relative; }
.about__img { aspect-ratio: 4 / 5; border-radius: var(--radius-lg); background-size: cover; background-position: center; box-shadow: var(--shadow-md); transform: scale(1.04); }
.about__badge {
	position: absolute; right: -18px; bottom: -22px;
	background: var(--green-900); color: #fff;
	border-radius: var(--radius); padding: 20px 26px; text-align: center;
	box-shadow: var(--shadow-md);
}
.about__badge-num { display: block; font-family: var(--font-display); font-size: 2rem; color: var(--gold); }
.about__badge-label { font-size: 12px; letter-spacing: 2px; text-transform: uppercase; }
.about__body p { color: #45504a; }
.about__stats { display: flex; gap: 38px; margin-top: 36px; }
.stat { display: flex; flex-direction: column; }
.stat__num { font-family: var(--font-display); font-size: 2.6rem; color: var(--green-700); line-height: 1; }
.stat__label { font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--muted); margin-top: 6px; }

/* =================================================================
   STORY / letters
   ================================================================= */
.story { background: var(--cream); text-align: center; }
.story__inner { max-width: 880px; margin: 0 auto; }
.story__letters { display: flex; justify-content: center; gap: clamp(6px, 2vw, 26px); margin: 26px 0 30px; }
.story__letter {
	font-family: var(--font-display);
	font-size: clamp(2.6rem, 9vw, 7rem);
	font-weight: 700;
	color: var(--green-800);
	-webkit-text-stroke: 1px var(--green-700);
}
.story__letter:nth-child(even) { color: transparent; }
.story__lead { color: #45504a; font-size: 1.15rem; max-width: 680px; margin: 0 auto; }

/* =================================================================
   VALUES / cards
   ================================================================= */
.values { background: var(--ivory); }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.card {
	background: var(--paper);
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	padding: 44px 34px;
	transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
	position: relative;
	overflow: hidden;
}
.card::before { content: ""; position: absolute; left: 0; top: 0; height: 4px; width: 0; background: var(--gold); transition: width 0.4s var(--ease); }
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); border-color: transparent; }
.card:hover::before { width: 100%; }
.card__num { font-family: var(--font-display); font-size: 3rem; color: var(--sage); display: block; line-height: 1; }
.card__title { font-size: 1.7rem; margin: 16px 0 12px; }
.card__text { color: #4d574f; margin: 0; font-size: 1rem; }

/* =================================================================
   BANNER (parallax quote)
   ================================================================= */
.banner { position: relative; min-height: 60vh; display: flex; align-items: center; overflow: hidden; }
.banner__bg { position: absolute; inset: -12% 0; background-size: cover; background-position: center; will-change: transform; }
.banner__overlay { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(43, 49, 36, 0.78), rgba(43, 49, 36, 0.62)); }
.banner__inner { position: relative; z-index: 2; text-align: center; max-width: 920px; margin: 0 auto; padding: 80px 28px; }
.banner__quote { color: #fff; font-size: clamp(1.6rem, 3.6vw, 3rem); font-weight: 500; line-height: 1.25; }
.banner__by { display: block; margin-top: 22px; color: var(--gold); letter-spacing: 2px; text-transform: uppercase; font-size: 13px; }

/* =================================================================
   GALLERY
   ================================================================= */
.gallery { background: var(--cream); }
.gallery__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.gallery__item { position: relative; margin: 0; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.gallery__item img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; transition: transform 0.7s var(--ease); }
.gallery__item figcaption {
	position: absolute; left: 0; right: 0; bottom: 0;
	padding: 40px 22px 18px; color: #fff;
	font-family: var(--font-display); font-size: 1.25rem;
	background: linear-gradient(to top, rgba(43, 49, 36, 0.85), transparent);
	transform: translateY(8px); opacity: 0; transition: transform 0.4s var(--ease), opacity 0.4s var(--ease);
}
.gallery__item:hover img { transform: scale(1.08); }
.gallery__item:hover figcaption { transform: translateY(0); opacity: 1; }

/* =================================================================
   WAITLIST (parallax)
   ================================================================= */
.waitlist { position: relative; overflow: hidden; text-align: center; }
.waitlist__bg { position: absolute; inset: -14% 0; background-size: cover; background-position: center; will-change: transform; }
.waitlist__overlay { position: absolute; inset: 0; background: linear-gradient(120deg, rgba(43, 49, 36, 0.92), rgba(35, 71, 53, 0.78)); }
.waitlist__inner { position: relative; z-index: 2; max-width: 720px; margin: 0 auto; }
.waitlist__sub { color: rgba(255, 255, 255, 0.86); font-size: 1.1rem; max-width: 540px; margin: 14px auto 30px; }
.waitlist__form { display: flex; gap: 12px; max-width: 520px; margin: 0 auto; flex-wrap: wrap; }
.waitlist__form input {
	flex: 1 1 240px; padding: 15px 22px; border-radius: 999px; border: 1.5px solid rgba(255, 255, 255, 0.35);
	background: rgba(255, 255, 255, 0.1); color: #fff; font-size: 15px; font-family: var(--font-body);
}
.waitlist__form input::placeholder { color: rgba(255, 255, 255, 0.7); }
.waitlist__form input:focus { outline: none; border-color: var(--gold); background: rgba(255, 255, 255, 0.16); }
.waitlist__note { color: rgba(255, 255, 255, 0.6); font-size: 13px; margin-top: 18px; }

/* =================================================================
   CONTACT + Contact Form 7
   ================================================================= */
.contact { background: var(--ivory); }
.contact__grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(40px, 6vw, 80px); align-items: start; }
.contact__intro p { color: #45504a; }
.contact__meta { list-style: none; margin: 28px 0 0; padding: 0; }
.contact__meta li { padding: 12px 0; border-top: 1px solid var(--line); font-size: 15px; color: #45504a; }
.contact__meta li strong { display: inline-block; min-width: 110px; color: var(--green-800); font-weight: 600; }
.contact__form { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(28px, 4vw, 48px); box-shadow: var(--shadow-sm); }

/* CF7 field styling (works on the homepage section and the Contact page) */
.wpcf7-form p { margin: 0 0 18px; }
.wpcf7-form label { display: block; font-size: 13px; font-weight: 600; letter-spacing: 0.4px; color: var(--green-800); margin-bottom: 6px; text-transform: uppercase; }
.wpcf7-form input:not([type="submit"]):not([type="checkbox"]):not([type="radio"]),
.wpcf7-form textarea,
.wpcf7-form select {
	width: 100%;
	padding: 14px 16px;
	border: 1.5px solid var(--line);
	border-radius: 12px;
	background: #fff;
	font-family: var(--font-body);
	font-size: 15px;
	color: var(--charcoal);
	transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.wpcf7-form input:focus,
.wpcf7-form textarea:focus,
.wpcf7-form select:focus { outline: none; border-color: var(--green-500); box-shadow: 0 0 0 3px rgba(110, 123, 84, 0.18); }
.wpcf7-form textarea { min-height: 150px; resize: vertical; }
.wpcf7-form input[type="submit"],
.wpcf7-form .wpcf7-submit {
	background: var(--green-700); color: #fff; border: none; cursor: pointer;
	padding: 15px 38px; border-radius: 999px; font-weight: 600; font-size: 14px;
	letter-spacing: 0.6px; text-transform: uppercase; transition: transform 0.3s var(--ease), background 0.3s var(--ease);
	width: auto;
}
.wpcf7-form input[type="submit"]:hover,
.wpcf7-form .wpcf7-submit:hover { background: var(--green-900); transform: translateY(-3px); }
.janaka-form-row.two { display: grid; grid-template-columns: 1fr 1fr; gap: 0 18px; }
.janaka-form-row.two p { margin: 0 0 18px; }
.wpcf7-acceptance .wpcf7-list-item { margin: 0; }
.wpcf7-acceptance label { display: flex; align-items: flex-start; gap: 10px; text-transform: none; letter-spacing: 0; font-weight: 400; font-size: 13px; color: var(--muted); }
.wpcf7-acceptance input { width: auto !important; margin-top: 3px; }
@media (max-width: 560px) { .janaka-form-row.two { grid-template-columns: 1fr; } }
.cf7-fallback { color: var(--muted); font-style: italic; }
.wpcf7-spinner { margin-left: 12px; }
.wpcf7 .wpcf7-response-output { border-radius: 10px; padding: 12px 16px !important; margin: 10px 0 0 !important; font-size: 14px; }

/* =================================================================
   FOOTER
   ================================================================= */
.site-footer { background: var(--green-900); color: #d9e2d6; padding: 80px 0 0; position: relative; overflow: hidden; }
.footer__top { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; display: grid; grid-template-columns: 1.3fr 2fr; gap: 60px; }
.footer__logo { display: inline-flex; flex-direction: column; align-items: center; gap: 6px; background: #fefaf3; padding: 18px 26px; border-radius: 16px; box-shadow: var(--shadow-sm); }
.footer__logo img { height: 58px; width: auto; display: block; }
.footer__logo-tagline { font-family: var(--font-body); font-size: 11px; font-weight: 600; letter-spacing: 5px; text-transform: uppercase; color: var(--gold-dark); line-height: 1; }
.footer__tagline { font-family: var(--font-display); font-size: 1.4rem; color: var(--gold); margin: 18px 0 12px; }
.footer__about { color: rgba(217, 226, 214, 0.7); font-size: 15px; max-width: 380px; }
.footer__cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.footer__heading { font-family: var(--font-body); font-size: 13px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; }
.footer__col ul { list-style: none; margin: 0; padding: 0; }
.footer__col li { margin-bottom: 12px; }
.footer__col a, .footer__col span { color: rgba(217, 226, 214, 0.78); font-size: 15px; }
.footer__col a:hover { color: #fff; }

.footer__letters { display: flex; justify-content: center; gap: clamp(10px, 5vw, 50px); margin: 56px 0 0; opacity: 0.14; }
.footer__letters span { font-family: var(--font-display); font-size: clamp(2.5rem, 10vw, 8rem); font-weight: 700; color: #fff; line-height: 1; }

.footer__bottom { border-top: 1px solid rgba(255, 255, 255, 0.1); margin-top: 40px; padding: 24px 28px; text-align: center; }
.footer__bottom p { margin: 0; font-size: 13px; color: rgba(217, 226, 214, 0.6); }

/* =================================================================
   BACK TO TOP
   ================================================================= */
.back-to-top {
	position: fixed; right: 26px; bottom: 26px; z-index: 900;
	width: 50px; height: 50px; border-radius: 50%; border: none; cursor: pointer;
	background: var(--green-700); color: #fff; font-size: 20px;
	box-shadow: var(--shadow-md); opacity: 0; visibility: hidden; transform: translateY(16px);
	transition: opacity 0.35s var(--ease), transform 0.35s var(--ease), background 0.3s var(--ease);
}
.back-to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--gold-dark); }

/* =================================================================
   SCROLL REVEAL
   ================================================================= */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
	.reveal { opacity: 1; transform: none; transition: none; }
	html { scroll-behavior: auto; }
	.parallax { transform: none !important; }
	.marquee__track, .hero__scroll span { animation: none; }
}

/* =================================================================
   GENERIC PAGE / POST (page.php, single.php, index.php)
   ================================================================= */
.page-hero { background: var(--green-900); color: #fff; padding: calc(var(--header-h) + 60px) 0 70px; text-align: center; }
.page-hero h1 { color: #fff; font-size: clamp(2.2rem, 5vw, 3.6rem); }
.page-hero h1 em { color: #e7d3a3; }
.entry { background: var(--ivory); }
.entry__inner { max-width: 760px; margin: 0 auto; padding: clamp(50px, 7vw, 90px) 28px; }
.entry__inner img { border-radius: var(--radius); margin: 24px 0; }
.entry__inner h2 { font-size: 2rem; margin: 1.4em 0 0.5em; }
.entry__inner h3 { font-size: 1.5rem; margin: 1.2em 0 0.5em; }
.entry__inner ul, .entry__inner ol { padding-left: 1.4em; margin-bottom: 1.2em; }
.entry__inner blockquote { border-left: 3px solid var(--gold); padding-left: 22px; font-family: var(--font-display); font-size: 1.4rem; color: var(--green-800); font-style: italic; }
.post-card { display: block; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; margin-bottom: 22px; transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease); }
.post-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.post-card h2 { font-size: 1.6rem; margin-bottom: 8px; }
.post-card .meta { font-size: 13px; color: var(--muted); letter-spacing: 0.5px; }
.posts-wrap { max-width: 820px; margin: 0 auto; padding: clamp(50px, 7vw, 90px) 28px; }
.pagination { display: flex; gap: 10px; justify-content: center; margin-top: 30px; flex-wrap: wrap; }
.pagination .page-numbers { padding: 10px 16px; border: 1px solid var(--line); border-radius: 10px; color: var(--green-800); }
.pagination .current { background: var(--green-700); color: #fff; border-color: var(--green-700); }

/* =================================================================
   RESPONSIVE
   ================================================================= */
@media (max-width: 980px) {
	.site-nav { display: none; }
	.nav-toggle { display: flex; }
	.btn--pill { display: none; }
	.about__grid { grid-template-columns: 1fr; }
	.about__media { max-width: 460px; }
	.cards { grid-template-columns: 1fr; }
	.gallery__grid { grid-template-columns: repeat(2, 1fr); }
	.contact__grid { grid-template-columns: 1fr; }
	.footer__top { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 560px) {
	body { font-size: 16px; }
	.site-header__inner { padding: 16px 20px; }
	.container { padding: 0 20px; }
	.gallery__grid { grid-template-columns: 1fr; }
	.footer__cols { grid-template-columns: 1fr 1fr; }
	.hero__cta { flex-direction: column; align-items: stretch; }
	.hero__cta .btn { width: 100%; }
	.about__stats { gap: 24px; }
	.about__badge { right: 12px; }
}
