:root {
	--black: #0b0d0f;
	--black-2: #14171a;
	--black-3: #21262b;
	--yellow: #ffd21f;
	--yellow-dark: #e9b900;
	--accent-rgb: 255, 210, 31;
	--accent-text: #0b0d0f;
	--white: #ffffff;
	--offwhite: #f5f5f1;
	--paper: #fbfaf6;
	--text: #17191c;
	--muted: #626970;
	--line: #dedfd9;
	--success: #157347;
	--error: #b42318;
	--whatsapp: #1f9d55;
	--whatsapp-dark: #17733e;
	--radius: 14px;
	--radius-sm: 8px;
	--shadow: 0 18px 50px rgba(11, 13, 15, .12);
	--container: 1180px;
	--font-display: Arial, Helvetica, sans-serif;
	--font-body: Arial, Helvetica, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
	margin: 0;
	font-family: var(--font-body);
	font-size: 16px;
	line-height: 1.65;
	color: var(--text);
	background: var(--white);
	-webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
svg { width: 1em; height: 1em; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.content-narrow { width: min(calc(100% - 40px), 820px); margin-inline: auto; }
.section { padding: 92px 0; }
.muted-section { background: var(--offwhite); }
.site-main { min-height: 60vh; }
.screen-reader-text,
.skip-link:not(:focus) { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }
.skip-link:focus { position: fixed; z-index: 9999; top: 8px; left: 8px; padding: 10px 16px; background: var(--yellow); color: var(--accent-text); font-weight: 800; }

h1, h2, h3, h4, h5, h6 {
	margin: 0 0 .75em;
	font-family: var(--font-display);
	font-weight: 900;
	line-height: 1.08;
	letter-spacing: -.035em;
}
h1 { font-size: clamp(2.7rem, 6vw, 5.7rem); }
h2 { font-size: clamp(2rem, 4vw, 3.55rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.55rem); }
p { margin: 0 0 1.2em; }
ul, ol { padding-left: 1.25rem; }

.eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 18px;
	color: var(--yellow-dark);
	font-size: .76rem;
	font-weight: 900;
	letter-spacing: .15em;
	text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 30px; height: 3px; background: var(--yellow-dark); }
.eyebrow.light { color: var(--yellow); }
.section-heading { max-width: 760px; margin-bottom: 42px; }
.section-heading h2 { margin-bottom: 0; }
.split-heading { display: grid; grid-template-columns: 1.2fr .8fr; gap: 70px; align-items: end; max-width: none; }
.split-heading p { color: var(--muted); margin: 0; }
.centered { text-align: center; margin-inline: auto; }
.centered .eyebrow { justify-content: center; }

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	min-height: 48px;
	padding: 12px 22px;
	border: 1px solid transparent;
	border-radius: 5px;
	font-weight: 900;
	line-height: 1.1;
	transition: transform .18s ease, background .18s ease, border-color .18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn svg { width: 20px; height: 20px; }
.btn-yellow { background: var(--yellow); color: var(--accent-text); border-color: var(--yellow); }
.btn-yellow:hover { background: var(--yellow-dark); border-color: var(--yellow-dark); }
.btn-dark { background: var(--black); color: var(--white); }
.btn-dark:hover { background: var(--black-3); }
.btn-outline { color: var(--white); border-color: rgba(255,255,255,.55); background: rgba(0,0,0,.1); }
.btn-outline:hover { border-color: var(--white); }
.btn-whatsapp { color: var(--white); background: var(--whatsapp); }
.btn-whatsapp:hover { background: var(--whatsapp-dark); }
.btn-ghost { color: var(--white); border-color: rgba(255,255,255,.34); background: transparent; }
.btn-large { min-height: 56px; padding: 16px 27px; }
.btn-block { width: 100%; }
.text-link { display: inline-flex; align-items: center; gap: 6px; color: var(--black); font-weight: 900; }
.text-link svg { width: 18px; transition: transform .18s ease; }
.text-link:hover svg { transform: translateX(4px); }

/* Header */
.site-header { position: relative; z-index: 100; background: var(--white); box-shadow: 0 1px 0 rgba(0,0,0,.08); }
.site-header.is-sticky .main-header { position: fixed; inset: 0 0 auto; box-shadow: 0 8px 30px rgba(0,0,0,.12); animation: header-in .2s ease; }
@keyframes header-in { from { transform: translateY(-100%); } }
.topbar { background: var(--black); color: #e4e6e7; font-size: .82rem; }
.topbar-inner { min-height: 40px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.topbar p, .topbar a { display: flex; align-items: center; gap: 7px; margin: 0; }
.topbar svg { color: var(--yellow); }
.topbar-links { display: flex; gap: 24px; }
.main-header { background: var(--white); }
.header-inner { min-height: 84px; display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.brand { display: inline-flex; align-items: center; gap: 12px; min-width: max-content; }
.brand .custom-logo-link { display: flex; align-items: center; }
.brand .custom-logo { max-height: 58px; width: auto; }
.brand-mark { display: grid; place-items: center; width: 48px; height: 48px; background: var(--yellow); color: var(--accent-text); font-size: 1.75rem; font-weight: 1000; transform: skew(-8deg); }
.brand-text { display: grid; line-height: 1; }
.brand-text strong { font-size: 1.34rem; letter-spacing: -.04em; text-transform: uppercase; }
.brand-text small { margin-top: 7px; color: var(--muted); font-size: .68rem; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.primary-nav { display: flex; align-items: center; gap: 26px; }
.nav-menu { display: flex; align-items: center; gap: 25px; margin: 0; padding: 0; list-style: none; }
.nav-menu a { position: relative; font-size: .92rem; font-weight: 800; }
.nav-menu > li > a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -8px; height: 3px; background: var(--yellow); transition: right .18s ease; }
.nav-menu > li > a:hover::after,
.nav-menu > .current-menu-item > a::after { right: 0; }
.nav-cta { min-height: 44px; padding: 11px 17px; }
.menu-toggle { display: none; width: 46px; height: 42px; border: 0; background: var(--black); padding: 10px; }
.menu-toggle > span:not(.screen-reader-text) { display: block; height: 2px; margin: 5px 0; background: var(--yellow); }

/* Hero */
.hero { position: relative; overflow: hidden; background: var(--black); color: var(--white); }
.hero-slides { position: relative; min-height: 560px; }
.hero-slide {
	position: absolute;
	inset: 0;
	display: grid;
	align-items: center;
	opacity: 0;
	visibility: hidden;
	transition: opacity .65s ease, visibility .65s ease, transform .65s ease;
	transform: scale(1.018);
	pointer-events: none;
	background-image:
		linear-gradient(90deg, rgba(8,10,12,.97) 0%, rgba(8,10,12,.88) 48%, rgba(8,10,12,.52) 100%),
		linear-gradient(135deg, transparent 0 70%, rgba(var(--accent-rgb), .15) 70% 73%, transparent 73%),
		var(--hero-image, linear-gradient(135deg, #171b1f, #090a0b));
	background-size: cover;
	background-position: center;
}
.hero-slide::before { content: ""; position: absolute; inset: 0; opacity: .22; background-image: linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px); background-size: 60px 60px; mask-image: linear-gradient(90deg,#000,transparent); }
.hero-slide.is-active { opacity: 1; visibility: visible; transform: scale(1); pointer-events: auto; }
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, 1fr) 310px; gap: 56px; align-items: center; min-height: 560px; padding-top: 54px; padding-bottom: 78px; }
.hero-content { max-width: 760px; }
.hero-kicker { display: flex; align-items: center; gap: 11px; margin-bottom: 18px; color: var(--yellow); font-size: .82rem; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.hero-kicker span { width: 36px; height: 3px; background: var(--yellow); }
.hero h1, .hero h2 {
	max-width: 780px;
	margin-bottom: 22px;
	font-size: clamp(2.35rem, 3.8vw, 4.05rem);
	font-weight: 800;
	line-height: 1.04;
	letter-spacing: -.035em;
	text-transform: none;
}
.hero h1::first-line, .hero h2::first-line { color: var(--white); }
.hero-lead { max-width: 690px; margin-bottom: 30px; color: #d7dadd; font-size: clamp(1.04rem, 1.7vw, 1.25rem); }
.hero-buttons { display: flex; flex-wrap: wrap; gap: 13px; }
.hero-points { display: flex; flex-wrap: wrap; gap: 13px 26px; margin: 30px 0 0; padding: 0; list-style: none; color: #e7e9ea; font-size: .9rem; }
.hero-points li { display: flex; align-items: center; gap: 7px; }
.hero-points svg { color: var(--yellow); }
.hero-card { align-self: end; padding: 28px; background: rgba(255,255,255,.96); color: var(--black); border-top: 6px solid var(--yellow); box-shadow: var(--shadow); }
.hero-card-label { display: block; margin-bottom: 9px; color: var(--muted); font-size: .76rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.hero-card strong { display: block; margin-bottom: 12px; font-size: 1.55rem; }
.hero-card p { color: var(--muted); font-size: .92rem; }
.hero-card a { display: inline-flex; align-items: center; gap: 5px; font-weight: 900; }
.hero-controls { position: absolute; z-index: 5; left: 50%; bottom: 18px; transform: translateX(-50%); display: flex; align-items: center; gap: 16px; }
.hero-controls > button { display: grid; place-items: center; width: 42px; height: 42px; border: 1px solid rgba(255,255,255,.35); background: rgba(0,0,0,.25); color: var(--white); }
.hero-dots { display: flex; gap: 8px; }
.hero-dots button { width: 9px; height: 9px; padding: 0; border: 0; border-radius: 50%; background: rgba(255,255,255,.42); }
.hero-dots button.is-active { width: 30px; border-radius: 10px; background: var(--yellow); }
.hazard-line { height: 14px; background: repeating-linear-gradient(135deg, var(--yellow) 0 16px, var(--black) 16px 32px); }

/* Home */
.intro-strip { padding: 0; border-bottom: 1px solid var(--line); }
.intro-strip-grid { display: grid; grid-template-columns: repeat(4,1fr); }
.intro-strip-grid > div { min-height: 126px; display: grid; grid-template-columns: 42px 1fr; align-content: center; column-gap: 14px; padding: 25px 28px; border-right: 1px solid var(--line); }
.intro-strip-grid > div:last-child { border-right: 0; }
.intro-strip-grid span { grid-row: 1 / 3; color: var(--yellow-dark); font-size: 1.1rem; font-weight: 1000; }
.intro-strip-grid strong { font-size: 1.05rem; }
.intro-strip-grid small { color: var(--muted); }
.service-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.service-card { overflow: hidden; background: var(--white); border: 1px solid var(--line); box-shadow: 0 0 0 rgba(0,0,0,0); transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.service-card:hover { transform: translateY(-7px); border-color: transparent; box-shadow: var(--shadow); }
.service-media { display: block; aspect-ratio: 16 / 10; overflow: hidden; background: var(--black-2); }
.service-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.service-card:hover .service-media img { transform: scale(1.045); }
.service-placeholder { position: relative; width: 100%; height: 100%; display: grid; place-items: center; overflow: hidden; background: linear-gradient(135deg, #252a2f, #0a0c0d); color: var(--yellow); }
.service-placeholder::before { content: ""; position: absolute; width: 130%; height: 58px; transform: rotate(-18deg); background: repeating-linear-gradient(135deg,var(--yellow) 0 22px,var(--black) 22px 44px); opacity: .18; }
.service-placeholder span { position: absolute; top: 18px; left: 20px; color: rgba(255,255,255,.25); font-size: 2.2rem; font-weight: 1000; }
.service-placeholder b { font-size: 2.3rem; letter-spacing: .1em; }
.service-body { position: relative; padding: 28px; }
.service-number { position: absolute; right: 23px; top: 23px; color: #d3d5d3; font-size: 1.8rem; font-weight: 1000; }
.service-body h2, .service-body h3 { max-width: 78%; margin-bottom: 13px; font-size: 1.42rem; }
.service-body p { color: var(--muted); font-size: .94rem; }
.dark-section { color: var(--white); background-color: var(--black); background-image: linear-gradient(rgba(11,13,15,.92),rgba(11,13,15,.92)), var(--why-image, none); background-size: cover; background-position: center; }
.dark-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 80px; align-items: center; }
.dark-copy p { color: #b8bdc0; font-size: 1.05rem; }
.feature-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: #383c40; }
.feature-grid article { min-height: 220px; padding: 30px; background: var(--black-2); }
.feature-grid article span { display: block; margin-bottom: 35px; color: var(--yellow); font-size: 1.5rem; font-weight: 1000; }
.feature-grid article h3 { margin-bottom: 10px; }
.feature-grid article p { color: #aeb3b6; font-size: .9rem; }
.process-grid { display: grid; grid-template-columns: repeat(4,1fr); margin: 0; padding: 0; list-style: none; counter-reset: steps; }
.process-grid li { position: relative; min-height: 250px; padding: 35px 28px; border: 1px solid var(--line); border-right: 0; }
.process-grid li:last-child { border-right: 1px solid var(--line); }
.process-grid li::after { content: ""; position: absolute; top: 48px; right: -9px; z-index: 2; width: 17px; height: 17px; transform: rotate(45deg); background: var(--white); border-top: 1px solid var(--line); border-right: 1px solid var(--line); }
.process-grid li:last-child::after { display: none; }
.process-grid span { display: grid; place-items: center; width: 48px; height: 48px; margin-bottom: 36px; background: var(--yellow); color: var(--accent-text); font-weight: 1000; }
.process-grid p { color: var(--muted); font-size: .92rem; }
.locations-section { background-color: var(--yellow); background-image: linear-gradient(rgba(var(--accent-rgb),.90),rgba(var(--accent-rgb),.90)), var(--locations-image, none); background-size: cover; background-position: center; color: var(--accent-text); }
.locations-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 80px; align-items: center; }
.locations-copy .eyebrow { color: var(--black); }
.locations-copy .eyebrow::before { background: var(--black); }
.locations-copy p { max-width: 510px; }
.location-list { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.location-list > a { display: grid; grid-template-columns: 34px 1fr 22px; align-items: center; gap: 13px; min-height: 83px; padding: 15px 18px; background: var(--white); border: 1px solid rgba(0,0,0,.13); }
.location-list > a:hover { background: var(--black); color: var(--white); }
.location-list > a > svg:first-child { width: 24px; height: 24px; color: var(--yellow-dark); }
.location-list > a > svg:last-child { width: 20px; }
.location-list span { display: grid; }
.location-list small { color: var(--muted); }
.location-list > a:hover small { color: #c9ccce; }
.seo-content-section { background: var(--paper); }
.two-column-copy { display: grid; grid-template-columns: 1fr 1fr; gap: 38px; color: var(--muted); }
.keyword-chips { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 30px; }
.keyword-chips span { padding: 8px 12px; background: var(--white); border: 1px solid var(--line); border-radius: 999px; color: #52575c; font-size: .8rem; }

/* Page */
.page-hero { padding: 100px 0; background-color: var(--black); background-image: linear-gradient(rgba(11,13,15,.88),rgba(11,13,15,.88)), var(--page-hero-image, none); background-size: cover; background-position: center; color: var(--white); }
.page-hero.compact { padding: 75px 0; }
.page-hero h1 { max-width: 950px; margin-bottom: 18px; font-size: clamp(2.7rem, 5.5vw, 5rem); text-transform: uppercase; }
.page-hero > .container > p { max-width: 760px; color: #c6cacd; font-size: 1.08rem; }
.page-hero .eyebrow { color: var(--yellow); }
.breadcrumbs { margin-bottom: 30px; color: #aab0b4; font-size: .8rem; }
.breadcrumbs ol { display: flex; flex-wrap: wrap; gap: 7px; margin: 0; padding: 0; list-style: none; }
.breadcrumbs li:not(:last-child)::after { content: "/"; margin-left: 7px; color: var(--yellow); }
.entry-content { font-size: 1.03rem; }
.entry-content h2, .entry-content h3 { margin-top: 1.6em; }
.entry-content h2:first-child, .entry-content h3:first-child { margin-top: 0; }
.entry-content p, .entry-content li { color: #444a50; }
.entry-content a { color: var(--yellow-dark); text-decoration: underline; }
.entry-content img { border-radius: var(--radius-sm); }
.entry-content blockquote { margin: 2em 0; padding: 20px 24px; border-left: 5px solid var(--yellow); background: var(--offwhite); }
.entry-content ul li::marker { color: var(--yellow-dark); }
.featured-image { margin-bottom: 36px; }
.content-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.content-card { padding: 28px; border: 1px solid var(--line); }
.content-card h2 { font-size: 1.45rem; }
.detail-layout { display: grid; grid-template-columns: minmax(0, 1fr) 360px; gap: 70px; align-items: start; }
.detail-sidebar { min-width: 0; }
.quote-box { padding: 30px; background: var(--offwhite); border-top: 6px solid var(--yellow); }
.quote-box h2 { font-size: 2rem; }
.sticky-box { position: sticky; top: 120px; }
.check-list { display: grid; gap: 12px; margin: 22px 0; padding: 0; list-style: none; }
.check-list li { display: flex; align-items: flex-start; gap: 10px; }
.check-list svg { flex: 0 0 auto; width: 21px; height: 21px; color: var(--yellow-dark); }
.service-hero-grid { display: grid; grid-template-columns: 1fr 420px; gap: 70px; align-items: center; }
.service-hero-image { overflow: hidden; border: 8px solid #252a2f; }
.service-hero-image img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.area-card-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; }
.area-card-grid > a { display: grid; grid-template-columns: 1fr 20px; gap: 10px; align-items: center; min-height: 110px; padding: 21px; background: var(--white); border: 1px solid var(--line); }
.area-card-grid > a:hover { background: var(--black); color: var(--white); border-color: var(--black); }
.area-card-grid strong { display: block; }
.area-card-grid span { display: block; color: var(--muted); font-size: .82rem; }
.area-card-grid a:hover span { color: #c9ccce; }
.area-card-grid.large { grid-template-columns: repeat(2,1fr); }
.area-card-grid.large > a { grid-template-columns: 30px 1fr 22px; min-height: 140px; }
.area-card-grid.large > a > svg:first-child { color: var(--yellow-dark); }
.service-mini-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.service-mini-grid > a { display: grid; grid-template-columns: 1fr 22px; min-height: 150px; align-content: center; gap: 7px 14px; padding: 24px; background: var(--white); border: 1px solid var(--line); }
.service-mini-grid > a:hover { border-color: var(--yellow-dark); box-shadow: var(--shadow); }
.service-mini-grid span { color: var(--muted); font-size: .86rem; }
.service-mini-grid svg { grid-column: 2; grid-row: 1 / 3; align-self: center; }
.faq-section details { margin-bottom: 10px; border: 1px solid var(--line); background: var(--white); }
.faq-section summary { padding: 17px 20px; font-weight: 900; cursor: pointer; }
.faq-section details p { padding: 0 20px 18px; margin: 0; }
.about-layout { display: grid; grid-template-columns: 1fr 360px; gap: 70px; align-items: start; }
.about-panel { overflow:hidden; padding: 32px; background: var(--black); color: var(--white); border-top: 6px solid var(--yellow); }
.about-panel-image { display:block; width:calc(100% + 64px); max-width:none; height:260px; margin:-32px -32px 28px; object-fit:cover; }
.about-panel .check-list li { color: #e5e7e8; }
.gallery-content .wp-block-gallery { gap: 16px !important; }
.gallery-content .wp-block-image img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }

/* Contact */
.contact-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 70px; }
.contact-info > h2 { max-width: 530px; }
.contact-info > p { color: var(--muted); }
.contact-card { display: grid; grid-template-columns: 48px 1fr; align-items: center; gap: 15px; margin-bottom: 10px; padding: 15px 18px; border: 1px solid var(--line); background: var(--white); }
.contact-card:hover:not(.static) { border-color: var(--yellow-dark); }
.contact-card > svg { width: 28px; height: 28px; color: var(--yellow-dark); }
.contact-card span { display: grid; }
.contact-card small { color: var(--muted); }
.contact-form-wrap { padding: 36px; background: var(--offwhite); border-top: 6px solid var(--yellow); }
.contact-form-wrap h2 { font-size: 2.35rem; }
.form-message { margin-bottom: 20px; padding: 13px 15px; border-left: 5px solid currentColor; background: var(--white); font-weight: 700; }
.form-message.success { color: var(--success); }
.form-message.error { color: var(--error); }
.contact-form { display: grid; gap: 17px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form label { display: grid; gap: 7px; font-weight: 800; }
.contact-form label > span { color: var(--error); }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; border: 1px solid #cbd0d3; border-radius: 4px; background: var(--white); padding: 13px 14px; outline: none; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--yellow-dark); box-shadow: 0 0 0 3px rgba(var(--accent-rgb), .25); }
.consent-check { grid-template-columns: 22px 1fr !important; align-items: start; gap: 9px !important; font-size: .82rem; font-weight: 500 !important; }
.consent-check input { width: 18px; height: 18px; margin-top: 3px; }
.consent-check span { color: var(--muted) !important; }
.consent-check a { text-decoration: underline; }
.honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* CTA */
.section-cta { background: var(--paper); }
.cta-panel { position: relative; overflow: hidden; display: grid; grid-template-columns: 1fr auto; gap: 50px; align-items: center; padding: 54px; background-color: var(--black); background-image: linear-gradient(rgba(11,13,15,.90),rgba(11,13,15,.90)), var(--cta-image, none); background-size: cover; background-position: center; color: var(--white); }
.cta-panel::after { content: ""; position: absolute; right: -80px; top: -130px; width: 360px; height: 360px; border: 45px solid rgba(var(--accent-rgb), .09); border-radius: 50%; }
.cta-panel > * { position: relative; z-index: 1; }
.cta-panel h2 { margin-bottom: 12px; font-size: clamp(2rem, 4vw, 3.4rem); }
.cta-panel p { max-width: 720px; margin: 0; color: #c8cccf; }
.cta-actions { display: grid; gap: 10px; min-width: 210px; }

/* Footer */
.site-footer { background: var(--black); color: var(--white); }
.footer-grid { display: grid; grid-template-columns: 1.3fr .8fr .8fr 1fr; gap: 52px; padding-top: 70px; padding-bottom: 60px; }
.footer-brand { color: var(--white); margin-bottom: 22px; }
.footer-brand .brand-text small { color: #8d9498; }
.footer-about p { max-width: 360px; color: #aeb4b8; }
.footer-actions { display: flex; flex-wrap: wrap; gap: 9px; }
.site-footer h2 { margin-bottom: 22px; font-size: 1.12rem; letter-spacing: 0; text-transform: uppercase; }
.footer-links, .footer-contact { display: grid; gap: 10px; margin: 0; padding: 0; list-style: none; color: #b7bdc0; font-size: .9rem; }
.footer-links a:hover, .footer-contact a:hover { color: var(--yellow); }
.footer-area-links { grid-template-columns: 1fr 1fr; }
.footer-contact li { display: flex; align-items: flex-start; gap: 10px; }
.footer-contact svg { flex: 0 0 auto; width: 20px; height: 20px; color: var(--yellow); }
.footer-bottom { border-top: 1px solid #272b2f; }
.footer-bottom-inner { min-height: 74px; display: flex; align-items: center; justify-content: space-between; gap: 20px; color: #858b8f; font-size: .8rem; }
.footer-bottom p { margin: 0; }
.footer-bottom-inner div { display: flex; gap: 20px; }
.mobile-action-bar { display: none; }

/* Cookie */
.cookie-banner { position: fixed; z-index: 9998; left: 20px; right: 20px; bottom: 20px; max-width: 1040px; margin-inline: auto; display: grid; grid-template-columns: 1fr auto; gap: 25px; align-items: center; padding: 22px; background: #15181b; color: var(--white); border: 1px solid #34393d; box-shadow: 0 20px 70px rgba(0,0,0,.35); }
.cookie-banner[hidden] { display: none; }
.cookie-banner p { margin: 3px 0; color: #c2c7ca; font-size: .83rem; }
.cookie-banner a { color: var(--yellow); font-size: .8rem; text-decoration: underline; }
.cookie-actions { display: flex; gap: 8px; }

/* 404 */
.error-page { min-height: 65vh; display: grid; place-items: center; text-align: center; }
.error-code { display: block; color: var(--yellow-dark); font-size: clamp(5rem, 15vw, 11rem); font-weight: 1000; line-height: .8; }
.error-page p { color: var(--muted); }

@media (max-width: 1080px) {
	.nav-menu { gap: 16px; }
	.nav-menu a { font-size: .84rem; }
	.hero-grid { grid-template-columns: 1fr 290px; gap: 40px; }
	.footer-grid { grid-template-columns: 1.2fr 1fr 1fr; }
	.footer-grid > div:last-child { grid-column: 2 / 4; }
	.area-card-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 900px) {
	.section { padding: 72px 0; }
	.topbar p { display: none; }
	.topbar-inner { justify-content: flex-end; }
	.menu-toggle { display: block; }
	.primary-nav { position: fixed; z-index: 1000; top: 0; right: 0; bottom: 0; width: min(86vw, 380px); display: block; padding: 88px 28px 30px; background: var(--black); color: var(--white); transform: translateX(105%); transition: transform .25s ease; box-shadow: -20px 0 60px rgba(0,0,0,.3); }
	.primary-nav.is-open { transform: translateX(0); }
	.nav-menu { display: grid; align-items: stretch; gap: 0; }
	.nav-menu li { border-bottom: 1px solid #2b3034; }
	.nav-menu a { display: block; padding: 15px 0; font-size: 1rem; }
	.nav-menu > li > a::after { display: none; }
	.nav-cta { width: 100%; margin-top: 24px; }
	.menu-toggle { position: relative; z-index: 1001; }
	.hero-slides { min-height: 590px; }
	.hero-grid { grid-template-columns: 1fr; align-items: center; min-height: 590px; padding-top: 56px; padding-bottom: 88px; }
	.hero-card { display: none; }
	.split-heading, .dark-grid, .locations-layout, .contact-layout, .about-layout, .detail-layout, .service-hero-grid { grid-template-columns: 1fr; gap: 42px; }
	.intro-strip-grid { grid-template-columns: 1fr 1fr; }
	.intro-strip-grid > div:nth-child(2) { border-right: 0; }
	.intro-strip-grid > div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
	.service-grid { grid-template-columns: 1fr 1fr; }
	.process-grid { grid-template-columns: 1fr 1fr; }
	.process-grid li:nth-child(2) { border-right: 1px solid var(--line); }
	.process-grid li:nth-child(2)::after { display: none; }
	.process-grid li:nth-child(-n+2) { border-bottom: 0; }
	.location-list { grid-template-columns: 1fr 1fr; }
	.service-mini-grid { grid-template-columns: 1fr 1fr; }
	.sticky-box { position: static; }
	.cta-panel { grid-template-columns: 1fr; }
	.cta-actions { display: flex; flex-wrap: wrap; }
	.footer-grid { grid-template-columns: 1fr 1fr; }
	.footer-grid > div:last-child { grid-column: auto; }
}

@media (max-width: 640px) {
	body { padding-bottom: calc(68px + env(safe-area-inset-bottom)); }
	.container, .content-narrow { width: min(calc(100% - 28px), var(--container)); }
	.section { padding: 58px 0; }
	h1 { font-size: 2.55rem; }
	h2 { font-size: 2.05rem; }
	.topbar { display: none; }
	.header-inner { min-height: 72px; }
	.brand-mark { width: 42px; height: 42px; }
	.brand-text strong { font-size: 1.05rem; }
	.brand-text small { font-size: .57rem; }
	.hero-slides { min-height: 560px; }
	.hero-slide { background-image: linear-gradient(90deg,rgba(8,10,12,.97),rgba(8,10,12,.78)), var(--hero-image, linear-gradient(135deg,#171b1f,#090a0b)); }
	.hero-grid { min-height: 560px; padding-top: 48px; padding-bottom: 82px; }
	.hero h1, .hero h2 { font-size: clamp(1.95rem, 8vw, 2.75rem); line-height: 1.08; letter-spacing: -.025em; }
	.hero-buttons, .cta-actions { display: grid; width: 100%; }
	.hero-buttons .btn, .cta-actions .btn { width: 100%; }
	.hero-points { display: grid; gap: 9px; }
	.hero-controls { justify-content: center; }
	.intro-strip-grid { grid-template-columns: 1fr; }
	.intro-strip-grid > div { border-right: 0; border-bottom: 1px solid var(--line); min-height: 96px; }
	.intro-strip-grid > div:last-child { border-bottom: 0; }
	.service-grid, .feature-grid, .process-grid, .location-list, .two-column-copy, .content-grid, .area-card-grid, .area-card-grid.large, .service-mini-grid, .form-row, .footer-grid { grid-template-columns: 1fr; }
	.feature-grid { gap: 1px; }
	.process-grid li { border-right: 1px solid var(--line); border-bottom: 0; }
	.process-grid li:last-child { border-bottom: 1px solid var(--line); }
	.process-grid li::after { top: auto; right: 50%; bottom: -9px; transform: translateX(50%) rotate(135deg); }
	.process-grid li:nth-child(2)::after { display: block; }
	.location-list > a { min-height: 75px; }
	.page-hero, .page-hero.compact { padding: 58px 0; }
	.page-hero h1 { font-size: 2.6rem; }
	.contact-form-wrap { padding: 25px 20px; }
	.cta-panel { padding: 34px 24px; }
	.footer-grid { gap: 38px; }
	.footer-bottom-inner { display: grid; padding: 18px 0; }
	.mobile-action-bar { position: fixed; z-index: 9990; left: 0; right: 0; bottom: 0; display: grid; grid-template-columns: 1fr 1fr; min-height: 64px; padding-bottom: env(safe-area-inset-bottom); box-shadow: 0 -8px 25px rgba(0,0,0,.22); }
	.mobile-action { min-width: 0; min-height: 64px; display: flex; align-items: center; justify-content: center; gap: 9px; padding: 10px 8px; text-align: center; font-size: clamp(.72rem, 3.3vw, .9rem); font-weight: 900; line-height: 1.15; text-decoration: none; }
	.mobile-action svg { flex: 0 0 auto; width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
	.mobile-action-whatsapp svg { fill: currentColor; stroke: none; }
	.mobile-action-phone { background: var(--yellow); color: var(--accent-text); }
	.mobile-action-whatsapp { background: var(--whatsapp); color: var(--white); }
	.mobile-action:active { filter: brightness(.92); }
	.mobile-action-phone + .mobile-action-whatsapp { border-left: 1px solid rgba(0,0,0,.16); }
	.cookie-banner { left: 10px; right: 10px; bottom: calc(76px + env(safe-area-inset-bottom)); grid-template-columns: 1fr; padding: 17px; }
	.cookie-actions { display: grid; grid-template-columns: 1fr 1fr; }
}

@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}

/* ==========================================================
 * Menü / alt menü düzeltmesi — v2.0.3
 * Masaüstünde alt menüler yalnızca hover veya klavye odağında açılır.
 * Mobil çekmecede alt menüler düzenli ve okunabilir biçimde gösterilir.
 * ========================================================== */
.nav-menu > .menu-item-has-children {
	position: relative;
}

.nav-menu > .menu-item-has-children > a {
	display: inline-flex;
	align-items: center;
	gap: 7px;
}

.nav-menu > .menu-item-has-children > a::before {
	content: "";
	order: 2;
	width: 7px;
	height: 7px;
	border-right: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	transform: translateY(-2px) rotate(45deg);
	transition: transform .18s ease;
}

@media (min-width: 901px) {
	.site-header .nav-menu .sub-menu {
		position: absolute;
		z-index: 1100;
		top: calc(100% + 18px);
		left: 50%;
		width: 290px;
		min-width: 290px;
		margin: 0;
		padding: 10px 0;
		list-style: none;
		background: var(--white);
		border-top: 4px solid var(--yellow);
		box-shadow: 0 18px 45px rgba(0,0,0,.18);
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
		transform: translate(-50%, 10px);
		transition: opacity .18s ease, visibility .18s ease, transform .18s ease;
	}

	.site-header .nav-menu .sub-menu::before {
		content: "";
		position: absolute;
		left: 0;
		right: 0;
		bottom: 100%;
		height: 22px;
	}

	.site-header .nav-menu > .menu-item-has-children:hover > .sub-menu,
	.site-header .nav-menu > .menu-item-has-children:focus-within > .sub-menu {
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
		transform: translate(-50%, 0);
	}

	.site-header .nav-menu > .menu-item-has-children:hover > a::before,
	.site-header .nav-menu > .menu-item-has-children:focus-within > a::before {
		transform: translateY(2px) rotate(225deg);
	}

	.site-header .nav-menu .sub-menu li {
		display: block;
		width: 100%;
		margin: 0;
		padding: 0;
		border: 0;
		list-style: none;
	}

	.site-header .nav-menu .sub-menu li::marker,
	.site-header .nav-menu .sub-menu li::before {
		content: none;
		display: none;
	}

	.site-header .nav-menu .sub-menu a {
		display: block;
		width: 100%;
		padding: 11px 18px;
		color: var(--black);
		font-size: .88rem;
		font-weight: 750;
		line-height: 1.35;
		white-space: normal;
		text-decoration: none;
		transition: background-color .16s ease, color .16s ease, padding-left .16s ease;
	}

	.site-header .nav-menu .sub-menu a:hover,
	.site-header .nav-menu .sub-menu a:focus-visible,
	.site-header .nav-menu .sub-menu .current-menu-item > a {
		padding-left: 23px;
		background: var(--yellow);
		color: var(--accent-text);
		outline: none;
	}
}

@media (max-width: 900px) {
	.primary-nav {
		overflow-y: auto;
		-webkit-overflow-scrolling: touch;
	}

	.primary-nav .nav-menu > .menu-item-has-children > a {
		display: flex;
		justify-content: space-between;
	}

	.primary-nav .nav-menu > .menu-item-has-children > a::before {
		border-color: var(--yellow);
	}

	.primary-nav .nav-menu .sub-menu {
		position: static;
		display: grid;
		width: 100%;
		margin: 0 0 8px;
		padding: 0 0 8px 15px;
		list-style: none;
		background: transparent;
		box-shadow: none;
		opacity: 1;
		visibility: visible;
		transform: none;
		pointer-events: auto;
	}

	.primary-nav .nav-menu .sub-menu li {
		border-bottom: 0;
		list-style: none;
	}

	.primary-nav .nav-menu .sub-menu li::marker,
	.primary-nav .nav-menu .sub-menu li::before {
		content: none;
		display: none;
	}

	.primary-nav .nav-menu .sub-menu a {
		padding: 9px 0 9px 14px;
		border-left: 2px solid #343a3e;
		color: #cfd3d5;
		font-size: .9rem;
		font-weight: 700;
		line-height: 1.35;
	}

	.primary-nav .nav-menu .sub-menu a:hover,
	.primary-nav .nav-menu .sub-menu a:focus-visible,
	.primary-nav .nav-menu .sub-menu .current-menu-item > a {
		border-left-color: var(--yellow);
		color: var(--yellow);
	}
}

/* v2.0.6 içerik paneli ile seçilen footer logosu */
.footer-custom-logo { display:block; width:auto; max-width:260px; max-height:72px; object-fit:contain; }
