/* =================================================================
   Mersin Kuru Temizleme — Tema Stilleri v2.0
   Aesthetic: Editorial-luxury · Mediterranean refined
   ================================================================= */

/* ------------------------------------------------------------------
   1. DESIGN TOKENS
------------------------------------------------------------------ */
:root {
	/* Palette — deep forest, warm sand, cream */
	--c-ink:        #0e1f1d;
	--c-deep:       #0f3936;     /* primary brand */
	--c-deep-2:     #185b56;
	--c-sand:       #c08a4f;     /* accent — warm honey */
	--c-sand-soft:  #e9d4b3;
	--c-cream:      #fbf6ec;     /* page bg */
	--c-cream-2:    #f4ecdc;
	--c-paper:      #ffffff;
	--c-text:       #1a2522;
	--c-text-soft:  #586664;
	--c-text-muted: #8a9694;
	--c-line:       #e6dfd0;
	--c-line-soft:  #f0eadb;
	--c-success:    #2a8a5f;
	--c-whatsapp:   #25d366;

	/* Type */
	--font-display: "Fraunces", "Times New Roman", Georgia, serif;
	--font-body:    "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;

	/* Type scale (fluid clamp) */
	--fs-xs:   0.78rem;
	--fs-sm:   0.875rem;
	--fs-base: 1rem;
	--fs-lg:   1.125rem;
	--fs-xl:   clamp(1.25rem, 1.1rem + 0.6vw, 1.5rem);
	--fs-2xl:  clamp(1.5rem, 1.3rem + 1vw, 2rem);
	--fs-3xl:  clamp(1.875rem, 1.6rem + 1.5vw, 2.5rem);
	--fs-4xl:  clamp(2.25rem, 1.8rem + 2.5vw, 3.5rem);
	--fs-5xl:  clamp(2.75rem, 2.2rem + 3.5vw, 4.5rem);

	/* Spacing — 4-pt grid */
	--s-1:  0.25rem;
	--s-2:  0.5rem;
	--s-3:  0.75rem;
	--s-4:  1rem;
	--s-5:  1.25rem;
	--s-6:  1.5rem;
	--s-8:  2rem;
	--s-10: 2.5rem;
	--s-12: 3rem;
	--s-16: 4rem;
	--s-20: 5rem;
	--s-24: 6rem;
	--s-32: 8rem;

	/* Geometry */
	--r-sm:  6px;
	--r-md:  10px;
	--r-lg:  16px;
	--r-xl:  24px;
	--r-pill: 999px;

	/* Shadows — refined, layered */
	--sh-1: 0 1px 2px rgba(14, 31, 29, 0.04);
	--sh-2: 0 4px 16px rgba(14, 31, 29, 0.06), 0 1px 3px rgba(14, 31, 29, 0.04);
	--sh-3: 0 12px 32px rgba(14, 31, 29, 0.08), 0 4px 12px rgba(14, 31, 29, 0.04);
	--sh-deep: 0 24px 60px rgba(14, 31, 29, 0.18);

	/* Motion */
	--ease: cubic-bezier(0.22, 0.61, 0.36, 1);
	--dur-fast: 0.18s;
	--dur:      0.32s;
	--dur-slow: 0.6s;

	/* Layout */
	--container: 1200px;
	--gutter: 24px;
	--header-h: 84px;
	--topbar-h: 38px;
}

/* Customizer overrides hook */
:root {
	--mkt-primary: var(--c-deep);
	--mkt-accent:  var(--c-sand);
}

/* ------------------------------------------------------------------
   2. RESET + BASE
------------------------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
	font-family: var(--font-body);
	font-size: var(--fs-base);
	line-height: 1.65;
	color: var(--c-text);
	background: var(--c-cream);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	text-rendering: optimizeLegibility;
	font-feature-settings: "kern", "liga", "calt";
}

img, svg, video, canvas { display: block; max-width: 100%; height: auto; }
img { vertical-align: middle; }
button { font: inherit; cursor: pointer; background: none; border: none; padding: 0; color: inherit; }
input, textarea, select { font: inherit; color: inherit; }
a { color: var(--c-deep); text-decoration: none; transition: color var(--dur-fast) var(--ease); }
a:hover { color: var(--c-sand); }

/* Selection */
::selection { background: var(--c-sand-soft); color: var(--c-ink); }

/* Skip link */
.skip-link { position: absolute; left: -9999px; }
.skip-link:focus { left: 16px; top: 16px; z-index: 9999; padding: 12px 18px; background: var(--c-deep); color: #fff; border-radius: var(--r-md); }
.screen-reader-text { position: absolute; clip: rect(1px,1px,1px,1px); width: 1px; height: 1px; overflow: hidden; }

/* ------------------------------------------------------------------
   3. TYPOGRAPHY
------------------------------------------------------------------ */
h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4 {
	font-family: var(--font-display);
	font-weight: 500;
	line-height: 1.12;
	letter-spacing: -0.015em;
	color: var(--c-ink);
	font-feature-settings: "ss01", "ss02", "kern", "liga";
}
h1, .h1 { font-size: var(--fs-5xl); font-weight: 400; line-height: 1.05; letter-spacing: -0.02em; }
h2, .h2 { font-size: var(--fs-4xl); font-weight: 450; }
h3, .h3 { font-size: var(--fs-2xl); font-weight: 500; }
h4, .h4 { font-size: var(--fs-xl); font-weight: 500; }
h5 { font-size: var(--fs-lg); font-weight: 600; font-family: var(--font-body); letter-spacing: 0; }
h6 { font-size: var(--fs-base); font-weight: 600; font-family: var(--font-body); letter-spacing: 0; }

p { color: var(--c-text); line-height: 1.7; }
.lede { font-size: var(--fs-lg); line-height: 1.65; color: var(--c-text-soft); }
.eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--c-sand);
	margin-bottom: var(--s-3);
}
.eyebrow::before {
	content: "";
	width: 28px;
	height: 1px;
	background: var(--c-sand);
}

/* Display variant — italic Fraunces with optical sizing */
.display-italic {
	font-style: italic;
	font-variation-settings: "opsz" 144, "SOFT" 100;
}

/* ------------------------------------------------------------------
   4. LAYOUT PRIMITIVES
------------------------------------------------------------------ */
.container {
	width: 100%;
	max-width: var(--container);
	margin: 0 auto;
	padding-inline: var(--gutter);
}
.container-narrow {
	width: 100%;
	max-width: 820px;
	margin: 0 auto;
	padding-inline: var(--gutter);
}

.section {
	padding-block: var(--s-24);
	position: relative;
}
.section-sm { padding-block: var(--s-16); }
.section-xs { padding-block: var(--s-10); }

.section-header {
	max-width: 720px;
	margin: 0 auto var(--s-12);
	text-align: center;
}
.section-header.left { text-align: left; margin-inline: 0; }
.section-header h2 { margin-bottom: var(--s-4); }
.section-header p { color: var(--c-text-soft); font-size: var(--fs-lg); }

.section-dark {
	background: var(--c-deep);
	color: rgba(255,255,255,0.92);
}
.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4 { color: #fff; }
.section-dark p { color: rgba(255,255,255,0.78); }
.section-dark .eyebrow { color: var(--c-sand-soft); }
.section-dark .eyebrow::before { background: var(--c-sand-soft); }

.section-cream {
	background: var(--c-cream-2);
}

@media (max-width: 768px) {
	.section { padding-block: var(--s-16); }
	.section-sm { padding-block: var(--s-12); }
}

/* ------------------------------------------------------------------
   5. BUTTONS
------------------------------------------------------------------ */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 14px 26px;
	font-family: var(--font-body);
	font-size: 0.95rem;
	font-weight: 600;
	letter-spacing: 0.005em;
	border-radius: var(--r-pill);
	border: 1px solid transparent;
	background: var(--c-deep);
	color: #fff;
	cursor: pointer;
	transition: all var(--dur) var(--ease);
	white-space: nowrap;
	line-height: 1;
	position: relative;
	overflow: hidden;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

.btn:hover { transform: translateY(-1px); box-shadow: var(--sh-2); color: #fff; }
.btn:active { transform: translateY(0); }
.btn:focus-visible { outline: 2px solid var(--c-sand); outline-offset: 3px; }

.btn-primary { background: var(--c-deep); color: #fff; }
.btn-primary:hover { background: var(--c-deep-2); color: #fff; }

.btn-accent { background: var(--c-sand); color: var(--c-ink); }
.btn-accent:hover { background: #b27d40; color: var(--c-ink); }

.btn-ghost { background: transparent; color: var(--c-deep); border-color: rgba(15, 57, 54, 0.2); }
.btn-ghost:hover { background: var(--c-deep); color: #fff; border-color: var(--c-deep); }

.btn-light { background: #fff; color: var(--c-deep); border-color: #fff; }
.btn-light:hover { background: var(--c-cream); color: var(--c-deep); }

.btn-outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,0.4); }
.btn-outline-light:hover { background: #fff; color: var(--c-deep); border-color: #fff; }

.btn-whatsapp { background: var(--c-whatsapp); color: #fff; }
.btn-whatsapp:hover { background: #1faa52; color: #fff; }

.btn-lg { padding: 16px 32px; font-size: 1rem; }
.btn-sm { padding: 10px 20px; font-size: 0.85rem; }
.btn-block { width: 100%; }

.text-link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-weight: 600;
	color: var(--c-deep);
	font-size: 0.92rem;
	transition: gap var(--dur-fast) var(--ease);
}
.text-link:hover { gap: 12px; color: var(--c-sand); }
.text-link svg { width: 14px; height: 14px; }

/* ------------------------------------------------------------------
   6. HEADER + NAV (rebuilt clean)
------------------------------------------------------------------ */
.top-bar {
	background: var(--c-ink);
	color: rgba(255,255,255,0.78);
	font-size: 0.82rem;
	height: var(--topbar-h);
	display: flex;
	align-items: center;
}
.top-bar-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--s-6);
}
.top-bar-info, .top-bar-actions {
	display: flex;
	align-items: center;
	gap: var(--s-6);
}
.top-info-item {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: rgba(255,255,255,0.78);
	font-size: 0.8rem;
}
.top-info-item:hover { color: #fff; }
.top-info-item svg { width: 14px; height: 14px; opacity: 0.7; }
.top-socials { display: inline-flex; gap: 12px; align-items: center; }
.top-socials a { color: rgba(255,255,255,0.7); display: inline-flex; }
.top-socials a:hover { color: var(--c-sand-soft); }
.top-socials svg { width: 16px; height: 16px; }

@media (max-width: 900px) {
	.top-bar-info .top-info-hours { display: none; }
	.top-bar-actions .top-info-item { display: none; }
}
@media (max-width: 600px) {
	.top-bar { display: none; }
	:root { --topbar-h: 0px; }
}

/* Main header */
.site-header {
	position: sticky;
	top: 0;
	z-index: 90;
	background: rgba(251, 246, 236, 0.85);
	backdrop-filter: saturate(180%) blur(14px);
	-webkit-backdrop-filter: saturate(180%) blur(14px);
	border-bottom: 1px solid transparent;
	transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.site-header.is-scrolled {
	background: rgba(255, 255, 255, 0.92);
	border-bottom-color: var(--c-line);
	box-shadow: 0 2px 20px rgba(14, 31, 29, 0.04);
}

.site-header-inner {
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: var(--s-8);
	height: var(--header-h);
}

/* Branding */
.site-branding { min-width: 0; }
.site-branding .custom-logo-link img { max-height: 48px; width: auto; }

.site-logo-text {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	color: var(--c-ink);
	min-width: 0;
}
.site-logo-text:hover { color: var(--c-deep); }

.logo-mark {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	background: var(--c-deep);
	color: var(--c-sand-soft);
	border-radius: 50%;
	flex-shrink: 0;
	box-shadow: inset 0 0 0 4px rgba(255,255,255,0.04);
}
.logo-mark svg { width: 20px; height: 20px; }

.logo-name {
	display: flex;
	flex-direction: column;
	line-height: 1;
	min-width: 0;
}
.logo-name-top {
	font-family: var(--font-display);
	font-weight: 500;
	font-size: 1.1rem;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--c-ink);
	white-space: nowrap;
}
.logo-name-bottom {
	font-family: var(--font-body);
	font-weight: 500;
	font-size: 0.7rem;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--c-sand);
	margin-top: 4px;
	white-space: nowrap;
}

/* Primary navigation */
.main-navigation {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	min-width: 0;
}
.primary-menu {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	gap: 0;
	flex-wrap: nowrap;
	align-items: center;
}
.primary-menu li { position: relative; }
.primary-menu a {
	display: inline-block;
	padding: 10px 14px;
	font-size: 0.86rem;
	font-weight: 500;
	color: var(--c-text);
	border-radius: var(--r-md);
	transition: all var(--dur-fast) var(--ease);
	white-space: nowrap;
	position: relative;
}
.primary-menu a::after {
	content: "";
	position: absolute;
	left: 14px;
	right: 14px;
	bottom: 4px;
	height: 1.5px;
	background: var(--c-sand);
	transform: scaleX(0);
	transform-origin: center;
	transition: transform var(--dur-fast) var(--ease);
}
.primary-menu a:hover { color: var(--c-deep); background: transparent; }
.primary-menu a:hover::after { transform: scaleX(1); }
.primary-menu .current-menu-item > a,
.primary-menu .current_page_item > a {
	color: var(--c-deep);
	background: transparent;
}
.primary-menu .current-menu-item > a::after,
.primary-menu .current_page_item > a::after { transform: scaleX(1); }

/* Submenus */
.primary-menu .sub-menu {
	position: absolute;
	top: 100%;
	left: 0;
	min-width: 220px;
	background: #fff;
	border: 1px solid var(--c-line);
	border-radius: var(--r-md);
	padding: 8px;
	list-style: none;
	margin: 8px 0 0;
	opacity: 0;
	visibility: hidden;
	transform: translateY(-6px);
	transition: all var(--dur-fast) var(--ease);
	box-shadow: var(--sh-3);
}
.primary-menu li:hover > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}
.primary-menu .sub-menu a {
	display: block;
	padding: 9px 14px;
	font-size: 0.88rem;
}
.primary-menu .sub-menu a::after { display: none; }

/* Header actions (right) */
.header-actions {
	display: flex;
	align-items: center;
	gap: var(--s-4);
	flex-shrink: 0;
	position: relative;
}
.header-actions::before {
	content: "";
	width: 1px;
	height: 28px;
	background: var(--c-line);
	margin-right: var(--s-1);
}

.header-phone {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 8px 18px 8px 8px;
	border-radius: var(--r-pill);
	background: var(--c-deep);
	color: #fff;
	transition: all var(--dur-fast) var(--ease);
	flex-shrink: 0;
	white-space: nowrap;
	box-shadow: 0 4px 12px rgba(15, 57, 54, 0.15);
}
.header-phone:hover {
	background: var(--c-sand);
	color: var(--c-ink);
	transform: translateY(-1px);
	box-shadow: 0 6px 16px rgba(192, 138, 79, 0.3);
}
.header-phone-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	background: rgba(255,255,255,0.15);
	border-radius: 50%;
	flex-shrink: 0;
	transition: all var(--dur-fast) var(--ease);
}
.header-phone:hover .header-phone-icon { background: rgba(0,0,0,0.1); }
.header-phone svg { width: 14px; height: 14px; }
.header-phone-text {
	display: flex;
	flex-direction: column;
	line-height: 1;
	white-space: nowrap;
}
.header-phone-text small {
	font-size: 0.66rem;
	opacity: 0.78;
	font-weight: 500;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	margin-bottom: 3px;
	white-space: nowrap;
}
.header-phone-text strong {
	font-size: 0.92rem;
	font-weight: 600;
	letter-spacing: 0.005em;
	white-space: nowrap;
}

/* Hamburger */
.menu-toggle {
	display: none;
	width: 44px;
	height: 44px;
	border-radius: var(--r-md);
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 5px;
	background: transparent;
	border: 1px solid var(--c-line);
	transition: all var(--dur-fast) var(--ease);
	flex-shrink: 0;
}
.menu-toggle:hover { background: var(--c-cream-2); border-color: var(--c-deep); }
.menu-toggle span {
	display: block;
	width: 18px;
	height: 2px;
	background: var(--c-ink);
	border-radius: 1px;
	transition: all var(--dur-fast) var(--ease);
}
.menu-toggle.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.is-active span:nth-child(2) { opacity: 0; }
.menu-toggle.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 1280px) {
	.primary-menu a { padding: 10px 11px; font-size: 0.83rem; }
	.site-header-inner { gap: var(--s-5); }
}
@media (max-width: 1100px) {
	.header-phone-text small { display: none; }
	.header-phone-text strong { font-size: 0.88rem; }
}
@media (max-width: 1024px) {
	.main-navigation { display: none; }
	.menu-toggle { display: inline-flex; }
	.header-actions::before { display: none; }
	.site-header-inner { grid-template-columns: auto 1fr auto; }
	.main-navigation { display: none; }
}
@media (max-width: 600px) {
	:root { --header-h: 64px; }
	.site-header-inner { gap: var(--s-3); }
	.logo-mark { width: 36px; height: 36px; }
	.logo-mark svg { width: 18px; height: 18px; }
	.logo-name-top { font-size: 0.95rem; letter-spacing: 0.03em; }
	.logo-name-bottom { font-size: 0.62rem; letter-spacing: 0.16em; margin-top: 3px; }
	.header-phone { padding: 6px 14px 6px 6px; }
	.header-phone-icon { width: 28px; height: 28px; }
	.header-phone svg { width: 12px; height: 12px; }
	.header-phone-text strong { font-size: 0.8rem; }
}
@media (max-width: 400px) {
	.logo-name-bottom { display: none; }
	.header-phone-text { display: none; }
	.header-phone { padding: 8px; }
	.header-phone-icon { background: transparent; }
}

/* Mobile menu drawer */
.mobile-menu {
	position: fixed;
	top: 0;
	right: -100%;
	width: min(360px, 92vw);
	height: 100vh;
	background: var(--c-cream);
	box-shadow: var(--sh-deep);
	z-index: 95;
	padding: calc(var(--header-h) + 24px) 28px 32px;
	overflow-y: auto;
	transition: right var(--dur) var(--ease);
}
.mobile-menu.is-open { right: 0; }
.mobile-menu-overlay {
	position: fixed;
	inset: 0;
	background: rgba(14, 31, 29, 0.4);
	backdrop-filter: blur(2px);
	-webkit-backdrop-filter: blur(2px);
	opacity: 0;
	visibility: hidden;
	transition: all var(--dur) var(--ease);
	z-index: 94;
}
.mobile-menu-overlay.is-open { opacity: 1; visibility: visible; }

.mobile-menu-list {
	list-style: none;
	margin: 0;
	padding: 0;
}
.mobile-menu-list li { border-bottom: 1px solid var(--c-line-soft); }
.mobile-menu-list a {
	display: block;
	padding: 16px 4px;
	font-size: 1.05rem;
	font-weight: 500;
	color: var(--c-text);
	font-family: var(--font-display);
}
.mobile-menu-list a:hover { color: var(--c-deep); padding-left: 8px; }
.mobile-menu-list .sub-menu { padding-left: 16px; list-style: none; }
.mobile-menu-list .sub-menu a { font-size: 0.92rem; padding: 10px 4px; font-family: var(--font-body); color: var(--c-text-soft); }

.mobile-menu-cta {
	margin-top: var(--s-8);
	display: flex;
	flex-direction: column;
	gap: var(--s-3);
}

/* ------------------------------------------------------------------
   7. HERO
------------------------------------------------------------------ */
.hero {
	position: relative;
	background: var(--c-cream);
	padding-block: var(--s-20) var(--s-16);
	overflow: hidden;
}
.hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at 80% 20%, rgba(192, 138, 79, 0.08) 0%, transparent 50%),
		radial-gradient(circle at 10% 80%, rgba(15, 57, 54, 0.05) 0%, transparent 50%);
	pointer-events: none;
}
.hero-grid {
	display: grid;
	grid-template-columns: 1.15fr 0.85fr;
	gap: var(--s-12);
	align-items: center;
	position: relative;
}
.hero-content { position: relative; z-index: 2; }
.hero-content h1 {
	margin-bottom: var(--s-5);
}
.hero-content h1 .accent {
	font-style: italic;
	color: var(--c-sand);
	font-weight: 400;
	font-variation-settings: "opsz" 144, "SOFT" 100;
}
.hero-desc {
	font-size: var(--fs-lg);
	color: var(--c-text-soft);
	max-width: 540px;
	margin-bottom: var(--s-8);
	line-height: 1.65;
}
.hero-actions {
	display: flex;
	gap: var(--s-3);
	flex-wrap: wrap;
	margin-bottom: var(--s-10);
}

.hero-trust {
	display: flex;
	gap: var(--s-6);
	flex-wrap: wrap;
	padding-top: var(--s-6);
	border-top: 1px solid var(--c-line);
}
.hero-trust-item {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-size: 0.86rem;
	color: var(--c-text-soft);
}
.hero-trust-item svg { width: 18px; height: 18px; color: var(--c-sand); }

/* Hero visual — type-driven, no photo */
.hero-visual {
	position: relative;
	width: 100%;
	max-width: 480px;
	aspect-ratio: 4 / 5;
	margin-left: auto;
	justify-self: end;
}
.hero-visual-card {
	position: absolute;
	inset: 0;
	background: linear-gradient(160deg, var(--c-deep) 0%, var(--c-deep-2) 100%);
	border-radius: var(--r-xl);
	overflow: hidden;
	box-shadow: var(--sh-deep);
}
.hero-visual-card::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at 30% 20%, rgba(255,255,255,0.06) 0%, transparent 40%),
		radial-gradient(circle at 70% 80%, rgba(192, 138, 79, 0.18) 0%, transparent 50%);
	z-index: 2;
}
.hero-visual-photo {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 1;
	opacity: 0.92;
}
.hero-visual-card::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(15,57,54,0.15) 0%, rgba(15,57,54,0.05) 40%, rgba(15,57,54,0.85) 100%);
	z-index: 3;
}
.hero-visual-illustration {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 1;
}
.hero-visual-illustration--hidden { display: none; }
.hero-visual-illustration svg {
	width: 70%;
	height: auto;
	opacity: 0.85;
}
.hero-visual-overlay {
	position: absolute;
	left: 0; right: 0; bottom: 0;
	padding: var(--s-6);
	color: #fff;
	z-index: 4;
}
.hero-visual-overlay h3 {
	color: #fff;
	font-size: 1.5rem;
	font-weight: 400;
	font-style: italic;
	margin-bottom: 6px;
	font-variation-settings: "opsz" 144;
}
.hero-visual-overlay p {
	color: rgba(255,255,255,0.85);
	font-size: 0.88rem;
	margin: 0;
}
.hero-badge {
	position: absolute;
	top: 24px;
	right: 24px;
	width: 96px;
	height: 96px;
	border-radius: 50%;
	background: var(--c-sand);
	color: var(--c-ink);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	font-family: var(--font-display);
	box-shadow: 0 12px 32px rgba(192,138,79,0.35);
	transform: rotate(-8deg);
	border: 3px solid var(--c-cream);
}
.hero-badge strong { font-size: 1.5rem; line-height: 1; font-weight: 500; }
.hero-badge span { font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.08em; margin-top: 4px; font-family: var(--font-body); font-weight: 600; }

@media (max-width: 900px) {
	.hero-grid { grid-template-columns: 1fr; gap: var(--s-10); }
	.hero-visual { max-width: 380px; margin: 0 auto; justify-self: center; }
}
@media (max-width: 600px) {
	.hero { padding-block: var(--s-12) var(--s-10); }
	.hero-trust { gap: var(--s-3); }
	.hero-actions { gap: var(--s-2); }
	.hero-actions .btn { flex: 1; min-width: 140px; }
}

/* ------------------------------------------------------------------
   8. SERVICE CARDS — distinctive grid
------------------------------------------------------------------ */

/* Base illustration wrapper (used in service cards, pricing, gallery, etc.) */
.mkt-illustration {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: inherit;
	line-height: 0;
}
.mkt-illustration svg {
	display: block;
	max-width: 100%;
	height: auto;
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--s-6);
}
@media (max-width: 1024px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .services-grid { grid-template-columns: 1fr; gap: var(--s-4); } }

.service-card {
	position: relative;
	background: var(--c-paper);
	border: 1px solid var(--c-line);
	border-radius: var(--r-lg);
	padding: var(--s-8) var(--s-6) var(--s-6);
	transition: all var(--dur) var(--ease);
	overflow: hidden;
	display: flex;
	flex-direction: column;
}
.service-card::before {
	content: "";
	position: absolute;
	top: 0; left: 0;
	width: 100%;
	height: 4px;
	background: linear-gradient(90deg, var(--c-deep) 0%, var(--c-sand) 100%);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform var(--dur) var(--ease);
}
.service-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--sh-3);
	border-color: transparent;
}
.service-card:hover::before { transform: scaleX(1); }

.service-illustration {
	width: 88px;
	height: 88px;
	margin-bottom: var(--s-5);
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--c-cream-2);
	border-radius: 50%;
	color: var(--c-deep);
	transition: all var(--dur) var(--ease);
}
.service-illustration svg { width: 44px; height: 44px; }
.service-card:hover .service-illustration {
	background: var(--c-deep);
	color: var(--c-sand-soft);
	transform: rotate(-4deg) scale(1.04);
}

.service-card h3 {
	font-size: 1.4rem;
	font-weight: 500;
	margin-bottom: var(--s-3);
}
.service-card p {
	color: var(--c-text-soft);
	font-size: 0.95rem;
	line-height: 1.65;
	margin-bottom: var(--s-5);
	flex: 1;
}
.service-features {
	list-style: none;
	margin: 0 0 var(--s-5);
	padding: 0;
}
.service-features li {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 4px 0;
	color: var(--c-text-soft);
	font-size: 0.88rem;
}
.service-features svg { width: 14px; height: 14px; color: var(--c-sand); flex-shrink: 0; }

/* ------------------------------------------------------------------
   9. STATS — refined
------------------------------------------------------------------ */
.stats-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: var(--s-6);
	text-align: center;
}
@media (max-width: 768px) { .stats-grid { grid-template-columns: repeat(2, 1fr); gap: var(--s-8); } }

.stat-item {
	padding: var(--s-3) var(--s-2);
}
.stat-number {
	font-family: var(--font-display);
	font-size: clamp(2.5rem, 4vw, 3.75rem);
	font-weight: 400;
	color: var(--c-sand);
	line-height: 1;
	display: block;
	margin-bottom: var(--s-2);
	font-variation-settings: "opsz" 144;
}
.section-dark .stat-number { color: var(--c-sand-soft); }
.stat-label {
	font-size: 0.86rem;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: rgba(255,255,255,0.75);
}
.section:not(.section-dark) .stat-label { color: var(--c-text-soft); }

/* ------------------------------------------------------------------
   10. PROCESS / WHY / FEATURES
------------------------------------------------------------------ */
.process-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: var(--s-6);
	position: relative;
}
@media (max-width: 900px) { .process-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .process-grid { grid-template-columns: 1fr; } }

.process-step {
	position: relative;
	padding: var(--s-6);
	background: var(--c-paper);
	border: 1px solid var(--c-line);
	border-radius: var(--r-lg);
	transition: all var(--dur) var(--ease);
}
.process-step:hover {
	border-color: var(--c-sand);
	transform: translateY(-2px);
	box-shadow: var(--sh-2);
}
.process-step-num {
	font-family: var(--font-display);
	font-size: 3rem;
	font-style: italic;
	font-weight: 400;
	color: var(--c-sand);
	line-height: 1;
	margin-bottom: var(--s-3);
	font-variation-settings: "opsz" 144;
}
.process-step h3 {
	font-size: 1.15rem;
	font-weight: 600;
	font-family: var(--font-body);
	margin-bottom: var(--s-2);
	color: var(--c-ink);
}
.process-step p { color: var(--c-text-soft); font-size: 0.9rem; }

.why-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--s-6);
}
@media (max-width: 900px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .why-grid { grid-template-columns: 1fr; } }

.why-card {
	padding: var(--s-6);
	background: var(--c-paper);
	border-radius: var(--r-lg);
	border: 1px solid var(--c-line);
	text-align: left;
}
.why-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	background: var(--c-cream-2);
	color: var(--c-deep);
	border-radius: var(--r-md);
	margin-bottom: var(--s-4);
}
.why-icon svg { width: 24px; height: 24px; }
.why-card h3 { font-size: 1.1rem; font-family: var(--font-body); font-weight: 600; margin-bottom: var(--s-2); }
.why-card p { font-size: 0.92rem; color: var(--c-text-soft); }

/* ------------------------------------------------------------------
   11. REGIONS / GALLERY / FAQ
------------------------------------------------------------------ */
.regions-list {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
	gap: var(--s-2) var(--s-3);
}
.region-pill {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 14px;
	background: var(--c-paper);
	border: 1px solid var(--c-line);
	border-radius: var(--r-pill);
	font-size: 0.9rem;
	color: var(--c-text);
	transition: all var(--dur-fast) var(--ease);
}
.region-pill:hover {
	border-color: var(--c-sand);
	background: var(--c-cream-2);
	color: var(--c-deep);
}
.region-pill::before {
	content: "";
	width: 6px; height: 6px;
	border-radius: 50%;
	background: var(--c-sand);
}

.gallery-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--s-4);
}
@media (max-width: 900px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .gallery-grid { grid-template-columns: 1fr; } }

.gallery-item {
	position: relative;
	aspect-ratio: 1 / 1;
	border-radius: var(--r-lg);
	overflow: hidden;
	background: var(--c-deep);
	display: block;
	cursor: pointer;
}
.gallery-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform var(--dur-slow) var(--ease);
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-overlay {
	position: absolute;
	left: 0; right: 0; bottom: 0;
	padding: var(--s-5);
	background: linear-gradient(180deg, transparent 0%, rgba(14,31,29,0.85) 100%);
	color: #fff;
	transform: translateY(20px);
	opacity: 0;
	transition: all var(--dur) var(--ease);
}
.gallery-item:hover .gallery-overlay { transform: translateY(0); opacity: 1; }
.gallery-overlay h4 { color: #fff; font-size: 1.05rem; margin-bottom: 4px; }
.gallery-overlay p { color: rgba(255,255,255,0.85); font-size: 0.82rem; margin: 0; }

/* Gallery item with embedded illustration (no external image) */
.gallery-item-illustration {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(160deg, var(--c-deep) 0%, var(--c-deep-2) 100%);
	color: var(--c-sand-soft);
	transition: transform var(--dur-slow) var(--ease);
	position: relative;
}
.gallery-item-illustration::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at 30% 20%, rgba(255,255,255,0.06) 0%, transparent 40%),
		radial-gradient(circle at 70% 80%, rgba(192, 138, 79, 0.2) 0%, transparent 50%);
	pointer-events: none;
}
.gallery-item-illustration .mkt-illustration {
	position: relative;
	z-index: 2;
	width: 50%;
	max-width: 200px;
}
.gallery-item-illustration .mkt-illustration svg {
	width: 100%;
	height: auto;
	opacity: 0.85;
}
.gallery-item:hover .gallery-item-illustration { transform: scale(1.05); }
.gallery-item-illustration + .gallery-overlay { opacity: 1; transform: translateY(0); }

.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
	background: var(--c-paper);
	border: 1px solid var(--c-line);
	border-radius: var(--r-md);
	margin-bottom: var(--s-3);
	transition: all var(--dur-fast) var(--ease);
	overflow: hidden;
}
.faq-item:hover { border-color: var(--c-sand); }
.faq-item[open] { border-color: var(--c-deep); box-shadow: var(--sh-2); }
.faq-question {
	padding: var(--s-5) var(--s-6);
	font-weight: 600;
	font-size: 1rem;
	cursor: pointer;
	list-style: none;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: var(--s-3);
	color: var(--c-ink);
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question::after {
	content: "+";
	font-size: 1.5rem;
	color: var(--c-sand);
	transition: transform var(--dur-fast) var(--ease);
	font-weight: 300;
	line-height: 1;
}
.faq-item[open] .faq-question::after { transform: rotate(45deg); }
.faq-answer {
	padding: 0 var(--s-6) var(--s-6);
	color: var(--c-text-soft);
	line-height: 1.7;
	font-size: 0.95rem;
}

/* ------------------------------------------------------------------
   12. TESTIMONIALS
------------------------------------------------------------------ */
.testimonials-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--s-6);
}
@media (max-width: 900px) { .testimonials-grid { grid-template-columns: 1fr; } }

.testimonial {
	background: var(--c-paper);
	border: 1px solid var(--c-line);
	border-radius: var(--r-lg);
	padding: var(--s-8);
	position: relative;
}
.testimonial::before {
	content: "“";
	position: absolute;
	top: 16px;
	left: 24px;
	font-family: var(--font-display);
	font-size: 5rem;
	line-height: 0.8;
	color: var(--c-sand-soft);
	z-index: 0;
}
.testimonial-text {
	position: relative;
	z-index: 1;
	color: var(--c-text);
	font-size: 1rem;
	line-height: 1.7;
	margin-bottom: var(--s-5);
	font-style: italic;
	font-family: var(--font-display);
	font-weight: 400;
}
.testimonial-author {
	display: flex;
	align-items: center;
	gap: var(--s-3);
	padding-top: var(--s-4);
	border-top: 1px solid var(--c-line);
}
.testimonial-avatar {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: var(--c-cream-2);
	color: var(--c-deep);
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--font-display);
	font-weight: 500;
	font-size: 1rem;
}
.testimonial-author-info strong { display: block; font-size: 0.92rem; color: var(--c-ink); }
.testimonial-author-info small { color: var(--c-text-muted); font-size: 0.8rem; }
.testimonial-rating {
	display: inline-flex;
	gap: 2px;
	margin-bottom: var(--s-3);
}
.testimonial-rating svg { width: 16px; height: 16px; color: var(--c-sand); fill: currentColor; }

/* ------------------------------------------------------------------
   13. PRICING
------------------------------------------------------------------ */
.pricing-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: var(--s-6);
}
@media (max-width: 768px) { .pricing-grid { grid-template-columns: 1fr; } }

.pricing-card {
	background: var(--c-paper);
	border: 1px solid var(--c-line);
	border-radius: var(--r-lg);
	overflow: hidden;
}
.pricing-header {
	padding: var(--s-6);
	background: var(--c-deep);
	color: #fff;
	display: flex;
	align-items: center;
	gap: var(--s-3);
}
.pricing-header h3 { color: #fff; font-size: 1.25rem; margin: 0; }
.pricing-header svg { width: 24px; height: 24px; color: var(--c-sand-soft); }
.pricing-body { padding: var(--s-3) var(--s-6) var(--s-6); }
.pricing-row {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	gap: var(--s-3);
	padding: var(--s-3) 0;
	border-bottom: 1px dashed var(--c-line);
}
.pricing-row:last-child { border-bottom: none; }
.pricing-name { font-weight: 500; color: var(--c-text); flex: 1; }
.pricing-meta { color: var(--c-text-muted); font-size: 0.82rem; display: block; margin-top: 2px; font-weight: 400; }
.pricing-amount {
	font-family: var(--font-display);
	font-weight: 500;
	font-size: 1.1rem;
	color: var(--c-deep);
	white-space: nowrap;
}

/* ------------------------------------------------------------------
   14. PAGE HEADER (inner pages)
------------------------------------------------------------------ */
.page-header {
	background: linear-gradient(160deg, var(--c-deep) 0%, var(--c-deep-2) 100%);
	color: #fff;
	padding: var(--s-16) 0 var(--s-12);
	position: relative;
	overflow: hidden;
}
.page-header::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at 80% 20%, rgba(192, 138, 79, 0.15) 0%, transparent 50%),
		radial-gradient(circle at 20% 80%, rgba(255,255,255,0.05) 0%, transparent 50%);
	pointer-events: none;
}
.page-header .container { position: relative; z-index: 1; }
.page-header h1 {
	color: #fff;
	margin-bottom: var(--s-3);
}
.page-header h1 .accent {
	font-style: italic;
	color: var(--c-sand-soft);
	font-weight: 400;
}
.page-subtitle {
	color: rgba(255,255,255,0.85);
	font-size: var(--fs-lg);
	max-width: 720px;
}
.breadcrumbs {
	display: inline-flex;
	gap: 8px;
	font-size: 0.82rem;
	color: rgba(255,255,255,0.7);
	margin-bottom: var(--s-5);
	font-family: var(--font-body);
}
.breadcrumbs a { color: rgba(255,255,255,0.7); }
.breadcrumbs a:hover { color: var(--c-sand-soft); }
.breadcrumbs .sep { opacity: 0.4; }
.breadcrumbs .current { color: var(--c-sand-soft); }

/* ------------------------------------------------------------------
   15. ABOUT / CONTACT GRID
------------------------------------------------------------------ */
.about-grid {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: var(--s-12);
	align-items: center;
}
@media (max-width: 900px) { .about-grid { grid-template-columns: 1fr; gap: var(--s-8); } }
.about-content h2 { margin-bottom: var(--s-5); }
.about-content p { margin-bottom: var(--s-4); color: var(--c-text-soft); font-size: 1rem; line-height: 1.7; }
.about-features {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--s-4);
	margin-top: var(--s-6);
}
.about-feature {
	padding: var(--s-4);
	background: var(--c-cream-2);
	border-radius: var(--r-md);
}
.about-feature svg { width: 22px; height: 22px; color: var(--c-sand); margin-bottom: var(--s-2); }
.about-feature h4 { font-size: 0.95rem; margin-bottom: 4px; font-family: var(--font-body); font-weight: 600; }
.about-feature p { font-size: 0.82rem; color: var(--c-text-soft); margin: 0; }

.about-visual {
	position: relative;
	aspect-ratio: 4 / 5;
	border-radius: var(--r-xl);
	overflow: hidden;
	background: linear-gradient(160deg, var(--c-deep) 0%, var(--c-deep-2) 100%);
	box-shadow: var(--sh-3);
	display: flex;
	align-items: center;
	justify-content: center;
}
.about-visual::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at 30% 30%, rgba(255,255,255,0.08) 0%, transparent 40%),
		radial-gradient(circle at 70% 70%, rgba(192, 138, 79, 0.18) 0%, transparent 50%);
	z-index: 1;
}
.about-visual img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 0;
}
.about-visual-label {
	position: absolute;
	bottom: var(--s-5);
	left: var(--s-5);
	right: var(--s-5);
	padding: var(--s-3) var(--s-5);
	background: rgba(255,255,255,0.95);
	backdrop-filter: blur(10px);
	border-radius: var(--r-md);
	color: var(--c-ink);
	z-index: 3;
}
.about-visual-label strong { display: block; font-family: var(--font-display); font-weight: 500; font-size: 1.1rem; }
.about-visual-label span { font-size: 0.82rem; color: var(--c-text-soft); }

.about-illustration {
	position: relative;
	z-index: 2;
	width: 70%;
	max-width: 340px;
	color: var(--c-sand-soft);
}
.about-illustration svg { width: 100%; height: auto; opacity: 0.85; }

/* Contact */
.contact-grid {
	display: grid;
	grid-template-columns: 1fr 1.3fr;
	gap: var(--s-12);
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-info { padding: var(--s-2) 0; }
.contact-info h2 { margin-bottom: var(--s-6); }
.contact-info-item {
	display: flex;
	gap: var(--s-3);
	padding: var(--s-4) 0;
	border-bottom: 1px solid var(--c-line);
	align-items: flex-start;
}
.contact-info-item:last-child { border-bottom: none; }
.contact-info-icon {
	width: 44px;
	height: 44px;
	flex-shrink: 0;
	background: var(--c-cream-2);
	color: var(--c-deep);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.contact-info-icon svg { width: 18px; height: 18px; }
.contact-info-text h4 { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--c-text-muted); margin-bottom: 4px; font-family: var(--font-body); font-weight: 600; }
.contact-info-text a, .contact-info-text p { font-size: 1rem; color: var(--c-ink); font-weight: 500; line-height: 1.5; }
.contact-info-text a:hover { color: var(--c-sand); }

.contact-form-wrap {
	background: var(--c-paper);
	border: 1px solid var(--c-line);
	border-radius: var(--r-lg);
	padding: var(--s-8);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-3); margin-bottom: var(--s-3); }
@media (max-width: 540px) { .form-row { grid-template-columns: 1fr; } }
.form-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: var(--s-3); }
.form-field label { font-size: 0.82rem; font-weight: 600; color: var(--c-text); }
.form-field input, .form-field textarea, .form-field select {
	padding: 12px 14px;
	border: 1px solid var(--c-line);
	background: var(--c-cream);
	border-radius: var(--r-md);
	font-size: 0.95rem;
	transition: all var(--dur-fast) var(--ease);
}
.form-field input:focus, .form-field textarea:focus, .form-field select:focus {
	outline: none;
	border-color: var(--c-deep);
	background: #fff;
	box-shadow: 0 0 0 3px rgba(15, 57, 54, 0.08);
}
.form-field textarea { min-height: 130px; resize: vertical; }

.contact-banner {
	padding: var(--s-12) var(--s-8);
	background: linear-gradient(135deg, var(--c-deep) 0%, var(--c-deep-2) 100%);
	border-radius: var(--r-lg);
	color: #fff;
	text-align: center;
	margin-bottom: var(--s-12);
	position: relative;
	overflow: hidden;
}
.contact-banner::before {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at 80% 20%, rgba(192, 138, 79, 0.18) 0%, transparent 60%);
}
.contact-banner > * { position: relative; }
.contact-banner h2 { color: #fff; margin-bottom: var(--s-3); }
.contact-banner p { color: rgba(255,255,255,0.85); font-size: 1.05rem; max-width: 600px; margin: 0 auto; }

/* ------------------------------------------------------------------
   16. CTA STRIP
------------------------------------------------------------------ */
.cta-strip {
	background: var(--c-deep);
	color: #fff;
	padding: var(--s-12) 0;
	position: relative;
	overflow: hidden;
}
.cta-strip::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at 90% 50%, rgba(192, 138, 79, 0.18) 0%, transparent 50%);
}
.cta-strip-inner {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--s-6);
	flex-wrap: wrap;
}
.cta-strip h2 { color: #fff; margin-bottom: var(--s-2); }
.cta-strip h2 .accent { font-style: italic; color: var(--c-sand); }
.cta-strip p { color: rgba(255,255,255,0.78); margin: 0; }
.cta-strip-actions { display: flex; gap: var(--s-3); flex-wrap: wrap; }

@media (max-width: 768px) {
	.cta-strip-inner { flex-direction: column; align-items: flex-start; }
	.cta-strip-actions { width: 100%; }
	.cta-strip-actions .btn { flex: 1; }
}

/* ------------------------------------------------------------------
   17. FOOTER
------------------------------------------------------------------ */
.site-footer {
	background: var(--c-ink);
	color: rgba(255,255,255,0.7);
	padding: var(--s-16) 0 var(--s-6);
}
.footer-grid {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr 1fr;
	gap: var(--s-8);
	margin-bottom: var(--s-12);
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .footer-grid { grid-template-columns: 1fr; gap: var(--s-6); } }

.footer-brand {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	color: #fff;
	margin-bottom: var(--s-4);
}
.footer-brand .logo-mark {
	background: var(--c-deep);
	color: var(--c-sand-soft);
	width: 42px;
	height: 42px;
}
.footer-brand-text {
	display: flex;
	flex-direction: column;
	line-height: 1;
}
.footer-brand-top {
	font-family: var(--font-display);
	font-weight: 500;
	font-size: 1.05rem;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: #fff;
	white-space: nowrap;
}
.footer-brand-bottom {
	font-family: var(--font-body);
	font-weight: 500;
	font-size: 0.68rem;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--c-sand-soft);
	margin-top: 4px;
	white-space: nowrap;
}
.footer-about { color: rgba(255,255,255,0.6); font-size: 0.9rem; line-height: 1.65; margin-bottom: var(--s-4); }

.footer-title {
	font-family: var(--font-body);
	font-size: 0.78rem;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: var(--c-sand-soft);
	margin-bottom: var(--s-4);
	font-weight: 600;
}
.footer-list { list-style: none; padding: 0; margin: 0; }
.footer-list li { margin-bottom: var(--s-2); }
.footer-list a { color: rgba(255,255,255,0.7); font-size: 0.9rem; transition: all var(--dur-fast) var(--ease); }
.footer-list a:hover { color: var(--c-sand); padding-left: 4px; }

.footer-contact-item {
	display: flex;
	gap: 10px;
	align-items: flex-start;
	margin-bottom: var(--s-3);
	font-size: 0.88rem;
	color: rgba(255,255,255,0.7);
}
.footer-contact-item svg { width: 16px; height: 16px; color: var(--c-sand-soft); flex-shrink: 0; margin-top: 2px; }
.footer-contact-item a:hover { color: var(--c-sand); }

.footer-socials { display: flex; gap: var(--s-2); margin-top: var(--s-4); }
.footer-socials a {
	width: 36px; height: 36px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: rgba(255,255,255,0.08);
	color: rgba(255,255,255,0.7);
	transition: all var(--dur-fast) var(--ease);
}
.footer-socials a:hover { background: var(--c-sand); color: var(--c-ink); transform: translateY(-2px); }
.footer-socials svg { width: 16px; height: 16px; }

.footer-bottom {
	padding-top: var(--s-6);
	border-top: 1px solid rgba(255,255,255,0.08);
	display: flex;
	justify-content: space-between;
	gap: var(--s-3);
	flex-wrap: wrap;
	font-size: 0.82rem;
	color: rgba(255,255,255,0.5);
}

/* ------------------------------------------------------------------
   18. FLOATING ACTION BUTTONS
------------------------------------------------------------------ */
.floating-actions {
	position: fixed;
	right: 20px;
	bottom: 20px;
	z-index: 80;
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.floating-btn {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	box-shadow: var(--sh-3);
	transition: all var(--dur) var(--ease);
}
.floating-btn:hover { transform: translateY(-3px); color: #fff; }
.floating-btn svg { width: 26px; height: 26px; }
.floating-btn.whatsapp { background: var(--c-whatsapp); }
.floating-btn.whatsapp:hover { background: #1faa52; }
.floating-btn.phone { background: var(--c-deep); display: none; }
.floating-btn.phone:hover { background: var(--c-sand); color: var(--c-ink); }

@media (max-width: 768px) {
	.floating-btn.phone { display: flex; }
	.floating-actions { right: 16px; bottom: 16px; }
	.floating-btn { width: 50px; height: 50px; }
	.floating-btn svg { width: 22px; height: 22px; }
}

/* ------------------------------------------------------------------
   19. UTILITIES
------------------------------------------------------------------ */
.text-center { text-align: center; }
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-2 { gap: var(--s-2); }
.gap-3 { gap: var(--s-3); }
.no-bullets { list-style: none; padding: 0; margin: 0; }

/* WordPress core */
.alignleft { float: left; margin: 0 var(--s-4) var(--s-3) 0; }
.alignright { float: right; margin: 0 0 var(--s-3) var(--s-4); }
.aligncenter { display: block; margin: 0 auto var(--s-4); }
.alignwide { width: 100vw; max-width: 100vw; margin-left: 50%; transform: translateX(-50%); }
.alignfull { width: 100vw; margin-left: 50%; transform: translateX(-50%); }

/* Page intro / single content */
.entry-content {
	font-size: 1rem;
	line-height: 1.75;
	color: var(--c-text);
}
.entry-content > * + * { margin-top: var(--s-4); }
.entry-content h2 { margin-top: var(--s-10); margin-bottom: var(--s-3); }
.entry-content h3 { margin-top: var(--s-8); margin-bottom: var(--s-2); }
.entry-content blockquote {
	border-left: 3px solid var(--c-sand);
	padding: var(--s-3) var(--s-5);
	font-family: var(--font-display);
	font-style: italic;
	font-size: 1.15rem;
	color: var(--c-text);
	margin: var(--s-6) 0;
}
.entry-content code {
	background: var(--c-cream-2);
	padding: 2px 6px;
	border-radius: 4px;
	font-size: 0.92em;
}
.entry-content ul, .entry-content ol { padding-left: var(--s-6); }
.entry-content li { margin-bottom: var(--s-1); }

/* Pagination */
.pagination {
	display: flex;
	justify-content: center;
	gap: 6px;
	margin-top: var(--s-10);
}
.pagination a, .pagination .current {
	width: 40px;
	height: 40px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: var(--r-md);
	border: 1px solid var(--c-line);
	font-size: 0.9rem;
	font-weight: 500;
	color: var(--c-text);
}
.pagination a:hover { background: var(--c-cream-2); border-color: var(--c-deep); color: var(--c-deep); }
.pagination .current { background: var(--c-deep); border-color: var(--c-deep); color: #fff; }

/* Search form */
.search-form {
	display: flex;
	gap: var(--s-2);
	max-width: 480px;
}
.search-form input {
	flex: 1;
	padding: 12px 16px;
	border: 1px solid var(--c-line);
	background: var(--c-paper);
	border-radius: var(--r-pill);
	font-size: 0.95rem;
}
.search-form input:focus { outline: none; border-color: var(--c-deep); }
.search-form button {
	padding: 12px 24px;
	background: var(--c-deep);
	color: #fff;
	border-radius: var(--r-pill);
	font-weight: 600;
	transition: all var(--dur-fast) var(--ease);
}
.search-form button:hover { background: var(--c-sand); color: var(--c-ink); }

/* Comments (light styling) */
.comments-area { margin-top: var(--s-12); padding-top: var(--s-8); border-top: 1px solid var(--c-line); }
.comments-title { font-size: 1.5rem; margin-bottom: var(--s-6); }
.comment-list { list-style: none; padding: 0; }
.comment-body { padding: var(--s-4); background: var(--c-cream-2); border-radius: var(--r-md); margin-bottom: var(--s-3); }
.comment-meta { font-size: 0.82rem; color: var(--c-text-muted); margin-bottom: var(--s-2); }

/* 404 */
.error-404 {
	text-align: center;
	padding: var(--s-24) 0;
}
.error-404 h1 {
	font-size: clamp(5rem, 12vw, 9rem);
	font-style: italic;
	color: var(--c-sand);
	line-height: 0.9;
	font-weight: 400;
}
.error-404 p { font-size: 1.15rem; color: var(--c-text-soft); margin-bottom: var(--s-6); }

/* Animations */
@keyframes fadeUp {
	from { opacity: 0; transform: translateY(20px); }
	to { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.7s var(--ease) backwards; }
.fade-up-delay-1 { animation-delay: 0.1s; }
.fade-up-delay-2 { animation-delay: 0.2s; }
.fade-up-delay-3 { animation-delay: 0.3s; }

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

/* ------------------------------------------------------------------
   20. SIDEBAR / WIDGETS (basic)
------------------------------------------------------------------ */
.widget {
	background: var(--c-paper);
	border: 1px solid var(--c-line);
	border-radius: var(--r-lg);
	padding: var(--s-5);
	margin-bottom: var(--s-5);
}
.widget-title {
	font-family: var(--font-display);
	font-size: 1.15rem;
	margin-bottom: var(--s-4);
}
.widget ul { list-style: none; padding: 0; margin: 0; }
.widget li { padding: 8px 0; border-bottom: 1px solid var(--c-line-soft); font-size: 0.92rem; }
.widget li:last-child { border-bottom: none; }
.widget a { color: var(--c-text); }
.widget a:hover { color: var(--c-deep); }
