:root {
	--sarara-color-bg: #f5f5f5;
	--sarara-color-surface: #ffffff;
	--sarara-color-surface-soft: #fafafa;
	--sarara-color-line: #d9d9d9;
	--sarara-color-text: #222222;
	--sarara-color-text-soft: #666666;
	--sarara-color-accent: #3b3b3b;
	--sarara-color-accent-dark: #1f1f1f;
	--sarara-radius-sm: 0.375rem;
	--sarara-radius-md: 0.5rem;
	--sarara-radius-lg: 0.75rem;
	--sarara-shadow: none;
	--sarara-header-height: 100px;
	--sarara-shell: min(1240px, calc(100% - 4rem));
	--sarara-shell-wide: min(1440px, calc(100% - 4rem));
}

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

html {
	scroll-behavior: smooth;
}

body {
	font-family: "Segoe UI", "Helvetica Neue", sans-serif;
	font-size: 16px;
	line-height: 1.7;
	color: var(--sarara-color-text);
	background: var(--sarara-color-bg);
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

a {
	color: inherit;
	text-decoration-color: rgba(34, 34, 34, 0.3);
}

a:hover,
a:focus {
	text-decoration-color: var(--sarara-color-accent);
}

button,
input,
textarea,
select {
	font: inherit;
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.screen-reader-text:focus {
	clip: auto;
	width: auto;
	height: auto;
	margin: 1rem;
	padding: 0.5rem 0.75rem;
	background: #fff;
	z-index: 100000;
}

.site-shell {
	width: var(--sarara-shell);
	margin-inline: auto;
}

.site-shell--wide {
	width: var(--sarara-shell-wide);
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 50;
	margin-bottom: calc(var(--sarara-header-height) * -1);
	background: transparent;
	transition: background-color 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	height: var(--sarara-header-height);
	padding: 0;
}

.site-header.is-scrolled {
	background: rgba(255, 255, 255, 0.96);
	border-bottom: 1px solid rgba(217, 217, 217, 0.9);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.site-branding {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.85rem;
	height: 100%;
}

.site-logo {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	line-height: 0;
	text-decoration: none;
}

.site-logo img {
	display: block;
	width: auto;
	max-height: 46px;
}

.site-logo__image--light {
	display: none;
}

.site-logo__image--default {
	display: block;
}

.site-header:not(.is-scrolled) .site-logo--has-light .site-logo__image--light {
	display: block !important;
}

.site-header:not(.is-scrolled) .site-logo--has-light .site-logo__image--default {
	display: none !important;
}

.site-header.is-scrolled .site-logo__image--default {
	display: block !important;
}

.site-header.is-scrolled .site-logo__image--light {
	display: none !important;
}

.site-title,
.site-title a {
	margin: 0;
	font-size: 1.15rem;
	font-weight: 700;
	text-decoration: none;
}

.site-title a,
.site-header .main-navigation a,
.site-header .menu-toggle,
.site-header .site-description {
	color: #ffffff;
}

.site-header.is-scrolled .site-title a,
.site-header.is-scrolled .main-navigation a,
.site-header.is-scrolled .menu-toggle,
.site-header.is-scrolled .site-description {
	color: var(--sarara-color-accent);
}

.site-description {
	margin: 0.15rem 0 0;
	font-size: 0.9rem;
	color: var(--sarara-color-text-soft);
}

.main-navigation ul,
.footer-menu {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
}

.main-navigation ul {
	align-items: center;
	min-height: var(--sarara-header-height);
}

.main-navigation a,
.footer-menu a {
	text-decoration: none;
	font-weight: 500;
}

.menu-toggle {
	display: none;
	padding: 0.65rem 1rem;
	border: 1px solid rgba(255, 255, 255, 0.45);
	border-radius: var(--sarara-radius-md);
	background: transparent;
	cursor: pointer;
}

.site-header.is-scrolled .menu-toggle {
	border-color: rgba(59, 59, 59, 0.28);
	background: transparent;
}



.site-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 320px;
	gap: 4rem;
	align-items: start;
}

.content-area {
	min-width: 0;
}

.post-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 3rem;
}

.post-card,
.entry-content-wrap,
.widget,
.hero-panel,
.feature-card,
.empty-state {
	background: transparent;
	border: 0;
	border-radius: 0;
	box-shadow: var(--sarara-shadow);
}

.post-card {
	display: grid;
	gap: 1.25rem;
	padding-bottom: 2.5rem;
	border-bottom: 1px solid var(--sarara-color-line);
}

.post-card__media img {
	width: 100%;
	aspect-ratio: 16 / 10;
	object-fit: cover;
}

.post-card__content,
.entry-content-wrap,
.widget,
.hero-panel,
.empty-state {
	padding: 0;
}

.hero-panel {
	padding: 0;
	margin-bottom: 2.5rem;
}

.hero-panel__eyebrow {
	margin: 0 0 0.5rem;
	font-size: 0.8rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--sarara-color-text-soft);
}

.hero-panel h1,
.entry-title,
.archive-title,
.empty-state h1 {
	margin: 0 0 1rem;
	line-height: 1.1;
	font-size: clamp(2rem, 5vw, 3.5rem);
}

.entry-title {
	font-size: clamp(1.85rem, 4vw, 3rem);
}

.post-card .entry-title {
	font-size: clamp(1.6rem, 3vw, 2.2rem);
}

.hero-panel__actions,
.entry-footer,
.entry-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem 1rem;
	align-items: center;
}

.button,
.search-submit,
.wp-block-search__button,
button[type="submit"],
input[type="submit"] {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.9rem 1.25rem;
	border-radius: 999px;
	border: 1px solid var(--sarara-color-line);
	font-weight: 600;
	text-decoration: none;
	cursor: pointer;
	transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.button:hover,
.search-submit:hover,
.wp-block-search__button:hover,
button[type="submit"]:hover,
input[type="submit"]:hover {
	border-color: var(--sarara-color-text-soft);
}

.button-primary,
.search-submit,
.wp-block-search__button,
button[type="submit"],
input[type="submit"] {
	background: transparent;
	color: var(--sarara-color-text);
}

.button-primary:hover,
.search-submit:hover,
.wp-block-search__button:hover,
button[type="submit"]:hover,
input[type="submit"]:hover {
	background: var(--sarara-color-surface);
}

.button-secondary {
	background: transparent;
	border-color: var(--sarara-color-line);
	color: var(--sarara-color-text);
}

.feature-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 2rem;
}

.feature-card {
	padding: 0;
}

.archive-header {
	margin-bottom: 2.5rem;
}

.archive-description,
.entry-summary,
.entry-content,
.site-footer__text,
.widget,
.feature-card p,
.empty-state p {
	color: var(--sarara-color-text-soft);
}

.entry-content > *:first-child,
.entry-summary > *:first-child {
	margin-top: 0;
}

.entry-content > *:last-child,
.entry-summary > *:last-child {
	margin-bottom: 0;
}

.text-link {
	font-weight: 600;
	color: var(--sarara-color-text);
	text-decoration: none;
}

.widget-area {
	display: grid;
	gap: 2rem;
}

.widget-title {
	margin-top: 0;
	font-size: 1.15rem;
}

.search-form {
	display: flex;
	gap: 0.75rem;
	flex-wrap: wrap;
}

.search-field,
input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
textarea,
select {
	width: 100%;
	padding: 0.9rem 1rem;
	border: 1px solid var(--sarara-color-line);
	border-radius: 999px;
	background: transparent;
}

textarea {
	border-radius: 1.25rem;
}

.search-form label {
	flex: 1 1 260px;
}

.single-thumbnail {
	margin-bottom: 1.5rem;
	overflow: hidden;
	border-radius: 0;
	border: 0;
}

.site-footer {
	background: transparent;
	color: var(--sarara-color-text);
	padding-top: 3rem;
	border-top: 1px solid var(--sarara-color-line);
}

.site-footer__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 2rem;
	padding-bottom: 2rem;
}

.site-footer__brand,
.site-footer__heading {
	margin-top: 0;
	font-size: 1.1rem;
	font-weight: 700;
}

.site-footer__bottom {
	border-top: 1px solid var(--sarara-color-line);
	padding: 1rem 0;
	font-size: 0.95rem;
	color: var(--sarara-color-text-soft);
}

.comments-area,
.navigation,
.post-navigation {
	margin-top: 2rem;
}

.comment-list {
	padding-left: 1.25rem;
}

.no-sidebar .site-layout {
	grid-template-columns: minmax(0, 1fr);
}

.template-blank {
	background: #fff;
}

.hero-panel--placeholder {
	display: grid;
	gap: 1rem;
}

.entry-content-wrap,
.widget,
.empty-state {
	padding-bottom: 0.5rem;
}

.entry-content-wrap + .comments-area,
.entry-content-wrap + .navigation,
.entry-content-wrap + .post-navigation {
	border-top: 1px solid var(--sarara-color-line);
	padding-top: 2rem;
}

.alignwide {
	margin-left: max(-7vw, -4rem);
	margin-right: max(-7vw, -4rem);
}

.alignfull {
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	max-width: 100vw;
	width: 100vw;
}

.wp-block-group,
.wp-block-cover,
.wp-block-columns {
	margin-bottom: 1.5rem;
}

.elementor-location-header + .site-main,
.elementor-location-single + .site-main {
	padding-top: 0;
}

@media (max-width: 1024px) {
	.site-layout,
	.site-footer__grid,
	.feature-grid,
	.post-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 782px) {
	.site-header__inner {
		flex-wrap: wrap;
		height: auto;
	}

	.menu-toggle {
		display: inline-flex;
	}

	.main-navigation {
		display: none;
		width: 100%;
		padding: 1rem 1.25rem;
		background: var(--sarara-color-accent);
		border: 0;
		border-radius: 1rem;
	}

	.main-navigation.is-open {
		display: block;
	}

	.main-navigation ul {
		flex-direction: column;
		padding-top: 0.75rem;
		align-items: flex-start;
		min-height: 0;
	}

	.site-header .main-navigation a {
		color: #ffffff;
	}

	.hero-panel h1,
	.entry-title,
	.archive-title,
	.empty-state h1 {
		font-size: clamp(1.8rem, 9vw, 2.7rem);
	}
}
