/* ==========================================================================
   Kiemo Oazė — design system
   --------------------------------------------------------------------------
   ISOLATION MODEL
   Every rule below is scoped under .kiemo-scope. That does two things:

   1. Nothing here can leak into Elementor's UI, the admin bar, or any other
      plugin's markup.
   2. `.kiemo-scope <el>` is a 2-selector rule (0,1,1) which beats Hello
      Elementor's bare element/class defaults, and the stylesheet is enqueued
      at priority 999 so it also wins on source order at equal specificity.

   The `.kiemo-scope` block right after the tokens is a local reset: it
   neutralises the inherited font, line-height, margin and button styling
   that Elementor/Hello push down, so the design starts from a clean slate
   no matter what theme settings are active.
   ========================================================================== */

.kiemo-scope {
	--dark:   #0B1310;
	--card:   #121D19;
	--accent: #D4C3A3;
	--text:   #E8ECEA;
	--muted:  #A0AAB0;

	--max: 80rem;    /* container width, matches max-w-7xl */
	--gap: 2rem;
	--pad: 1.5rem;   /* horizontal page padding */
}

/* --------------------------------------------------------------------------
   1. LOCAL RESET — the "CSS protection" layer
   -------------------------------------------------------------------------- */

.kiemo-scope,
.kiemo-scope *,
.kiemo-scope *::before,
.kiemo-scope *::after {
	box-sizing: border-box;
}

.kiemo-scope {
	font-family: Inter, system-ui, -apple-system, "Segoe UI", sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.5;
	color: var(--text);
	background-color: var(--dark);
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

/* Wipe inherited typography/spacing from the theme. */
.kiemo-scope h1,
.kiemo-scope h2,
.kiemo-scope h3,
.kiemo-scope h4,
.kiemo-scope p,
.kiemo-scope figure,
.kiemo-scope blockquote,
.kiemo-scope ul,
.kiemo-scope ol {
	margin: 0;
	padding: 0;
	font-size: inherit;
	font-weight: inherit;
	line-height: inherit;
	letter-spacing: normal;
	color: inherit;
}

.kiemo-scope a {
	color: inherit;
	text-decoration: none;
	background: none;
}

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

/* Elementor and Hello both style bare <button>/<input>. Reset hard. */
.kiemo-scope button,
.kiemo-scope input,
.kiemo-scope textarea,
.kiemo-scope select {
	font: inherit;
	color: inherit;
	margin: 0;
	border-radius: 0;
	background: none;
	border: 0;
	box-shadow: none;
	-webkit-appearance: none;
	appearance: none;
}

.kiemo-scope button {
	cursor: pointer;
	padding: 0;
	text-transform: none;
}

.kiemo-scope ::selection {
	background: var(--accent);
	color: var(--dark);
}

/* Elementor wraps widgets in containers that can add their own padding.
   Neutralise it for our widgets specifically. */
.elementor-widget-kiemo_hero .elementor-widget-container,
.elementor-widget-kiemo_services .elementor-widget-container,
.elementor-widget-kiemo_gallery .elementor-widget-container,
.elementor-widget-kiemo_about .elementor-widget-container,
.elementor-widget-kiemo_testimonials .elementor-widget-container,
.elementor-widget-kiemo_cta .elementor-widget-container,
.elementor-widget-kiemo_contact .elementor-widget-container {
	margin: 0;
	padding: 0;
}

/* --------------------------------------------------------------------------
   2. LAYOUT PRIMITIVES
   -------------------------------------------------------------------------- */

.kiemo-scope .kiemo-container {
	max-width: var(--max);
	margin-inline: auto;
	padding-inline: var(--pad);
}

.kiemo-section {
	padding-block: 6rem;
}

.kiemo-section.is-tinted {
	background-color: rgba(18, 29, 25, .3);
}

.kiemo-scope .kiemo-grid-3 {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--gap);
}

@media (min-width: 768px) {
	.kiemo-scope .kiemo-grid-3 {
		grid-template-columns: repeat(3, 1fr);
	}
}

/* --------------------------------------------------------------------------
   3. TYPOGRAPHY
   -------------------------------------------------------------------------- */

.kiemo-scope .kiemo-eyebrow {
	display: block;
	font-size: .75rem;
	text-transform: uppercase;
	letter-spacing: .2em;
	color: var(--accent);
	font-weight: 500;
	margin-bottom: .5rem;
}

.kiemo-scope .kiemo-h2 {
	font-family: "Playfair Display", Georgia, serif;
	font-size: 1.5rem;
	line-height: 1.25;
	font-weight: 400;
}

.kiemo-scope .kiemo-h2-lg {
	font-size: 1.75rem;
}

.kiemo-scope .kiemo-page-title {
	font-family: "Playfair Display", Georgia, serif;
	font-size: 1.875rem;
	line-height: 1.15;
	font-weight: 400;
	margin-bottom: 1rem;
}

.kiemo-scope .kiemo-lead {
	font-size: .875rem;
	font-weight: 300;
	color: var(--muted);
	line-height: 1.7;
}

/* Lead paragraph under a centred section heading. */
.kiemo-scope .kiemo-lead.is-centered {
	max-width: 40rem;
	margin: 1.25rem auto 0;
}

.kiemo-scope .kiemo-body-text {
	font-size: .875rem;
	font-weight: 300;
	line-height: 1.75;
	color: var(--muted);
}

@media (min-width: 768px) {
	.kiemo-scope .kiemo-h2 { font-size: 1.875rem; }
	.kiemo-scope .kiemo-h2-lg { font-size: 2.25rem; }
	.kiemo-scope .kiemo-page-title { font-size: 3rem; }
}

/* Section heading arrangements */

.kiemo-scope .kiemo-head-center {
	text-align: center;
	margin-bottom: 3rem;
}

.kiemo-scope .kiemo-page-head {
	max-width: 42rem;
	margin-bottom: 4rem;
}

.kiemo-scope .kiemo-page-head.is-narrow {
	max-width: 36rem;
}

.kiemo-scope .kiemo-head-split {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	border-bottom: 1px solid var(--card);
	padding-bottom: 2rem;
	margin-bottom: 3rem;
}

@media (min-width: 768px) {
	.kiemo-scope .kiemo-head-split {
		flex-direction: row;
		align-items: flex-end;
	}
}

.kiemo-scope .kiemo-arrow-link {
	display: inline-flex;
	align-items: center;
	gap: .5rem;
	font-size: .75rem;
	text-transform: uppercase;
	letter-spacing: .15em;
	color: var(--accent);
	margin-top: 1rem;
	transition: color .3s;
}

.kiemo-scope .kiemo-arrow-link:hover {
	color: var(--text);
}

@media (min-width: 768px) {
	.kiemo-scope .kiemo-arrow-link { margin-top: 0; }
}

.kiemo-scope .kiemo-underline-link {
	display: inline-block;
	border-bottom: 1px solid var(--accent);
	color: var(--accent);
	padding-bottom: .25rem;
	font-size: .75rem;
	text-transform: uppercase;
	letter-spacing: .15em;
	transition: color .3s;
}

.kiemo-scope .kiemo-underline-link:hover {
	color: var(--text);
}

/* --------------------------------------------------------------------------
   4. BUTTONS
   -------------------------------------------------------------------------- */

.kiemo-scope .kiemo-btn {
	display: inline-block;
	border: 1px solid var(--accent);
	padding: 1rem 2rem;
	font-size: .75rem;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: .2em;
	line-height: 1;
	text-align: center;
	border-radius: 0;
	transition: background-color .3s, color .3s;
}

.kiemo-scope .kiemo-btn-solid {
	background-color: var(--accent);
	color: var(--dark);
}

.kiemo-scope .kiemo-btn-solid:hover {
	background-color: transparent;
	color: var(--accent);
}

.kiemo-scope .kiemo-btn-outline {
	background-color: transparent;
	color: var(--accent);
}

.kiemo-scope .kiemo-btn-outline:hover {
	background-color: var(--accent);
	color: var(--dark);
}

.kiemo-scope .kiemo-btn-sm {
	padding: .75rem 1.25rem;
	letter-spacing: .15em;
}

.kiemo-scope .kiemo-btn-block {
	display: block;
	width: 100%;
}

.kiemo-scope .kiemo-center-cta {
	text-align: center;
	padding-top: 2rem;
}

/* --------------------------------------------------------------------------
   5. HEADER
   -------------------------------------------------------------------------- */

.kiemo-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background-color: rgba(11, 19, 16, .9);
	backdrop-filter: blur(12px);
	border-bottom: 1px solid rgba(18, 29, 25, .5);
}

/* Push down when the WP admin bar is present so it can't overlap. */
.admin-bar .kiemo-header { top: 32px; }

@media (max-width: 782px) {
	.admin-bar .kiemo-header { top: 46px; }
}

.kiemo-scope .kiemo-header-inner {
	max-width: var(--max);
	margin-inline: auto;
	padding-inline: var(--pad);
	height: 5rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.kiemo-scope .kiemo-logo {
	font-family: "Playfair Display", Georgia, serif;
	font-size: 1.25rem;
	letter-spacing: .2em;
	transition: color .3s;
}

.kiemo-scope .kiemo-logo:hover { color: var(--accent); }

.kiemo-scope .kiemo-nav-desktop {
	display: none;
	align-items: center;
	gap: 2rem;
}

.kiemo-scope .kiemo-nav-link {
	font-size: .75rem;
	text-transform: uppercase;
	letter-spacing: .15em;
	color: var(--muted);
	transition: color .3s;
}

.kiemo-scope .kiemo-nav-link:hover,
.kiemo-scope .kiemo-nav-link.is-active,
.kiemo-scope .kiemo-mobile-link.is-active {
	color: var(--accent);
}

.kiemo-scope .kiemo-header-cta { display: none; }

.kiemo-scope .kiemo-burger {
	color: var(--text);
	line-height: 0;
}

.kiemo-scope .kiemo-burger svg {
	width: 1.5rem;
	height: 1.5rem;
}

@media (min-width: 768px) {
	.kiemo-scope .kiemo-nav-desktop { display: flex; }
	.kiemo-scope .kiemo-header-cta  { display: block; }
	.kiemo-scope .kiemo-burger      { display: none; }
}

/* Full-screen slide-in panel.
   Note: backdrop-filter on .kiemo-header would make the header a containing
   block for position:fixed children, pinning the panel to the header box.
   It is disabled below the desktop breakpoint so the panel can cover the
   viewport; the header keeps its solid rgba background there. */

@media (max-width: 767px) {
	.kiemo-header { backdrop-filter: none; }
}

/* The panel sits ABOVE the header bar so no logo or nav shows through it.
   That hides the hamburger, so the panel carries its own close button. */
.kiemo-scope .kiemo-header-inner {
	position: relative;
	z-index: 1;
}

.kiemo-scope .kiemo-mobile-menu {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 2;
	background-color: var(--card);
	padding: 1.5rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	gap: 1.75rem;
	overflow-y: auto;
	overscroll-behavior: contain;

	/* Off-canvas to the right; slides left on open, back right on close. */
	transform: translateX(100%);
	visibility: hidden;
	transition: transform .35s cubic-bezier(.4, 0, .2, 1), visibility 0s linear .35s;
}

.kiemo-scope .kiemo-mobile-menu.is-open {
	transform: translateX(0);
	visibility: visible;
	transition: transform .35s cubic-bezier(.4, 0, .2, 1), visibility 0s;
}

.admin-bar .kiemo-scope .kiemo-mobile-menu { top: 46px; }

@media (min-width: 768px) {
	.kiemo-scope .kiemo-mobile-menu { display: none; }
}

.kiemo-scope .kiemo-mobile-link {
	font-size: 1rem;
	text-transform: uppercase;
	letter-spacing: .15em;
	color: var(--muted);
	transition: color .3s;
}

.kiemo-scope .kiemo-mobile-menu .kiemo-btn { margin-top: .75rem; }

.kiemo-scope .kiemo-menu-close {
	position: absolute;
	top: 1.5rem;
	right: 1.5rem;
	color: var(--text);
	line-height: 0;
	padding: .5rem;
	transition: color .3s;
}

.kiemo-scope .kiemo-menu-close:hover { color: var(--accent); }

.kiemo-scope .kiemo-menu-close svg {
	width: 1.75rem;
	height: 1.75rem;
}

.admin-bar .kiemo-scope .kiemo-menu-close { top: 3.5rem; }

/* The panel is off-canvas at translateX(100%), which would otherwise widen
   the document. Nothing in this design scrolls sideways. */
html, body.kiemo-site { overflow-x: hidden; }

/* Set while the panel is open, to stop the page scrolling behind it. */
body.kiemo-menu-open { overflow: hidden; }

/* --------------------------------------------------------------------------
   6. HERO + TRUST STRIP
   -------------------------------------------------------------------------- */

.kiemo-scope .kiemo-hero {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 6rem var(--pad);
	background-size: cover;
	background-position: center;
}

.kiemo-scope .kiemo-hero.is-tall {
	min-height: calc(100vh - 5rem);
}

.kiemo-scope .kiemo-hero-inner {
	max-width: 56rem;
	text-align: center;
}

.kiemo-scope .kiemo-hero .kiemo-eyebrow {
	letter-spacing: .3em;
	margin-bottom: 1.5rem;
}

.kiemo-scope .kiemo-hero-title {
	font-family: "Playfair Display", Georgia, serif;
	font-size: 1.875rem;
	line-height: 1.15;
	font-weight: 400;
	max-width: 48rem;
	margin-inline: auto;
}

.kiemo-scope .kiemo-hero-text {
	font-size: .875rem;
	font-weight: 300;
	line-height: 1.7;
	color: var(--muted);
	max-width: 36rem;
	margin: 1.5rem auto 0;
}

.kiemo-scope .kiemo-hero-actions { padding-top: 2.5rem; }

@media (min-width: 640px)  { .kiemo-scope .kiemo-hero-title { font-size: 2.25rem; } }
@media (min-width: 768px)  { .kiemo-scope .kiemo-hero-title { font-size: 3rem; } .kiemo-scope .kiemo-hero-text { font-size: 1rem; } }
@media (min-width: 1024px) { .kiemo-scope .kiemo-hero-title { font-size: 3.75rem; } }

.kiemo-scope .kiemo-strip {
	background-color: rgba(18, 29, 25, .4);
	border-block: 1px solid var(--card);
	padding: 2.5rem var(--pad);
}

.kiemo-scope .kiemo-strip-inner {
	max-width: var(--max);
	margin-inline: auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 3rem;
	opacity: .4;
	filter: grayscale(1);
	user-select: none;
}

.kiemo-scope .kiemo-strip-inner span {
	font-family: "Playfair Display", Georgia, serif;
	font-size: .875rem;
	text-transform: uppercase;
	letter-spacing: .4em;
}

@media (min-width: 768px) {
	.kiemo-scope .kiemo-strip-inner { gap: 6rem; }
}

/* --------------------------------------------------------------------------
   7. CARDS (services + testimonials)
   -------------------------------------------------------------------------- */

.kiemo-scope .kiemo-card {
	background-color: var(--card);
	border: 1px solid rgba(18, 29, 25, .5);
	padding: 2rem;
	transition: border-color .3s;
}

.kiemo-scope .kiemo-card:hover {
	border-color: rgba(212, 195, 163, .3);
}

.kiemo-scope .kiemo-card-num {
	font-family: "Playfair Display", Georgia, serif;
	font-size: 1.5rem;
	color: var(--accent);
	margin-bottom: 1.5rem;
}

.kiemo-scope .kiemo-card-title {
	font-size: 1.125rem;
	font-weight: 500;
	margin-bottom: .75rem;
}

.kiemo-scope .kiemo-card-text {
	font-size: .875rem;
	font-weight: 300;
	line-height: 1.7;
	color: var(--muted);
}

.kiemo-scope .kiemo-quote-card:hover { border-color: rgba(18, 29, 25, .5); }

.kiemo-scope .kiemo-stars {
	color: var(--accent);
	letter-spacing: .25em;
	margin-bottom: 1rem;
}

.kiemo-scope .kiemo-quote {
	font-size: .875rem;
	font-weight: 300;
	font-style: italic;
	line-height: 1.7;
	color: var(--muted);
	margin-bottom: 1.5rem;
}

.kiemo-scope .kiemo-quote-author {
	font-size: .75rem;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: .15em;
}

/* --------------------------------------------------------------------------
   8. ZIGZAG + SPLIT
   -------------------------------------------------------------------------- */

.kiemo-scope .kiemo-zigzag {
	display: flex;
	flex-direction: column;
	gap: 6rem;
	padding-top: 2.5rem;
}

.kiemo-scope .kiemo-zz-row,
.kiemo-scope .kiemo-split {
	display: grid;
	grid-template-columns: 1fr;
	gap: 3rem;
	align-items: center;
}

@media (min-width: 768px) {
	.kiemo-scope .kiemo-zz-row,
	.kiemo-scope .kiemo-split {
		grid-template-columns: repeat(2, 1fr);
	}

	/* Flip by reordering the grid children — no source-order duplication. */
	.kiemo-scope .kiemo-zz-row.is-flipped .kiemo-zz-media,
	.kiemo-scope .kiemo-split.is-flipped .kiemo-split-media { order: 2; }

	.kiemo-scope .kiemo-zz-row.is-flipped .kiemo-zz-body,
	.kiemo-scope .kiemo-split.is-flipped .kiemo-split-body { order: 1; }
}

.kiemo-scope .kiemo-zz-media {
	aspect-ratio: 16 / 10;
	background-size: cover;
	background-position: center;
	border: 1px solid var(--card);
}

.kiemo-scope .kiemo-split-media {
	aspect-ratio: 4 / 3;
	background-size: cover;
	background-position: center;
	border: 1px solid var(--card);
}

.kiemo-scope .kiemo-zz-title {
	font-family: "Playfair Display", Georgia, serif;
	font-size: 1.25rem;
	color: var(--accent);
	margin-bottom: 1rem;
}

.kiemo-scope .kiemo-zz-text {
	font-size: .875rem;
	font-weight: 300;
	line-height: 1.75;
	color: var(--muted);
}

@media (min-width: 768px) {
	.kiemo-scope .kiemo-zz-title { font-size: 1.5rem; }
}

.kiemo-scope .kiemo-split-body > * + * { margin-top: 1.5rem; }

/* --------------------------------------------------------------------------
   9. BENEFITS
   -------------------------------------------------------------------------- */

.kiemo-scope .kiemo-benefits {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--gap);
	margin-top: 4rem;
	padding-top: 3rem;
	border-top: 1px solid rgba(18, 29, 25, .4);
}

@media (min-width: 768px) {
	.kiemo-scope .kiemo-benefits { grid-template-columns: repeat(3, 1fr); }
}

.kiemo-scope .kiemo-benefit-title {
	font-size: 1rem;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: .025em;
	color: var(--accent);
	margin-bottom: .75rem;
}

.kiemo-scope .kiemo-benefit-text {
	font-size: .75rem;
	font-weight: 300;
	line-height: 1.7;
	color: var(--muted);
}

/* --------------------------------------------------------------------------
   10. GALLERY + LIGHTBOX
   -------------------------------------------------------------------------- */

.kiemo-scope .kiemo-gallery {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem;
}

@media (min-width: 768px) {
	.kiemo-scope .kiemo-cols-2,
	.kiemo-scope .kiemo-cols-3,
	.kiemo-scope .kiemo-cols-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
	.kiemo-scope .kiemo-cols-3 { grid-template-columns: repeat(3, 1fr); }
	.kiemo-scope .kiemo-cols-4 { grid-template-columns: repeat(4, 1fr); }
}

.kiemo-scope .kiemo-gallery-item {
	display: block;
	position: relative;
	overflow: hidden;
	border: 1px solid var(--card);
	background-color: var(--card);
}

.kiemo-scope .kiemo-gallery-item img {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	opacity: .8;
	transition: opacity .5s, transform .5s;
}

/* Match the cell to the photos' own orientation. A 3:4 phone shot in a 4:3
   cell loses ~44% of its height, which is exactly where the subject is on
   the tree-planting photos (tall tree, crane above it). */
.kiemo-scope .kiemo-gallery.is-square img   { aspect-ratio: 1 / 1; }
.kiemo-scope .kiemo-gallery.is-portrait img { aspect-ratio: 3 / 4; }

.kiemo-scope .kiemo-gallery-item:hover img {
	opacity: 1;
	transform: scale(1.05);
}

.kiemo-lightbox {
	position: fixed;
	inset: 0;
	z-index: 100000;
	background-color: rgba(11, 19, 16, .95);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity .3s;
}

.kiemo-lightbox[hidden] { display: none; }
.kiemo-lightbox.is-open { opacity: 1; }

.kiemo-scope .kiemo-lightbox-close {
	position: absolute;
	top: 1.5rem;
	right: 1.5rem;
	color: var(--text);
	padding: .5rem;
	line-height: 0;
	transition: color .3s;
}

.kiemo-scope .kiemo-lightbox-close:hover { color: var(--accent); }

.kiemo-scope .kiemo-lightbox-close svg {
	width: 2.5rem;
	height: 2.5rem;
}

.kiemo-scope #kiemo-lightbox-img {
	max-height: 90vh;
	max-width: 90vw;
	object-fit: contain;
	pointer-events: none;
	box-shadow: 0 25px 50px -12px rgba(0, 0, 0, .5);
}

/* --------------------------------------------------------------------------
   11. CTA BAND
   -------------------------------------------------------------------------- */

.kiemo-cta {
	padding: 5rem var(--pad);
	text-align: center;
}

.kiemo-cta.is-card {
	background-color: var(--card);
	border-top: 1px solid rgba(18, 29, 25, .6);
}

.kiemo-cta.is-divider {
	border-top: 1px solid rgba(18, 29, 25, .5);
}

.kiemo-scope .kiemo-cta-inner {
	max-width: 42rem;
	margin-inline: auto;
}

.kiemo-scope .kiemo-cta-text {
	font-size: .875rem;
	font-weight: 300;
	color: var(--muted);
	max-width: 32rem;
	margin: 1.5rem auto 0;
}

.kiemo-scope .kiemo-cta-actions { padding-top: 2rem; }

.kiemo-scope .kiemo-cta-phone {
	margin-top: 1rem;
	font-size: .875rem;
	font-weight: 500;
}

.kiemo-scope .kiemo-cta-phone a {
	color: var(--accent);
	transition: color .3s;
}

.kiemo-scope .kiemo-cta-phone a:hover { color: var(--text); }

/* --------------------------------------------------------------------------
   12. CONTACT + FORM
   -------------------------------------------------------------------------- */

.kiemo-scope .kiemo-contact {
	display: grid;
	grid-template-columns: 1fr;
	gap: 4rem;
}

@media (min-width: 1024px) {
	.kiemo-scope .kiemo-contact { grid-template-columns: repeat(2, 1fr); }
}

.kiemo-scope .kiemo-contact-info > * + * { margin-top: 2rem; }

.kiemo-scope .kiemo-contact-title {
	font-size: 1.875rem;
	font-weight: 700;
	color: #fff;
	margin-bottom: 1rem;
}

@media (min-width: 768px) {
	.kiemo-scope .kiemo-contact-title { font-size: 2.25rem; }
}

.kiemo-scope .kiemo-contact-lead {
	font-size: .875rem;
	font-weight: 500;
	line-height: 1.7;
}

.kiemo-scope .kiemo-contact-rows > * + * { margin-top: 1.5rem; }

.kiemo-scope .kiemo-contact-row {
	display: flex;
	align-items: center;
	gap: 1rem;
	font-size: .875rem;
	font-weight: 500;
	color: #fff;
}

.kiemo-scope .kiemo-contact-row svg {
	width: 1.25rem;
	height: 1.25rem;
	flex-shrink: 0;
	color: var(--accent);
}

.kiemo-scope .kiemo-contact-row a:hover { color: var(--accent); }

.kiemo-scope .kiemo-social {
	display: flex;
	gap: 1rem;
	padding-top: .5rem;
}

.kiemo-scope .kiemo-social a {
	width: 2.5rem;
	height: 2.5rem;
	border-radius: 9999px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background-color .3s, color .3s;
}

.kiemo-scope .kiemo-social a svg {
	width: 1.25rem;
	height: 1.25rem;
}

.kiemo-scope .kiemo-social a.is-solid {
	background-color: var(--accent);
	color: var(--dark);
}

.kiemo-scope .kiemo-social a.is-outline {
	border: 2px solid var(--accent);
	color: var(--accent);
}

.kiemo-scope .kiemo-social a.is-outline:hover {
	background-color: var(--accent);
	color: var(--dark);
}

.kiemo-scope .kiemo-form-card {
	background-color: var(--card);
	border: 1px solid rgba(18, 29, 25, .6);
	padding: 2rem;
	box-shadow: 0 20px 25px -5px rgba(0, 0, 0, .3);
}

.kiemo-scope .kiemo-form > * + * { margin-top: 1.5rem; }

.kiemo-scope .kiemo-field {
	display: flex;
	flex-direction: column;
	gap: .5rem;
}

.kiemo-scope .kiemo-field label {
	font-size: .75rem;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: .05em;
	color: #fff;
}

.kiemo-scope .kiemo-field input,
.kiemo-scope .kiemo-field textarea {
	background-color: var(--dark);
	border: 1px solid rgba(18, 29, 25, .8);
	color: var(--text);
	font-size: .875rem;
	padding: .75rem 1rem;
	transition: border-color .3s;
}

.kiemo-scope .kiemo-field input:focus,
.kiemo-scope .kiemo-field textarea:focus {
	outline: none;
	border-color: var(--accent);
}

.kiemo-scope .kiemo-field textarea { resize: none; }

/* Honeypot: hidden from humans, still reachable by bots that parse the DOM. */
.kiemo-scope .kiemo-hp {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

/* -------- Result modal --------
   Same palette and type scale as the rest of the design: card background,
   accent border and icon, Playfair heading, uppercase accent button. */

.kiemo-modal {
	position: fixed;
	inset: 0;
	z-index: 100001;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1.5rem;
	background-color: rgba(11, 19, 16, .92);
	opacity: 0;
	visibility: hidden;
	transition: opacity .3s, visibility 0s linear .3s;
}

.kiemo-modal.is-open {
	opacity: 1;
	visibility: visible;
	transition: opacity .3s, visibility 0s;
}

.kiemo-scope .kiemo-modal-box {
	position: relative;
	width: 100%;
	max-width: 28rem;
	background-color: var(--card);
	border: 1px solid rgba(212, 195, 163, .35);
	padding: 3rem 2rem 2.5rem;
	text-align: center;
	box-shadow: 0 25px 50px -12px rgba(0, 0, 0, .6);
	transform: translateY(1rem);
	transition: transform .3s cubic-bezier(.4, 0, .2, 1);
}

.kiemo-modal.is-open .kiemo-modal-box { transform: translateY(0); }

.kiemo-scope .kiemo-modal-box.is-error { border-color: rgba(200, 119, 119, .5); }

.kiemo-scope .kiemo-modal-close {
	position: absolute;
	top: 1rem;
	right: 1rem;
	color: var(--muted);
	padding: .5rem;
	line-height: 0;
	transition: color .3s;
}

.kiemo-scope .kiemo-modal-close:hover { color: var(--accent); }

.kiemo-scope .kiemo-modal-close svg {
	width: 1.25rem;
	height: 1.25rem;
}

.kiemo-scope .kiemo-modal-icon {
	width: 3.5rem;
	height: 3.5rem;
	margin: 0 auto 1.5rem;
	border: 1px solid var(--accent);
	border-radius: 9999px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--accent);
}

.kiemo-scope .kiemo-modal-box.is-error .kiemo-modal-icon {
	border-color: #C77;
	color: #E9A;
}

.kiemo-scope .kiemo-modal-icon svg {
	width: 1.75rem;
	height: 1.75rem;
}

.kiemo-scope .kiemo-modal-title {
	font-family: "Playfair Display", Georgia, serif;
	font-size: 1.5rem;
	line-height: 1.25;
	margin-bottom: 1rem;
}

.kiemo-scope .kiemo-modal-text {
	font-size: .875rem;
	font-weight: 300;
	line-height: 1.7;
	color: var(--muted);
	margin-bottom: 2rem;
}

.kiemo-scope .kiemo-modal-ok { min-width: 10rem; }

/* --------------------------------------------------------------------------
   13. FOOTER
   -------------------------------------------------------------------------- */

.kiemo-footer {
	background-color: var(--dark);
	border-top: 1px solid var(--card);
	padding: 3rem var(--pad);
}

.kiemo-scope .kiemo-footer-grid {
	max-width: var(--max);
	margin-inline: auto;
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--gap);
}

@media (min-width: 768px) {
	.kiemo-scope .kiemo-footer-grid { grid-template-columns: repeat(4, 1fr); }
}

.kiemo-scope .kiemo-footer-mark {
	width: 3rem;
	height: 3rem;
	color: #fff;
}

.kiemo-scope .kiemo-footer-tagline {
	font-size: .75rem;
	line-height: 1.7;
	max-width: 200px;
	padding-top: 1rem;
}

/* Column labels — deliberately styled apart from the links below them
   (uppercase, tracked out, muted) so they never read as clickable. */
.kiemo-scope .kiemo-footer-head {
	font-size: .6875rem;
	font-weight: 700;
	color: rgba(255, 255, 255, .55);
	text-transform: uppercase;
	letter-spacing: .12em;
	margin-bottom: 1.125rem;
	cursor: default;
}

.kiemo-scope .kiemo-footer-links {
	display: flex;
	flex-direction: column;
	gap: .75rem;
	font-size: .75rem;
	font-weight: 500;
}

.kiemo-scope .kiemo-footer-links a {
	color: #fff;
	transition: color .3s;
	text-decoration: none;
	text-underline-offset: .25em;
}
.kiemo-scope .kiemo-footer-links a:hover,
.kiemo-scope .kiemo-footer-links a:focus-visible {
	color: var(--accent);
	text-decoration: underline;
}
.kiemo-scope .kiemo-footer-links .kiemo-social-sm a:hover,
.kiemo-scope .kiemo-footer-links .kiemo-social-sm a:focus-visible { text-decoration: none; }

.kiemo-scope .kiemo-social-sm a {
	width: 2rem;
	height: 2rem;
	background-color: #fff;
	color: var(--dark);
}

.kiemo-scope .kiemo-social-sm a svg {
	width: 1rem;
	height: 1rem;
}

.kiemo-scope .kiemo-social-sm a:hover { background-color: var(--accent); }

.kiemo-scope .kiemo-footer-bottom {
	max-width: var(--max);
	margin: 2.5rem auto 0;
	border-top: 1px solid rgba(18, 29, 25, .5);
	padding-top: 1.5rem;
	text-align: center;
	font-size: .75rem;
	color: var(--muted);
}

.kiemo-scope .kiemo-footer-credit {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: .3em;
	margin-top: .5rem;
	font-size: .6875rem;
}

.kiemo-scope .kiemo-footer-heart {
	width: .9em;
	height: .9em;
	max-width: .9em;
	max-height: .9em;
	color: #e2554f;
	flex-shrink: 0;
	display: inline-block;
	vertical-align: -.1em;
}

.kiemo-scope .kiemo-footer-credit a {
	color: #fff;
	font-weight: 600;
	text-decoration: none;
	text-underline-offset: .25em;
	transition: color .3s;
}
.kiemo-scope .kiemo-footer-credit a:hover,
.kiemo-scope .kiemo-footer-credit a:focus-visible {
	color: var(--accent);
	text-decoration: underline;
}

/* --------------------------------------------------------------------------
   14. PAGE CHROME
   Applied to <body> so the dark background covers the full viewport even when
   page content is short.
   -------------------------------------------------------------------------- */

body.kiemo-site {
	background-color: #0B1310;
	color: #E8ECEA;
	margin: 0;
}

body.kiemo-site .site-header,
body.kiemo-site .site-footer {
	display: none; /* Hello Elementor's own header/footer — we supply our own. */
}

@media (prefers-reduced-motion: reduce) {
	.kiemo-scope *,
	.kiemo-scope *::before,
	.kiemo-scope *::after {
		transition-duration: .01ms !important;
		animation-duration: .01ms !important;
	}
}
