/* Rizzo's Theme Parts
   Colors sampled from the production Elementor Pro templates. */

/* Override Hello Elementor reset.css generic button styles (pink #c36).
   Target specific buttons so we don't clobber .rzw-burger. */
.rzw-nav__toggle,
.rzw-overlay__toggle,
.rzw-overlay__close {
	border: 0;
	background-color: transparent;
	color: inherit;
}
.rzw-nav__toggle:hover,
.rzw-nav__toggle:focus,
.rzw-overlay__toggle:hover,
.rzw-overlay__toggle:focus,
.rzw-overlay__close:hover,
.rzw-overlay__close:focus {
	background-color: transparent;
	color: inherit;
}

:root {
	--rzw-black: #000000;
	--rzw-white: #ffffff;
	--rzw-gold: #e5c439;
	--rzw-green: #668a59;
	--rzw-muted: #5a5a5a;
	--rzw-font-head: "Rubik", system-ui, sans-serif;
	--rzw-font-body: "Inter", system-ui, sans-serif;
	--rzw-header-h: 96px;
	--rzw-max: 1400px;
	--rzw-gutter: 24px;
}

.rzw-container {
	max-width: var(--rzw-max);
	margin-inline: auto;
	padding-inline: var(--rzw-gutter);
	width: 100%;
}

.rzw-icon { width: 1em; height: 1em; flex: none; }

/* Skip link */
.rzw-skip-link {
	position: absolute;
	left: -9999px;
	top: 0;
	z-index: 1000;
	background: var(--rzw-white);
	color: var(--rzw-black);
	padding: 12px 20px;
	font-family: var(--rzw-font-body);
}
.rzw-skip-link:focus { left: 0; }

/* ---------- Top bar ---------- */
.rzw-topbar {
	background: var(--rzw-black);
	color: var(--rzw-white);
	font-family: var(--rzw-font-body);
	font-size: 14px;
}
.rzw-topbar__inner {
	display: flex;
	align-items: center;
	gap: 20px;
	min-height: 44px;
	flex-wrap: wrap;
}
.rzw-topbar__item {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: var(--rzw-white);
	text-decoration: none;
	line-height: 1;
}
.rzw-topbar__item .rzw-icon { color: var(--rzw-gold); font-size: 15px; }
.rzw-topbar__item:hover { color: var(--rzw-gold); }
.rzw-topbar__social { font-size: 18px; }

/* ---------- Header bar ---------- */
.rzw-header__bar { background: var(--rzw-white); }
.rzw-header__inner {
	display: flex;
	align-items: stretch;
	min-height: var(--rzw-header-h);
	max-width: var(--rzw-max);
	margin-inline: auto;
	padding-left: var(--rzw-gutter);
	gap: 0;
}
.rzw-header__logo {
	display: flex;
	align-items: center;
	flex: none;
	text-decoration: none;
}
.rzw-header__logo img { display: block; height: auto; max-width: 222px; }
.rzw-header__logo-text {
	font-family: var(--rzw-font-head);
	font-weight: 700;
	color: var(--rzw-black);
	font-size: 20px;
}

/* ---------- Desktop nav ---------- */
.rzw-nav {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	flex: 1 1 auto;
	padding-inline: 16px;
}
.rzw-nav__list {
	display: flex;
	align-items: center;
	gap: 28px;
	list-style: none;
	margin: 0;
	padding: 0;
}
.rzw-nav__item { position: relative; display: flex; align-items: center; gap: 4px; }
.rzw-nav__link {
	font-family: var(--rzw-font-head);
	font-size: 17px;
	font-weight: 400;
	color: var(--rzw-black);
	text-decoration: none;
	white-space: nowrap;
	padding-block: 8px;
}
.rzw-nav__item.is-current > .rzw-nav__link,
.rzw-nav__link:hover { color: var(--rzw-muted); }

.rzw-nav__toggle {
	background: none;
	border: 0;
	padding: 6px;
	cursor: pointer;
	display: inline-flex;
	line-height: 0;
	outline: none;
}
.rzw-nav__toggle:focus-visible {
	outline: 2px solid var(--rzw-black);
	outline-offset: 2px;
	border-radius: 2px;
}
.rzw-nav__toggle span {
	width: 0; height: 0;
	border-left: 5px solid transparent;
	border-right: 5px solid transparent;
	border-top: 6px solid var(--rzw-black);
	display: block;
	transition: transform .2s ease;
}
.rzw-nav__toggle[aria-expanded="true"] span { transform: rotate(180deg); }

.rzw-nav__sub {
	position: absolute;
	top: 100%;
	left: 0;
	min-width: 260px;
	background: var(--rzw-white);
	box-shadow: 0 10px 30px rgba(0,0,0,.14);
	list-style: none;
	margin: 0;
	padding: 8px 0;
	display: none;
	z-index: 60;
}
.rzw-nav__item--parent:hover > .rzw-nav__sub,
.rzw-nav__item--parent:focus-within > .rzw-nav__sub,
.rzw-nav__item--parent.is-open > .rzw-nav__sub { display: block; }
.rzw-nav__sub .rzw-nav__item { display: block; }
.rzw-nav__sub .rzw-nav__link {
	display: block;
	padding: 12px 20px;
	font-family: var(--rzw-font-head);
	font-size: 15px;
	white-space: normal;
}
.rzw-nav__sub .rzw-nav__link:hover { background: #f4f6f2; color: var(--rzw-green); }

/* ---------- Header CTA ---------- */
.rzw-header__cta {
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	align-self: stretch;
	flex: none;
	width: 15%;
	min-width: 160px;
	padding: 30px 10px;
	background: var(--rzw-green);
	color: var(--rzw-white);
	font-family: var(--rzw-font-body);
	font-size: 17px;
	font-weight: 400;
	line-height: 25px;
	text-decoration: none;
	text-transform: uppercase;
	transition: background .2s ease;
}
.rzw-header__cta:hover { background: #55764a; color: var(--rzw-white); }

/* ---------- Burger ---------- */
.rzw-burger {
	display: none;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	margin-left: auto;
	margin-right: var(--rzw-gutter);
	align-self: center;
	background: var(--rzw-black);
	border: 0;
	border-radius: 6px;
	cursor: pointer;
	color: var(--rzw-white);
}
.rzw-burger:hover,
.rzw-burger:focus {
	background: var(--rzw-black);
	color: var(--rzw-white);
}
.rzw-burger__bars { display: grid; gap: 5px; }
.rzw-burger__bars span {
	display: block;
	width: 26px;
	height: 3px;
	background: var(--rzw-white);
	border-radius: 2px;
}

/* ---------- Full screen overlay menu ---------- */
.rzw-overlay {
	position: fixed;
	inset: 0;
	z-index: 999;
	background: var(--rzw-black);
	color: var(--rzw-white);
	display: flex;
	flex-direction: column;
	overflow-y: auto;
	overscroll-behavior: contain;
	opacity: 0;
	transition: opacity .22s ease;
}
.rzw-overlay[hidden] { display: none; }
.rzw-overlay.is-open { opacity: 1; }

.rzw-overlay__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 18px var(--rzw-gutter);
	border-bottom: 1px solid rgba(255,255,255,.12);
	flex: none;
}
.rzw-overlay__logo img { display: block; max-width: 180px; height: auto; }
.rzw-overlay__close {
	background: none;
	border: 0;
	color: var(--rzw-white);
	font-size: 40px;
	line-height: 1;
	width: 48px;
	height: 48px;
	cursor: pointer;
}

.rzw-overlay__nav { flex: 1 1 auto; padding: 12px var(--rzw-gutter); }
.rzw-overlay__list, .rzw-overlay__sub { list-style: none; margin: 0; padding: 0; }
.rzw-overlay__item {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	border-bottom: 1px solid rgba(255,255,255,.1);
}
.rzw-overlay__link {
	flex: 1 1 auto;
	display: block;
	padding: 18px 4px;
	font-family: var(--rzw-font-head);
	font-size: 22px;
	color: var(--rzw-white);
	text-decoration: none;
}
.rzw-overlay__item.is-current > .rzw-overlay__link { color: var(--rzw-gold); }
.rzw-overlay__toggle {
	flex: none;
	width: 48px;
	height: 48px;
	background: none;
	border: 0;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}
.rzw-overlay__toggle span {
	width: 0; height: 0;
	border-left: 6px solid transparent;
	border-right: 6px solid transparent;
	border-top: 8px solid var(--rzw-gold);
	transition: transform .2s ease;
}
.rzw-overlay__toggle[aria-expanded="true"] span { transform: rotate(180deg); }
.rzw-overlay__sub { flex: 1 0 100%; padding-bottom: 8px; }
.rzw-overlay__sub[hidden] { display: none; }
.rzw-overlay__sub .rzw-overlay__item { border-bottom: 0; }
.rzw-overlay__sub .rzw-overlay__link {
	font-family: var(--rzw-font-body);
	font-size: 18px;
	padding: 12px 4px 12px 20px;
	color: rgba(255,255,255,.82);
}

.rzw-overlay__foot {
	flex: none;
	display: grid;
	gap: 12px;
	padding: 20px var(--rzw-gutter) 32px;
}
.rzw-overlay__cta {
	display: block;
	text-align: center;
	background: var(--rzw-green);
	color: var(--rzw-white);
	padding: 18px;
	font-family: var(--rzw-font-body);
	font-size: 18px;
	text-transform: uppercase;
	text-decoration: none;
	border-radius: 4px;
}
.rzw-overlay__phone {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 16px;
	border: 1px solid var(--rzw-gold);
	border-radius: 4px;
	color: var(--rzw-gold);
	font-size: 18px;
	text-decoration: none;
}

body.rzw-menu-open { overflow: hidden; }

/* ---------- Footer ---------- */
.rzw-footer {
	position: relative;
	background: var(--rzw-black) center/cover no-repeat;
	color: var(--rzw-white);
	font-family: var(--rzw-font-body);
	padding: 80px 0 0;
	isolation: isolate;
}
.rzw-footer__overlay {
	position: absolute;
	inset: 0;
	background: rgba(0,0,0,.82);
	z-index: -1;
}
.rzw-footer__inner {
	display: grid;
	grid-template-columns: 40% 30% 30%;
	gap: 40px;
	align-items: start;
	padding-bottom: 40px;
}
.rzw-footer__logo img { display: block; max-width: 222px; height: auto; }
.rzw-footer__social {
	display: inline-flex;
	margin-top: 22px;
	font-size: 24px;
	color: var(--rzw-white);
}
.rzw-footer__social:hover { color: var(--rzw-gold); }

.rzw-footer__heading {
	font-family: var(--rzw-font-head);
	font-size: 20px;
	font-weight: 500;
	color: var(--rzw-white);
	margin: 0 0 22px;
}
/* Screen-reader-only: keeps heading accessible but visually hidden. */
.rzw-footer__heading--sr-only {
	position: absolute;
	width: 1px; height: 1px;
	overflow: hidden;
	clip: rect(0 0 0 0);
	white-space: nowrap;
}
.rzw-footer__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.rzw-footer__list a {
	color: var(--rzw-white);
	text-decoration: none;
	font-size: 17px;
}
.rzw-footer__list a:hover { color: var(--rzw-gold); }

.rzw-footer__copy {
	margin: 0;
	padding: 20px 0 15px;
	text-align: center;
	font-family: var(--rzw-font-head);
	font-size: 13px;
	font-weight: 300;
	color: var(--rzw-white);
}

/* ---------- Breakpoints ---------- */
@media (max-width: 1200px) {
	.rzw-nav__list { gap: 18px; }
	.rzw-header__cta { min-width: 140px; }
}

@media (max-width: 1024px) {
	:root { --rzw-header-h: 80px; }
	.rzw-nav,
	.rzw-header__cta { display: none; }
	.rzw-burger { display: inline-flex; }
	.rzw-header__inner { padding-right: 0; }
	.rzw-header__logo img { max-width: 180px; }

	.rzw-topbar__inner {
		justify-content: center;
		gap: 8px 24px;
		padding-block: 8px;
		text-align: center;
	}

	.rzw-footer__inner { grid-template-columns: 1fr; justify-items: center; text-align: center; gap: 36px; }
	.rzw-footer__brand { display: grid; justify-items: center; }
	.rzw-footer__list { justify-items: center; }
}

@media (max-width: 600px) {
	:root { --rzw-gutter: 16px; }
	.rzw-topbar { font-size: 13px; }
	.rzw-header__logo img { max-width: 150px; }
	.rzw-footer { padding-top: 56px; }
}

@media (prefers-reduced-motion: reduce) {
	.rzw-overlay, .rzw-nav__toggle span, .rzw-overlay__toggle span { transition: none; }
}
