/* =========================================================================
   Oklea Agency — one-page theme
   Matches the "utkast 1" wireframe: warm cream canvas, rounded panels,
   terracotta accents, sage-green feature sections, dark footer.
   ========================================================================= */

:root {
	--bg:          #f4ede1;   /* page canvas (warm cream) */
	--surface:     #ffffff;   /* white cards */
	--peach:       #f8ddca;   /* light peach badges / hero panel */
	--peach-soft:  #fbe8dc;
	--sage:        #d4ddce;   /* green feature sections */
	--sage-2:      #c7d2be;   /* nested green cards */
	--sage-tag:    #dbe2d3;   /* service tag pills */
	--terra:       #cf6743;   /* primary terracotta */
	--terra-dark:  #bb5834;
	--terra-soft:  #f4c9b6;
	--ink:         #241f1b;   /* headings / dark surfaces */
	--ink-soft:    #2c2721;
	--text:        #33302b;
	--muted:       #837a70;   /* body/muted text */
	--muted-sage:  #6f7a68;   /* muted text on sage */
	--line:        rgba(36, 31, 27, 0.10);
	--radius:      30px;
	--radius-md:   20px;
	--radius-sm:   14px;
	--shadow-sm:   0 1px 2px rgba(36, 31, 27, 0.04);
	--shadow-card: 0 18px 40px -24px rgba(36, 31, 27, 0.28);
	--maxw:        1160px;
	--font-head:   'Plus Jakarta Sans', system-ui, sans-serif;
	--font-body:   'Inter', system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; scroll-padding-top: 96px; }

body {
	margin: 0;
	background: var(--bg);
	color: var(--text);
	font-family: var(--font-body);
	font-size: 16px;
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

/* -------------------------------- Layout -------------------------------- */

.oklea-container {
	width: 100%;
	max-width: var(--maxw);
	margin-inline: auto;
	padding-inline: 24px;
}
.oklea-container--narrow { max-width: 900px; }

.oklea-section { padding-block: 46px; }
.oklea-section--hero { padding-top: 34px; }
.oklea-section--clients { padding-block: 14px 34px; }
.oklea-section--faq { padding-bottom: 30px; }

.oklea-section-head { margin-bottom: 34px; }
.oklea-section-head--center {
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 16px;
}

/* ------------------------------ Typography ------------------------------ */

.oklea-heading {
	font-family: var(--font-head);
	font-weight: 800;
	color: var(--ink);
	line-height: 1.1;
	letter-spacing: -0.02em;
	margin: 0;
	font-size: clamp(1.7rem, 3.2vw, 2.4rem);
}
.oklea-heading--xl { font-size: clamp(2rem, 4.2vw, 2.9rem); }
.oklea-heading--light { color: #fff; }
.oklea-heading--display { font-family: 'Bricolage Grotesque', var(--font-head); }

.oklea-muted { color: var(--muted); margin: 0; }

/* -------------------------------- Badges -------------------------------- */

.oklea-badge {
	display: inline-block;
	font-family: var(--font-head);
	font-weight: 600;
	font-size: 0.78rem;
	line-height: 1;
	padding: 8px 15px;
	border-radius: 999px;
	letter-spacing: 0.01em;
}
.oklea-badge--peach   { background: var(--peach); color: var(--terra-dark); }
.oklea-badge--light   { background: #fff; color: var(--terra-dark); }
.oklea-badge--onterra { background: rgba(255, 255, 255, 0.22); color: #fff; }

/* -------------------------------- Buttons ------------------------------- */

.oklea-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	font-family: var(--font-head);
	font-weight: 600;
	font-size: 0.95rem;
	padding: 13px 24px;
	border-radius: 999px;
	border: 1.5px solid transparent;
	cursor: pointer;
	transition: transform 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
	white-space: nowrap;
}
.oklea-btn:active { transform: translateY(1px); }

.oklea-btn--primary {
	background: var(--terra);
	color: #fff;
	box-shadow: 0 10px 22px -12px rgba(207, 103, 67, 0.9);
}
.oklea-btn--primary:hover { background: var(--terra-dark); }

.oklea-btn--ghost {
	background: transparent;
	color: var(--ink);
	border-color: rgba(36, 31, 27, 0.18);
}
.oklea-btn--ghost:hover { background: rgba(36, 31, 27, 0.04); }

.oklea-btn--onterra {
	background: #fff;
	color: var(--terra-dark);
}
.oklea-btn--onterra:hover { background: var(--peach-soft); }

.oklea-btn--white {
	background: #fff;
	color: var(--ink);
	box-shadow: 0 10px 22px -16px rgba(36, 31, 27, 0.5);
}
.oklea-btn--white:hover { background: #fff; box-shadow: 0 12px 26px -14px rgba(36, 31, 27, 0.55); }

/* -------------------------------- Header -------------------------------- */

.oklea-header {
	position: sticky;
	top: 0;
	z-index: 100;
	padding-block: 14px;
	background: color-mix(in srgb, var(--bg) 86%, transparent);
	backdrop-filter: blur(10px);
	transition: box-shadow 0.2s ease, background 0.2s ease;
}
.oklea-header.is-scrolled {
	box-shadow: 0 6px 24px -18px rgba(36, 31, 27, 0.4);
	background: color-mix(in srgb, var(--bg) 94%, transparent);
}
.oklea-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
}

.oklea-logo {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	font-family: var(--font-head);
	font-weight: 800;
	font-size: 1.18rem;
	color: var(--ink);
	letter-spacing: -0.01em;
}
.oklea-logo__dot {
	width: 11px; height: 11px;
	border-radius: 50%;
	background: var(--terra);
	flex: none;
}
.oklea-logo--light { color: #fff; }
.oklea-logo img { max-height: 40px; width: auto; }

.oklea-nav__list {
	display: flex;
	align-items: center;
	gap: 30px;
	list-style: none;
	margin: 0;
	padding: 0;
}
.oklea-nav__list a {
	font-family: var(--font-head);
	font-weight: 500;
	font-size: 0.95rem;
	color: var(--text);
	transition: color 0.15s ease;
}
.oklea-nav__list a:hover { color: var(--terra); }

.oklea-header__actions {
	display: flex;
	align-items: center;
	gap: 14px;
}

.oklea-lang {
	display: inline-flex;
	align-items: center;
	background: #fff;
	border-radius: 999px;
	padding: 4px;
	gap: 2px;
	box-shadow: var(--shadow-sm);
}
.oklea-lang__opt {
	font-family: var(--font-head);
	font-weight: 600;
	font-size: 0.78rem;
	padding: 6px 11px;
	border: none;
	background: transparent;
	cursor: pointer;
	border-radius: 999px;
	color: var(--muted);
	transition: background 0.15s ease, color 0.15s ease;
}
.oklea-lang__opt:hover { color: var(--ink); }
.oklea-lang__opt.is-current { background: var(--terra); color: #fff; }
.oklea-lang__opt.is-current:hover { color: #fff; }

.oklea-burger {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 42px; height: 42px;
	border: none;
	background: #fff;
	border-radius: 12px;
	cursor: pointer;
	box-shadow: var(--shadow-sm);
}
.oklea-burger span {
	display: block;
	width: 18px; height: 2px;
	margin-inline: auto;
	background: var(--ink);
	border-radius: 2px;
	transition: transform 0.2s ease, opacity 0.2s ease;
}

/* --------------------------------- Hero --------------------------------- */

.oklea-hero {
	background: var(--peach);
	border-radius: var(--radius);
	padding: clamp(28px, 4vw, 52px);
	display: grid;
	grid-template-columns: 1.05fr 0.95fr;
	gap: clamp(28px, 4vw, 56px);
	align-items: center;
}
.oklea-hero__content { display: flex; flex-direction: column; align-items: flex-start; gap: 22px; }
.oklea-hero__title {
	font-family: 'Bricolage Grotesque', var(--font-head);
	font-weight: 800;
	color: var(--ink);
	font-size: clamp(2.1rem, 4.6vw, 3.25rem);
	line-height: 1.06;
	letter-spacing: -0.025em;
	margin: 0;
}
.oklea-hero__lead {
	color: #6b5f54;
	font-size: 1.02rem;
	max-width: 42ch;
	margin: 0;
}
.oklea-hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 4px; }

.oklea-hero__media { position: relative; }
.oklea-hero__image {
	width: 100%;
	height: auto;
	aspect-ratio: 3 / 2;
	object-fit: cover;
	border-radius: var(--radius-md);
	display: block;
}

/* ------------------------------- Clients -------------------------------- */

.oklea-section--clients .oklea-container {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 28px;
	text-align: center;
}
.oklea-clients__title {
	color: var(--terra);
	font-size: 0.9rem;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	font-weight: 600;
	margin: 0;
}
.oklea-clients__grid {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 28px 48px;
	list-style: none;
	margin: 0;
	padding: 0;
	width: 100%;
}
.oklea-clients__item {
	display: inline-flex;
	align-items: center;
	justify-content: center;
}
.oklea-clients__link {
	display: inline-flex;
	align-items: center;
}
.oklea-clients__logo {
	display: block;
	width: auto;
	max-width: 150px;
	max-height: 46px;
	object-fit: contain;
	filter: grayscale(1);
	opacity: 0.65;
	transition: filter 0.2s ease, opacity 0.2s ease;
}
.oklea-clients__item:hover .oklea-clients__logo {
	filter: grayscale(0);
	opacity: 1;
}

/* --------------------------------- Panels ------------------------------- */

.oklea-panel {
	border-radius: var(--radius);
	padding: clamp(28px, 4vw, 56px);
}
.oklea-panel--sage  { background: var(--sage); }
.oklea-panel--white { background: var(--surface); box-shadow: var(--shadow-card); }
.oklea-panel--terra { background: var(--terra); }

/* ------------------------------ What we do ------------------------------ */

.oklea-whatwedo {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(28px, 4vw, 56px);
	align-items: start;
}
.oklea-whatwedo__intro { display: flex; flex-direction: column; align-items: flex-start; gap: 18px; }
.oklea-whatwedo__intro .oklea-muted { color: var(--muted-sage); }
.oklea-whatwedo__accent {
	font-family: var(--font-head);
	font-weight: 700;
	color: var(--ink);
	font-size: 1.08rem;
	margin: 0;
}
.oklea-whatwedo__list { display: flex; flex-direction: column; gap: 12px; }
.oklea-whatwedo__label {
	font-family: var(--font-head);
	font-weight: 700;
	color: var(--ink);
	margin-bottom: 4px;
}
.oklea-check {
	display: flex;
	align-items: center;
	gap: 14px;
	background: #fff;
	border-radius: var(--radius-sm);
	padding: 16px 20px;
	font-weight: 500;
	color: var(--ink);
	box-shadow: var(--shadow-sm);
}
.oklea-check__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 24px; height: 24px;
	flex: none;
	border-radius: 50%;
	background: var(--terra);
	color: #fff;
	font-size: 0.8rem;
	font-weight: 700;
}

/* ------------------------------- Services ------------------------------- */

.oklea-services {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 22px;
}
.oklea-service {
	background: var(--surface);
	border-radius: var(--radius-md);
	padding: 30px;
	box-shadow: var(--shadow-card);
	display: flex;
	flex-direction: column;
	gap: 14px;
}
.oklea-service__head { display: flex; align-items: center; gap: 16px; }
.oklea-service__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 46px; height: 46px;
	flex: none;
	border-radius: 12px;
	background: var(--peach);
	color: var(--terra-dark);
}
.oklea-service__icon svg { width: 24px; height: 24px; }
.oklea-service__title {
	font-family: var(--font-head);
	font-weight: 700;
	font-size: 1.22rem;
	color: var(--ink);
	margin: 0;
}
.oklea-service__text { font-size: 0.96rem; }

.oklea-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	list-style: none;
	margin: 4px 0 0;
	padding: 0;
}
.oklea-tag {
	background: var(--sage-tag);
	color: #4c5545;
	font-size: 0.8rem;
	font-weight: 500;
	padding: 6px 13px;
	border-radius: 999px;
}

/* --------------------------------- About -------------------------------- */

.oklea-about { display: flex; flex-direction: column; gap: clamp(30px, 4vw, 48px); }
.oklea-about__intro { display: flex; flex-direction: column; align-items: flex-start; gap: 16px; }
.oklea-about__lead {
	font-family: var(--font-head);
	font-weight: 500;
	color: var(--ink);
	font-size: 1.05rem;
	margin: 0;
}
.oklea-about__body { display: flex; flex-direction: column; gap: 14px; }
.oklea-about__body p { margin: 0; color: var(--muted); font-size: 0.95rem; }

.oklea-about__stats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
}
.oklea-stat {
	background: var(--peach);
	border-radius: var(--radius-sm);
	padding: 16px 22px;
	display: flex;
	align-items: baseline;
	gap: 12px;
}
.oklea-stat__num {
	font-family: var(--font-head);
	font-weight: 800;
	font-size: 1.7rem;
	color: var(--terra-dark);
	line-height: 1;
}
.oklea-stat__label { color: #6b5f54; font-size: 0.92rem; font-weight: 500; }

.oklea-about__why-title {
	font-family: var(--font-head);
	font-weight: 700;
	font-size: 1.3rem;
	color: var(--ink);
	margin: 0 0 20px;
}
.oklea-why-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
}
.oklea-why {
	background: var(--sage-2);
	border-radius: var(--radius-sm);
	padding: 22px;
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.oklea-why__icon {
	width: 34px; height: 34px;
	border-radius: 10px;
	background: var(--terra);
	display: inline-block;
}
.oklea-why__title {
	font-family: var(--font-head);
	font-weight: 700;
	font-size: 1rem;
	color: var(--ink);
	margin: 0;
}
.oklea-why__text { color: var(--muted-sage); font-size: 0.86rem; margin: 0; line-height: 1.55; }

/* --------------------------------- Offer -------------------------------- */

.oklea-offer {
	display: grid;
	grid-template-columns: 1.5fr auto;
	gap: 32px;
	align-items: center;
}
.oklea-offer__content { display: flex; flex-direction: column; align-items: flex-start; gap: 16px; }
.oklea-offer__text { color: rgba(255, 255, 255, 0.9); max-width: 60ch; margin: 0; }
.oklea-offer__action { display: flex; justify-content: flex-end; }

/* -------------------------------- Contact ------------------------------- */

.oklea-contact {
	display: grid;
	grid-template-columns: 1fr 1.1fr;
	gap: clamp(28px, 4vw, 52px);
	align-items: start;
}
.oklea-contact__intro { display: flex; flex-direction: column; align-items: flex-start; gap: 16px; }
.oklea-contact__cards { display: flex; flex-direction: column; gap: 12px; width: 100%; margin-top: 6px; }
.oklea-contact__card {
	background: var(--sage);
	border-radius: var(--radius-sm);
	padding: 15px 20px;
	font-weight: 500;
	color: var(--ink);
	transition: background 0.15s ease;
}
.oklea-contact__card:hover { background: var(--sage-2); }

.oklea-form { display: flex; flex-direction: column; gap: 14px; }
.oklea-field { width: 100%; }
.oklea-form input,
.oklea-form textarea {
	width: 100%;
	font-family: var(--font-body);
	font-size: 0.98rem;
	color: var(--ink);
	background: #fbfaf7;
	border: 1.5px solid var(--line);
	border-radius: var(--radius-sm);
	padding: 15px 18px;
	transition: border-color 0.15s ease, background 0.15s ease;
}
.oklea-form textarea { resize: vertical; min-height: 120px; }
.oklea-form input::placeholder,
.oklea-form textarea::placeholder { color: #9a938a; }
.oklea-form input:focus,
.oklea-form textarea:focus {
	outline: none;
	border-color: var(--terra);
	background: #fff;
}
.oklea-form__submit { width: 100%; margin-top: 4px; }

.oklea-form-message {
	margin: 4px 0 0;
	font-size: 0.9rem;
	font-weight: 500;
	min-height: 1em;
}
.oklea-form-message.is-success { color: #2f7a44; }
.oklea-form-message.is-error { color: var(--terra-dark); }

/* ---------------------------------- FAQ --------------------------------- */

.oklea-faq { display: flex; flex-direction: column; gap: 14px; }
.oklea-faq__item {
	background: var(--surface);
	border-radius: var(--radius-md);
	box-shadow: var(--shadow-sm);
	overflow: hidden;
}
.oklea-faq__q {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	text-align: left;
	background: none;
	border: none;
	cursor: pointer;
	padding: 22px 26px;
	font-family: var(--font-head);
	font-weight: 700;
	font-size: 1.02rem;
	color: var(--ink);
}
.oklea-faq__icon {
	position: relative;
	display: inline-flex;
	width: 30px; height: 30px;
	flex: none;
	border-radius: 50%;
	background: var(--peach);
	color: var(--terra-dark);
	font-size: 0; /* hide the "+" text glyph; the plus is drawn below for perfect centering */
	transition: transform 0.2s ease;
}
/* Draw the plus as two centered bars so it stays optically centered in both
   the "+" and the rotated "×" state (a text glyph sits slightly off-centre). */
.oklea-faq__icon::before,
.oklea-faq__icon::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 12px;
	height: 2px;
	border-radius: 2px;
	background: currentColor;
	transform: translate(-50%, -50%);
}
.oklea-faq__icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.oklea-faq__item.is-open .oklea-faq__icon { transform: rotate(45deg); }
.oklea-faq__a {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease;
}
.oklea-faq__item.is-open .oklea-faq__a { max-height: 460px; }
.oklea-faq__a p {
	margin: 0;
	padding: 0 26px 24px;
	color: var(--muted);
	font-size: 0.95rem;
}

/* -------------------------------- Footer -------------------------------- */

.oklea-footer { padding-block: 20px 40px; }
.oklea-footer__card {
	background: var(--ink);
	border-radius: var(--radius);
	padding: clamp(30px, 4vw, 48px);
	color: rgba(255, 255, 255, 0.8);
}
.oklea-footer__main {
	display: flex;
	justify-content: space-between;
	gap: 32px;
	flex-wrap: wrap;
}
.oklea-footer__brand { max-width: 340px; }
.oklea-footer__tagline {
	margin: 14px 0 0;
	color: rgba(255, 255, 255, 0.62);
	font-size: 0.95rem;
}
.oklea-footer__contact { display: flex; flex-direction: column; gap: 6px; }
.oklea-footer__label {
	font-family: var(--font-head);
	font-weight: 600;
	font-size: 0.72rem;
	letter-spacing: 0.12em;
	color: rgba(255, 255, 255, 0.45);
	margin-bottom: 8px;
}
.oklea-footer__contact a { color: rgba(255, 255, 255, 0.82); transition: color 0.15s ease; }
.oklea-footer__contact a:hover { color: #fff; }
.oklea-footer__bottom {
	margin-top: 34px;
	padding-top: 22px;
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 12px 24px;
}
.oklea-footer__bottom p {
	margin: 0;
	font-size: 0.85rem;
	color: rgba(255, 255, 255, 0.5);
}
.oklea-footer__legal {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 24px;
}
.oklea-footer__legal a {
	font-size: 0.85rem;
	color: rgba(255, 255, 255, 0.6);
	text-decoration: none;
	transition: color 0.2s ease;
}
.oklea-footer__legal a:hover,
.oklea-footer__legal a:focus-visible {
	color: #fff;
}

/* Fallback single-post content */
.oklea-post__content { margin-top: 18px; }
.oklea-post__content p { color: var(--muted); }

/* ------------------------------ Responsive ------------------------------ */

@media (max-width: 960px) {
	.oklea-hero,
	.oklea-whatwedo,
	.oklea-contact { grid-template-columns: 1fr; }

	.oklea-hero__media { order: -1; }
	.oklea-services { grid-template-columns: 1fr; }
	.oklea-why-grid { grid-template-columns: 1fr 1fr; }
	.oklea-about__stats { grid-template-columns: 1fr 1fr; }

	.oklea-offer { grid-template-columns: 1fr; }
	.oklea-offer__action { justify-content: flex-start; }
}

@media (max-width: 780px) {
	.oklea-header__cta { display: none; }
	.oklea-burger { display: flex; }

	.oklea-nav {
		position: absolute;
		top: calc(100% + 8px);
		left: 16px;
		right: 16px;
		background: #fff;
		border-radius: var(--radius-md);
		padding: 10px;
		box-shadow: var(--shadow-card);
		display: none;
	}
	.oklea-header.is-nav-open .oklea-nav { display: block; }
	.oklea-nav__list { flex-direction: column; align-items: stretch; gap: 2px; }
	.oklea-nav__list a { display: block; padding: 12px 14px; border-radius: 12px; }
	.oklea-nav__list a:hover { background: var(--peach-soft); }
}

@media (max-width: 560px) {
	.oklea-why-grid,
	.oklea-about__stats { grid-template-columns: 1fr; }
	.oklea-container { padding-inline: 18px; }
}
