:root {
	--as-bg: #f5f5f7;
	--as-bg-soft: #fbfbfd;
	--as-surface: #ffffff;
	--as-surface-raised: rgba(255, 255, 255, 0.88);
	--as-text: #1d1d1f;
	--as-text-strong: #161617;
	--as-muted: #6e6e73;
	--as-primary: #0071e3;
	--as-primary-strong: #005bb8;
	--as-green: #168a5b;
	--as-green-soft: #e8f6ef;
	--as-amber: #a86b18;
	--as-amber-soft: #fff4df;
	--as-plum: #7a5aa6;
	--as-border: rgba(0, 0, 0, 0.08);
	--as-border-strong: rgba(0, 0, 0, 0.16);
	--as-shadow: 0 16px 42px rgba(0, 0, 0, 0.08);
	--as-radius-card: 8px;
	--as-radius-control: 12px;
	--as-radius-pill: 999px;
	--as-ease: cubic-bezier(0.16, 1, 0.3, 1);
	--as-shell: min(1180px, calc(100vw - 40px));
}

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

html {
	scroll-behavior: smooth;
}

body.as-theme {
	margin: 0;
	background: var(--as-bg);
	color: var(--as-text);
	font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", Inter, "Segoe UI", system-ui, sans-serif;
	font-size: 16px;
	line-height: 1.55;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
}

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

img,
iframe {
	max-width: 100%;
}

img {
	height: auto;
	display: block;
}

a {
	color: inherit;
	text-decoration-thickness: 0.08em;
	text-underline-offset: 0.18em;
}

button,
input {
	font: inherit;
}

:focus-visible {
	outline: 3px solid rgba(0, 113, 227, 0.36);
	outline-offset: 3px;
}

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

.as-skip-link:focus {
	z-index: 1000;
	top: 12px;
	left: 12px;
	width: auto;
	height: auto;
	padding: 10px 14px;
	clip: auto;
	background: var(--as-text);
	color: #ffffff;
	border-radius: var(--as-radius-control);
}

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

.as-site {
	min-height: 60vh;
}

.as-site-header {
	position: sticky;
	z-index: 100;
	top: 0;
	border-bottom: 1px solid transparent;
	background: rgba(245, 245, 247, 0.78);
	backdrop-filter: saturate(170%) blur(22px);
	transition: border-color 180ms var(--as-ease), background-color 180ms var(--as-ease);
}

.as-site-header.is-scrolled {
	border-bottom-color: var(--as-border);
	background: rgba(245, 245, 247, 0.92);
}

.as-site-header__inner {
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	min-height: 64px;
	gap: 18px;
}

.as-brand,
.as-brand__text,
.as-footer-logo {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	min-width: 0;
}

.as-brand__text,
.as-footer-logo {
	color: var(--as-text-strong);
	font-weight: 700;
	text-decoration: none;
}

.as-brand__mark {
	display: inline-grid;
	place-items: center;
	width: 34px;
	height: 34px;
	border-radius: 10px;
	background: var(--as-text-strong);
	color: #ffffff;
	font-size: 12px;
	font-weight: 800;
}

.as-brand__name {
	white-space: nowrap;
}

.custom-logo-link img {
	max-width: 190px;
	max-height: 46px;
	object-fit: contain;
}

.as-nav {
	justify-self: center;
}

.as-nav__list,
.as-nav ul,
.as-footer-nav__list {
	display: flex;
	align-items: center;
	gap: 6px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.as-nav a {
	display: inline-flex;
	align-items: center;
	min-height: 38px;
	padding: 8px 12px;
	border-radius: var(--as-radius-pill);
	color: var(--as-muted);
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
	transition: color 180ms var(--as-ease), background-color 180ms var(--as-ease);
}

.as-nav a:hover,
.as-nav .current-menu-item > a,
.as-nav .current_page_item > a {
	background: rgba(0, 0, 0, 0.05);
	color: var(--as-text-strong);
}

.as-header-cta,
.as-link-button,
.as-text-link {
	color: var(--as-primary);
	font-weight: 700;
	text-decoration: none;
}

.as-header-cta,
.as-link-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 40px;
	padding: 8px 14px;
	border: 1px solid rgba(0, 113, 227, 0.22);
	border-radius: var(--as-radius-pill);
	background: rgba(255, 255, 255, 0.74);
}

.as-menu-toggle {
	display: none;
	width: 44px;
	height: 44px;
	border: 0;
	border-radius: var(--as-radius-pill);
	background: transparent;
	color: var(--as-text);
	cursor: pointer;
}

.as-menu-toggle__line {
	display: block;
	width: 18px;
	height: 2px;
	margin: 4px auto;
	border-radius: 2px;
	background: currentColor;
	transition: transform 180ms var(--as-ease), opacity 180ms var(--as-ease);
}

.as-menu-toggle[aria-expanded="true"] .as-menu-toggle__line:first-child {
	transform: translateY(3px) rotate(45deg);
}

.as-menu-toggle[aria-expanded="true"] .as-menu-toggle__line:nth-child(2) {
	transform: translateY(-3px) rotate(-45deg);
}

.as-main {
	padding-bottom: 56px;
}

.as-home-hero,
.as-page-head {
	padding: 74px 0 46px;
	background: var(--as-bg-soft);
	border-bottom: 1px solid var(--as-border);
}

.as-home-hero__inner {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.85fr);
	align-items: end;
	gap: 36px;
}

.as-home-hero__copy {
	max-width: 720px;
}

.as-eyebrow {
	margin: 0 0 10px;
	color: var(--as-primary);
	font-size: 13px;
	font-weight: 800;
	text-transform: uppercase;
}

.as-home-hero h1,
.as-page-head h1,
.as-contact-panel h1 {
	margin: 0;
	color: var(--as-text-strong);
	font-size: 64px;
	line-height: 1.02;
	font-weight: 800;
}

.as-home-hero p:not(.as-eyebrow),
.as-page-head__description,
.as-muted {
	color: var(--as-muted);
}

.as-home-hero p:not(.as-eyebrow) {
	max-width: 600px;
	margin: 18px 0 0;
	font-size: 19px;
}

.as-searchbar {
	display: flex;
	align-items: center;
	gap: 10px;
	width: 100%;
	padding: 8px;
	border: 1px solid var(--as-border);
	border-radius: var(--as-radius-control);
	background: rgba(255, 255, 255, 0.78);
	box-shadow: 0 10px 28px rgba(0, 0, 0, 0.06);
}

.as-searchbar--compact {
	max-width: 620px;
	margin-top: 24px;
	box-shadow: none;
}

.as-searchbar input {
	min-width: 0;
	flex: 1;
	min-height: 48px;
	border: 0;
	background: transparent;
	color: var(--as-text);
	padding: 0 10px;
	outline: 0;
}

.as-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 10px 16px;
	border: 1px solid transparent;
	border-radius: var(--as-radius-pill);
	font-weight: 800;
	text-align: center;
	text-decoration: none;
	cursor: pointer;
	transition: transform 180ms var(--as-ease), box-shadow 180ms var(--as-ease), background-color 180ms var(--as-ease);
}

.as-button:hover {
	transform: translateY(-1px);
}

.as-button--primary {
	background: var(--as-primary);
	color: #ffffff;
	box-shadow: 0 10px 22px rgba(0, 113, 227, 0.22);
}

.as-button--primary:hover {
	background: var(--as-primary-strong);
}

.as-button--contact {
	background: var(--as-green);
	color: #ffffff;
	box-shadow: 0 10px 22px rgba(22, 138, 91, 0.2);
}

.as-button--quiet {
	border-color: var(--as-border);
	background: rgba(255, 255, 255, 0.86);
	color: var(--as-text-strong);
}

.as-button--full {
	width: 100%;
}

.as-section {
	padding: 52px 0;
}

.as-section--listings {
	padding-top: 42px;
}

.as-section-head {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 24px;
	margin-bottom: 24px;
}

.as-section-head h2,
.as-content-section h2,
.as-entry-card h2 {
	margin: 0;
	color: var(--as-text-strong);
	font-size: 28px;
	line-height: 1.16;
}

.as-section-head--compact {
	align-items: start;
	margin-bottom: 18px;
}

.as-section-head--compact h2 {
	font-size: 24px;
}

.as-listing-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 20px;
}

.as-listing-grid--related {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.as-content-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 20px;
}

.as-listing-card,
.as-entry-card,
.as-empty-state,
.as-contact-panel,
.as-content-section {
	border: 1px solid var(--as-border);
	border-radius: var(--as-radius-card);
	background: var(--as-surface);
}

.as-listing-card {
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
	transition: transform 180ms var(--as-ease), box-shadow 180ms var(--as-ease), border-color 180ms var(--as-ease);
}

.as-listing-card:hover {
	border-color: rgba(0, 113, 227, 0.22);
	box-shadow: var(--as-shadow);
	transform: translateY(-2px);
}

.as-listing-card__media {
	position: relative;
	aspect-ratio: 1.34;
	background: #e8e8ed;
	overflow: hidden;
}

.as-listing-card__media-link {
	display: block;
	height: 100%;
	text-decoration: none;
}

.as-gallery-track,
.as-detail-gallery {
	display: flex;
	height: 100%;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scrollbar-width: none;
}

.as-gallery-track::-webkit-scrollbar,
.as-detail-gallery::-webkit-scrollbar {
	display: none;
}

.as-gallery-slide,
.as-detail-gallery__slide {
	flex: 0 0 100%;
	height: 100%;
	margin: 0;
	scroll-snap-align: start;
}

.as-listing-card__image,
.as-detail-gallery__image,
.as-entry-card__image img,
.as-single-post__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.as-gallery-dots {
	position: absolute;
	left: 14px;
	bottom: 12px;
	display: flex;
	gap: 5px;
	padding: 5px 6px;
	border-radius: var(--as-radius-pill);
	background: rgba(0, 0, 0, 0.34);
	backdrop-filter: blur(8px);
}

.as-gallery-dots--detail {
	left: 18px;
	bottom: 18px;
}

.as-gallery-dot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.48);
}

.as-gallery-dot.is-active {
	background: #ffffff;
}

.as-image-placeholder {
	display: grid;
	place-items: center;
	width: 100%;
	height: 100%;
	min-height: 240px;
	background:
		linear-gradient(135deg, rgba(0, 113, 227, 0.09), rgba(22, 138, 91, 0.08)),
		#eeeeef;
	color: var(--as-muted);
	font-weight: 800;
}

.as-image-placeholder--hero {
	min-height: 520px;
}

.as-listing-card__body,
.as-entry-card__body {
	padding: 18px;
}

.as-listing-card__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 6px 10px;
	min-height: 22px;
	color: var(--as-muted);
	font-size: 13px;
	font-weight: 700;
}

.as-listing-card__title {
	margin: 8px 0 0;
	font-size: 20px;
	line-height: 1.18;
}

.as-listing-card__title a,
.as-entry-card h2 a {
	color: var(--as-text-strong);
	text-decoration: none;
}

.as-listing-card__excerpt,
.as-entry-card p {
	margin: 10px 0 0;
	color: var(--as-muted);
	font-size: 14px;
}

.as-listing-card__footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-top: 18px;
	padding-top: 16px;
	border-top: 1px solid var(--as-border);
}

.as-price-block {
	display: grid;
	gap: 2px;
}

.as-price-block__label,
.as-contact-panel__price span {
	color: var(--as-muted);
	font-size: 12px;
	font-weight: 800;
	text-transform: uppercase;
}

.as-price-block__value,
.as-contact-panel__price strong {
	color: var(--as-text-strong);
	font-size: 18px;
}

.as-rating {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	color: var(--as-amber);
	font-weight: 800;
}

.as-rating__count {
	color: var(--as-muted);
	font-weight: 700;
}

.as-rating--large {
	padding: 12px 0;
	border-top: 1px solid var(--as-border);
	border-bottom: 1px solid var(--as-border);
}

.as-listing-card__actions {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	margin-top: 16px;
}

.as-contact-note {
	color: var(--as-muted);
	font-size: 13px;
	font-weight: 700;
}

.as-contact-note--panel {
	margin: 0;
	padding: 14px;
	border-radius: var(--as-radius-control);
	background: var(--as-amber-soft);
	color: #6b450f;
}

.as-page-head {
	padding-bottom: 38px;
}

.as-page-head h1 {
	max-width: 920px;
	font-size: 54px;
}

.as-page-head__description {
	max-width: 740px;
	margin-top: 14px;
	font-size: 18px;
}

.as-detail-hero {
	padding: 28px 0 42px;
	background: var(--as-bg-soft);
	border-bottom: 1px solid var(--as-border);
}

.as-detail-hero__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
	align-items: start;
	gap: 24px;
}

.as-detail-hero__media,
.as-detail-gallery {
	position: relative;
	min-height: 520px;
	border-radius: var(--as-radius-card);
	overflow: hidden;
	background: #e8e8ed;
}

.as-detail-gallery__slide {
	min-height: 520px;
}

.as-contact-panel {
	position: sticky;
	top: 88px;
	display: grid;
	gap: 18px;
	padding: 22px;
	box-shadow: var(--as-shadow);
}

.as-contact-panel h1 {
	font-size: 34px;
	line-height: 1.08;
}

.as-chip-row,
.as-related-rail {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 16px;
}

.as-chip,
.as-related-rail a,
.as-chip-list li,
.as-feature-grid li {
	display: inline-flex;
	align-items: center;
	min-height: 34px;
	padding: 6px 11px;
	border: 1px solid var(--as-border);
	border-radius: var(--as-radius-pill);
	background: var(--as-bg-soft);
	color: var(--as-text-strong);
	font-size: 14px;
	font-weight: 700;
	text-decoration: none;
}

.as-contact-panel__price {
	display: grid;
	gap: 3px;
	padding: 16px;
	border-radius: var(--as-radius-control);
	background: linear-gradient(135deg, rgba(0, 113, 227, 0.09), rgba(22, 138, 91, 0.08));
}

.as-contact-panel__actions {
	display: grid;
	gap: 10px;
}

.as-detail-content {
	padding-top: 34px;
}

.as-detail-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
}

.as-detail-main {
	display: grid;
	gap: 22px;
	max-width: 940px;
}

.as-content-section {
	padding: 24px;
}

.as-wp-content {
	color: var(--as-text);
}

.as-wp-content > *:first-child {
	margin-top: 0;
}

.as-wp-content > *:last-child {
	margin-bottom: 0;
}

.as-wp-content p,
.as-wp-content li {
	color: var(--as-text);
}

.as-wp-content a {
	color: var(--as-primary);
	font-weight: 700;
}

.as-wp-content img,
.as-wp-content iframe {
	border-radius: var(--as-radius-card);
}

.as-readable {
	max-width: 860px;
}

.as-feature-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 10px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.as-feature-grid li {
	justify-content: center;
	min-height: 48px;
	border-radius: var(--as-radius-control);
	text-align: center;
}

.as-location-stack {
	display: grid;
	gap: 22px;
}

.as-location-summary {
	display: grid;
	gap: 8px;
	padding: 16px 0;
	border-block: 1px solid var(--as-border);
}

.as-location-summary p {
	margin: 0;
	color: var(--as-muted);
}

.as-location-summary strong {
	margin-right: 8px;
	color: var(--as-text-strong);
}

.as-location-stack h3 {
	margin: 0 0 10px;
	color: var(--as-text-strong);
	font-size: 18px;
}

.as-chip-list,
.as-check-list {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.as-check-list {
	display: grid;
	gap: 8px;
}

.as-check-list li {
	position: relative;
	padding-left: 24px;
	color: var(--as-muted);
}

.as-check-list li::before {
	content: "";
	position: absolute;
	top: 0.7em;
	left: 0;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--as-green);
}

.as-map-frame {
	overflow: hidden;
	aspect-ratio: 16 / 9;
	border: 1px solid var(--as-border);
	border-radius: var(--as-radius-card);
	background: #e8e8ed;
}

.as-map-frame iframe {
	width: 100%;
	height: 100%;
	border: 0;
}

.as-related-links h2 {
	margin-bottom: 12px;
}

.as-empty-state {
	max-width: 620px;
	padding: 34px;
}

.as-empty-state h2 {
	margin: 0;
	color: var(--as-text-strong);
}

.as-empty-state p {
	margin: 10px 0 0;
	color: var(--as-muted);
}

.as-entry-card {
	overflow: hidden;
}

.as-entry-card__image {
	display: block;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	background: #e8e8ed;
}

.as-entry-card__body h2 {
	font-size: 22px;
}

.as-single-post__image {
	margin: 30px 0 0;
	overflow: hidden;
	aspect-ratio: 16 / 9;
	border-radius: var(--as-radius-card);
	background: #e8e8ed;
}

.as-pagination {
	margin-top: 34px;
}

.as-pagination .nav-links {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	justify-content: center;
}

.as-pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	min-height: 40px;
	padding: 8px 12px;
	border: 1px solid var(--as-border);
	border-radius: var(--as-radius-pill);
	background: var(--as-surface);
	text-decoration: none;
}

.as-pagination .page-numbers.current {
	background: var(--as-text-strong);
	color: #ffffff;
}

.as-mobile-contact {
	position: fixed;
	z-index: 90;
	right: 14px;
	bottom: 14px;
	left: 14px;
	display: none;
	grid-template-columns: 1fr auto;
	gap: 8px;
	padding: 8px;
	border: 1px solid var(--as-border);
	border-radius: var(--as-radius-control);
	background: rgba(255, 255, 255, 0.9);
	backdrop-filter: blur(18px);
	box-shadow: var(--as-shadow);
}

.as-site-footer {
	padding: 46px 0;
	border-top: 1px solid var(--as-border);
	background: #161617;
	color: rgba(255, 255, 255, 0.88);
}

.as-site-footer__inner {
	display: grid;
	grid-template-columns: 1.2fr 1fr;
	gap: 28px;
}

.as-site-footer__brand p {
	max-width: 420px;
	margin: 12px 0 0;
	color: rgba(255, 255, 255, 0.62);
}

.as-footer-logo {
	color: #ffffff;
}

.as-footer-logo .as-brand__mark {
	background: #ffffff;
	color: #161617;
}

.as-footer-nav__list {
	flex-wrap: wrap;
	justify-content: flex-end;
}

.as-footer-nav a {
	color: rgba(255, 255, 255, 0.72);
	text-decoration: none;
}

.as-footer-widgets {
	grid-column: 1 / -1;
	color: rgba(255, 255, 255, 0.72);
}

.as-footer-groups {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}

.as-footer-group {
	display: grid;
	align-content: start;
	gap: 9px;
	padding: 18px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 20px;
	background: rgba(255, 255, 255, 0.055);
}

.as-footer-group h2 {
	margin: 0 0 4px;
	color: #ffffff;
	font-size: 13px;
	font-weight: 850;
	text-transform: uppercase;
}

.as-footer-group a,
.as-footer-group span {
	color: rgba(255, 255, 255, 0.72);
	font-size: 14px;
	font-weight: 700;
	text-decoration: none;
}

.as-footer-group a:hover,
.as-footer-group a:focus-visible {
	color: #ffffff;
	text-decoration: underline;
}

.as-site-footer__end {
	grid-column: 1 / -1;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding-top: 24px;
	border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.as-site-footer__end p {
	margin: 0;
	color: rgba(255, 255, 255, 0.54);
}

.as-site-footer .as-link-button {
	border-color: rgba(255, 255, 255, 0.2);
	background: rgba(255, 255, 255, 0.08);
	color: #ffffff;
}

@media (max-width: 980px) {
	:root {
		--as-shell: min(100% - 32px, 760px);
	}

	.as-site-header__inner {
		grid-template-columns: auto auto 1fr;
		min-height: 58px;
	}

	.as-menu-toggle {
		display: inline-grid;
		place-items: center;
		justify-self: end;
		grid-column: 3;
	}

	.as-nav {
		position: fixed;
		inset: 58px 0 auto;
		display: none;
		max-height: calc(100vh - 58px);
		overflow-y: auto;
		border-bottom: 1px solid var(--as-border);
		background: rgba(245, 245, 247, 0.97);
		backdrop-filter: blur(20px);
	}

	.as-nav.is-open {
		display: block;
	}

	.as-nav__list,
	.as-nav ul {
		display: grid;
		gap: 0;
		width: var(--as-shell);
		margin: 0 auto;
		padding: 12px 0 18px;
	}

	.as-nav a {
		width: 100%;
		min-height: 46px;
		border-radius: var(--as-radius-control);
	}

	.as-header-cta {
		grid-column: 2;
		justify-self: end;
		min-height: 38px;
		padding-inline: 12px;
	}

	.as-home-hero,
	.as-page-head {
		padding: 48px 0 34px;
	}

	.as-home-hero__inner,
	.as-detail-hero__grid {
		grid-template-columns: 1fr;
	}

	.as-home-hero h1,
	.as-page-head h1 {
		font-size: 42px;
	}

	.as-listing-grid,
	.as-listing-grid--related,
	.as-content-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.as-contact-panel {
		position: static;
	}

	.as-detail-hero__media,
	.as-detail-gallery,
	.as-detail-gallery__slide {
		min-height: 430px;
	}

	.as-feature-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.as-site-footer__inner {
		grid-template-columns: 1fr;
	}

	.as-footer-groups {
		grid-template-columns: 1fr;
	}

	.as-footer-nav__list {
		justify-content: flex-start;
	}
}

@media (max-width: 680px) {
	:root {
		--as-shell: min(100% - 28px, 520px);
	}

	.as-brand__name {
		display: none;
	}

	.as-header-cta {
		font-size: 13px;
	}

	.as-home-hero h1,
	.as-page-head h1 {
		font-size: 36px;
	}

	.as-home-hero p:not(.as-eyebrow) {
		font-size: 17px;
	}

	.as-searchbar {
		display: grid;
		gap: 8px;
		padding: 10px;
	}

	.as-searchbar input,
	.as-searchbar .as-button {
		width: 100%;
	}

	.as-section {
		padding: 36px 0;
	}

	.as-section-head {
		display: grid;
		gap: 12px;
	}

	.as-listing-grid,
	.as-listing-grid--related,
	.as-content-grid {
		grid-template-columns: 1fr;
	}

	.as-listing-card__actions {
		display: grid;
	}

	.as-listing-card__actions .as-button {
		width: 100%;
	}

	.as-detail-hero {
		padding-top: 14px;
	}

	.as-detail-hero__media,
	.as-detail-gallery,
	.as-detail-gallery__slide {
		min-height: 340px;
	}

	.as-contact-panel {
		padding: 18px;
	}

	.as-contact-panel h1 {
		font-size: 30px;
	}

	.as-content-section {
		padding: 18px;
	}

	.as-feature-grid {
		grid-template-columns: 1fr;
	}

	.as-map-frame {
		aspect-ratio: 4 / 3;
	}

	.as-mobile-contact {
		display: grid;
	}

	.as-site-footer {
		padding-bottom: 96px;
	}

	.as-site-footer__end {
		display: grid;
	}
}

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

/* Sapanca Tatil Evi liquid interface pass. */
:root {
	--as-bg: #f6f8fb;
	--as-bg-soft: #ffffff;
	--as-surface: rgba(255, 255, 255, 0.88);
	--as-surface-solid: #ffffff;
	--as-text: #202124;
	--as-text-strong: #0d1117;
	--as-muted: #68707d;
	--as-primary: #0a84ff;
	--as-primary-strong: #0066d6;
	--as-green: #169b73;
	--as-amber: #b76e00;
	--as-coral: #e05f4f;
	--as-ink: #0b1118;
	--as-glass: rgba(255, 255, 255, 0.58);
	--as-glass-strong: rgba(255, 255, 255, 0.74);
	--as-glass-dark: rgba(12, 18, 26, 0.58);
	--as-border: rgba(16, 24, 40, 0.1);
	--as-border-strong: rgba(16, 24, 40, 0.18);
	--as-glass-border: rgba(255, 255, 255, 0.72);
	--as-shadow: 0 24px 70px rgba(19, 32, 46, 0.14);
	--as-shadow-soft: 0 16px 40px rgba(19, 32, 46, 0.09);
	--as-shadow-glass: 0 28px 80px rgba(9, 18, 33, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.82);
	--as-radius-card: 8px;
	--as-radius-control: 16px;
	--as-radius-pill: 999px;
	--as-ease: cubic-bezier(0.2, 0.8, 0.2, 1);
	--as-ease-spring: cubic-bezier(0.16, 1, 0.3, 1);
	--as-shell: min(1180px, calc(100vw - 44px));
}

body.as-theme {
	min-height: 100vh;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(238, 247, 250, 0.98) 38%, rgba(250, 248, 244, 1) 100%);
	color: var(--as-text);
	letter-spacing: 0;
}

body.as-theme::before {
	content: "";
	position: fixed;
	z-index: -1;
	inset: 0;
	background:
		linear-gradient(115deg, rgba(10, 132, 255, 0.1), transparent 32%),
		linear-gradient(245deg, rgba(22, 155, 115, 0.1), transparent 35%),
		linear-gradient(180deg, transparent 64%, rgba(183, 110, 0, 0.08));
	pointer-events: none;
}

:focus-visible {
	outline: 3px solid rgba(10, 132, 255, 0.34);
	outline-offset: 4px;
}

.as-main {
	padding-bottom: 0;
}

.as-eyebrow {
	color: var(--as-primary);
	font-size: 12px;
	font-weight: 850;
	letter-spacing: 0;
	text-transform: uppercase;
}

.as-text-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: var(--as-primary);
}

.as-text-link::after {
	content: "";
	width: 7px;
	height: 7px;
	border-top: 2px solid currentColor;
	border-right: 2px solid currentColor;
	transform: rotate(45deg);
}

.as-site-header {
	position: sticky;
	top: 0;
	padding: 12px 0 8px;
	border-bottom: 0;
	background: transparent;
	backdrop-filter: none;
	transition: padding 220ms var(--as-ease), transform 220ms var(--as-ease);
}

.as-site-header.is-scrolled {
	border-bottom-color: transparent;
	background: transparent;
}

.as-site-header__inner {
	position: relative;
	min-height: 60px;
	padding: 7px;
	border: 1px solid rgba(255, 255, 255, 0.74);
	border-radius: var(--as-radius-pill);
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.48)),
		rgba(255, 255, 255, 0.48);
	backdrop-filter: saturate(180%) blur(30px);
	box-shadow: var(--as-shadow-glass);
	transition: background-color 220ms var(--as-ease), box-shadow 220ms var(--as-ease), border-color 220ms var(--as-ease);
}

.as-site-header.is-scrolled .as-site-header__inner {
	border-color: rgba(255, 255, 255, 0.84);
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.62)),
		rgba(255, 255, 255, 0.7);
	box-shadow: 0 18px 54px rgba(9, 18, 33, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.94);
}

.as-site-header__inner::after,
.as-searchbar::after,
.as-hero-visual::after,
.as-contact-panel::after {
	content: "";
	position: absolute;
	inset: 1px;
	border-radius: inherit;
	pointer-events: none;
	background: linear-gradient(120deg, rgba(255, 255, 255, 0.82), transparent 28%, rgba(255, 255, 255, 0.28) 58%, transparent 76%);
	opacity: 0.62;
}

.as-brand__text,
.as-footer-logo {
	gap: 11px;
	font-weight: 850;
}

.as-brand__mark {
	width: 38px;
	height: 38px;
	border: 1px solid rgba(255, 255, 255, 0.54);
	border-radius: 14px;
	background:
		linear-gradient(145deg, rgba(10, 132, 255, 0.95), rgba(22, 155, 115, 0.92) 55%, rgba(224, 95, 79, 0.92)),
		var(--as-text-strong);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.44), 0 10px 24px rgba(10, 132, 255, 0.22);
	color: #ffffff;
	font-size: 12px;
	letter-spacing: 0;
}

.as-brand__name {
	font-size: 15px;
	letter-spacing: 0;
}

.as-nav a {
	min-height: 40px;
	padding: 8px 14px;
	border: 1px solid transparent;
	color: rgba(13, 17, 23, 0.66);
	font-size: 14px;
	font-weight: 760;
}

.as-nav a:hover,
.as-nav .current-menu-item > a,
.as-nav .current_page_item > a {
	border-color: rgba(255, 255, 255, 0.68);
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.34)),
		rgba(255, 255, 255, 0.36);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8), 0 8px 22px rgba(9, 18, 33, 0.08);
	color: var(--as-text-strong);
}

.as-header-cta,
.as-link-button {
	min-height: 42px;
	border-color: rgba(10, 132, 255, 0.24);
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.48)),
		rgba(255, 255, 255, 0.54);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82), 0 10px 26px rgba(10, 132, 255, 0.12);
	color: var(--as-primary-strong);
}

.as-menu-toggle {
	background: rgba(255, 255, 255, 0.42);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.76);
}

.as-home-hero {
	position: relative;
	isolation: isolate;
	min-height: 760px;
	margin-top: -80px;
	padding: 154px 0 78px;
	overflow: hidden;
	border-bottom: 0;
	background:
		linear-gradient(180deg, rgba(250, 253, 255, 0.98), rgba(240, 248, 250, 0.92) 48%, rgba(255, 255, 255, 0.96)),
		#f6f8fb;
}

.as-home-hero::before {
	content: "";
	position: absolute;
	z-index: -1;
	inset: 0;
	background:
		linear-gradient(120deg, rgba(10, 132, 255, 0.16), transparent 32%),
		linear-gradient(260deg, rgba(22, 155, 115, 0.14), transparent 36%),
		linear-gradient(0deg, rgba(183, 110, 0, 0.07), transparent 42%);
}

.as-home-hero::after {
	content: "";
	position: absolute;
	z-index: -1;
	inset: auto 0 0;
	height: 150px;
	background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.96));
}

.as-home-hero__inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(360px, 0.72fr);
	grid-template-areas:
		"copy visual"
		"search visual"
		"chips visual"
		"metrics visual";
	align-items: center;
	gap: 16px 48px;
}

.as-home-hero__copy {
	grid-area: copy;
	max-width: 760px;
	padding-top: 28px;
}

.as-home-hero h1,
.as-page-head h1 {
	max-width: 820px;
	color: var(--as-text-strong);
	font-size: 68px;
	font-weight: 880;
	line-height: 0.96;
	letter-spacing: 0;
}

.as-home-hero p:not(.as-eyebrow) {
	max-width: 610px;
	margin-top: 22px;
	color: rgba(32, 33, 36, 0.72);
	font-size: 20px;
	line-height: 1.52;
}

.as-hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 30px;
}

.as-searchbar {
	grid-area: search;
	position: relative;
	max-width: 760px;
	margin-top: 20px;
	padding: 9px;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.72);
	border-radius: 22px;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.76), rgba(255, 255, 255, 0.5)),
		rgba(255, 255, 255, 0.56);
	backdrop-filter: saturate(170%) blur(28px);
	box-shadow: var(--as-shadow-glass);
}

.as-searchbar--compact {
	max-width: 720px;
	margin-top: 26px;
	box-shadow: var(--as-shadow-soft);
}

.as-searchbar input {
	position: relative;
	z-index: 2;
	min-height: 52px;
	padding: 0 16px;
	color: var(--as-text-strong);
	font-size: 16px;
	font-weight: 650;
}

.as-searchbar input::placeholder {
	color: rgba(104, 112, 125, 0.76);
}

.as-button {
	position: relative;
	z-index: 2;
	min-height: 46px;
	padding: 11px 18px;
	border-radius: var(--as-radius-pill);
	font-weight: 850;
	letter-spacing: 0;
	transition:
		transform 220ms var(--as-ease-spring),
		box-shadow 220ms var(--as-ease),
		background-color 220ms var(--as-ease),
		border-color 220ms var(--as-ease),
		color 220ms var(--as-ease);
}

.as-button:hover {
	transform: translateY(-2px);
}

.as-button:active {
	transform: translateY(0) scale(0.98);
}

.as-button--primary {
	border-color: rgba(255, 255, 255, 0.25);
	background:
		linear-gradient(180deg, rgba(61, 161, 255, 0.98), rgba(0, 102, 214, 0.98)),
		var(--as-primary);
	box-shadow: 0 16px 34px rgba(10, 132, 255, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.26);
	color: #ffffff;
}

.as-button--primary:hover {
	background:
		linear-gradient(180deg, rgba(72, 168, 255, 1), rgba(0, 91, 198, 1)),
		var(--as-primary-strong);
}

.as-button--contact {
	border-color: rgba(255, 255, 255, 0.24);
	background:
		linear-gradient(180deg, rgba(34, 181, 134, 0.98), rgba(18, 133, 98, 0.98)),
		var(--as-green);
	box-shadow: 0 16px 34px rgba(22, 155, 115, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

.as-button--quiet,
.as-button--glass {
	border-color: rgba(16, 24, 40, 0.1);
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0.58)),
		rgba(255, 255, 255, 0.52);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8), 0 12px 28px rgba(9, 18, 33, 0.08);
	color: var(--as-text-strong);
	backdrop-filter: blur(22px);
}

.as-hero-search-chips {
	grid-area: chips;
	display: flex;
	flex-wrap: wrap;
	gap: 9px;
	max-width: 720px;
	margin-top: 2px;
}

.as-hero-search-chips a,
.as-chip,
.as-related-rail a,
.as-chip-list li {
	border-color: rgba(16, 24, 40, 0.1);
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.68), rgba(255, 255, 255, 0.44)),
		rgba(255, 255, 255, 0.48);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.74);
	backdrop-filter: blur(14px);
}

.as-hero-search-chips a {
	display: inline-flex;
	align-items: center;
	min-height: 34px;
	padding: 7px 12px;
	border: 1px solid rgba(16, 24, 40, 0.1);
	border-radius: var(--as-radius-pill);
	color: rgba(13, 17, 23, 0.72);
	font-size: 13px;
	font-weight: 780;
	text-decoration: none;
	transition: transform 180ms var(--as-ease), color 180ms var(--as-ease), border-color 180ms var(--as-ease);
}

.as-hero-search-chips a:hover {
	border-color: rgba(10, 132, 255, 0.3);
	color: var(--as-primary-strong);
	transform: translateY(-1px);
}

.as-hero-metrics {
	grid-area: metrics;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 10px;
	max-width: 760px;
	margin: 20px 0 0;
	padding: 0;
	list-style: none;
}

.as-hero-metrics li {
	min-height: 92px;
	padding: 16px;
	border: 1px solid rgba(255, 255, 255, 0.68);
	border-radius: var(--as-radius-card);
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0.38)),
		rgba(255, 255, 255, 0.42);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.78), 0 14px 36px rgba(9, 18, 33, 0.07);
	backdrop-filter: blur(20px);
}

.as-hero-metrics strong,
.as-hero-metrics span {
	display: block;
}

.as-hero-metrics strong {
	color: var(--as-text-strong);
	font-size: 15px;
	line-height: 1.2;
}

.as-hero-metrics span {
	margin-top: 7px;
	color: var(--as-muted);
	font-size: 13px;
	font-weight: 650;
	line-height: 1.35;
}

.as-hero-visual {
	grid-area: visual;
	position: relative;
	min-height: 560px;
}

.as-hero-visual__frame {
	position: relative;
	display: block;
	height: 560px;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.72);
	border-radius: 30px;
	background:
		linear-gradient(145deg, rgba(10, 132, 255, 0.12), rgba(22, 155, 115, 0.12)),
		#e8edf2;
	box-shadow: 0 32px 90px rgba(9, 18, 33, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.78);
	text-decoration: none;
}

.as-hero-visual__frame::before {
	content: "";
	position: absolute;
	z-index: 2;
	inset: 0;
	background:
		linear-gradient(180deg, transparent 42%, rgba(5, 10, 16, 0.48)),
		linear-gradient(120deg, rgba(255, 255, 255, 0.28), transparent 24%);
	pointer-events: none;
}

.as-hero-visual__image,
.as-hero-visual .as-image-placeholder {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 900ms var(--as-ease-spring);
}

.as-hero-visual:hover .as-hero-visual__image {
	transform: scale(1.035);
}

.as-hero-visual__bar {
	position: absolute;
	z-index: 3;
	right: 18px;
	bottom: 18px;
	left: 18px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 14px 16px;
	border: 1px solid rgba(255, 255, 255, 0.46);
	border-radius: 22px;
	background:
		linear-gradient(180deg, rgba(18, 24, 32, 0.5), rgba(18, 24, 32, 0.36)),
		rgba(18, 24, 32, 0.4);
	backdrop-filter: saturate(160%) blur(24px);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.26), 0 20px 44px rgba(0, 0, 0, 0.2);
	color: #ffffff;
}

.as-hero-visual__bar span,
.as-hero-floating span {
	display: block;
	color: rgba(255, 255, 255, 0.72);
	font-size: 11px;
	font-weight: 850;
	text-transform: uppercase;
}

.as-hero-visual__bar a {
	display: block;
	margin-top: 3px;
	color: #ffffff;
	font-size: 17px;
	font-weight: 850;
	line-height: 1.15;
	text-decoration: none;
}

.as-hero-visual__bar strong {
	flex: 0 0 auto;
	font-size: 15px;
}

.as-hero-floating {
	position: absolute;
	z-index: 4;
	top: 24px;
	right: -12px;
	max-width: min(280px, 82%);
	padding: 13px 15px;
	border: 1px solid rgba(255, 255, 255, 0.74);
	border-radius: 20px;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.5)),
		rgba(255, 255, 255, 0.56);
	backdrop-filter: saturate(170%) blur(24px);
	box-shadow: 0 18px 46px rgba(9, 18, 33, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.86);
}

.as-hero-floating span {
	color: rgba(13, 17, 23, 0.58);
}

.as-hero-floating strong {
	display: block;
	margin-top: 3px;
	color: var(--as-text-strong);
	font-size: 14px;
	line-height: 1.25;
}

.as-section {
	padding: 66px 0;
}

.as-section--listings {
	position: relative;
	padding-top: 64px;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(246, 248, 251, 0.96));
}

.as-section-head {
	align-items: end;
	margin-bottom: 28px;
}

.as-section-head h2,
.as-content-section h2,
.as-entry-card h2 {
	color: var(--as-text-strong);
	font-size: 31px;
	font-weight: 850;
	line-height: 1.08;
	letter-spacing: 0;
}

.as-section-head--compact h2 {
	font-size: 25px;
}

.as-listing-grid,
.as-content-grid {
	gap: 22px;
}

.as-listing-card,
.as-entry-card,
.as-empty-state,
.as-contact-panel,
.as-content-section {
	position: relative;
	border: 1px solid rgba(16, 24, 40, 0.1);
	border-radius: var(--as-radius-card);
	background: var(--as-surface-solid);
	box-shadow: 0 12px 34px rgba(9, 18, 33, 0.08);
}

.as-listing-card {
	overflow: hidden;
	transform: translateZ(0);
	transition:
		transform 260ms var(--as-ease-spring),
		box-shadow 260ms var(--as-ease),
		border-color 260ms var(--as-ease);
}

.as-listing-card:hover {
	border-color: rgba(10, 132, 255, 0.28);
	box-shadow: 0 28px 72px rgba(9, 18, 33, 0.15);
	transform: translateY(-5px);
}

.as-listing-card__media {
	aspect-ratio: 1.32;
	background: #e8edf2;
}

.as-listing-card__media::after {
	content: "";
	position: absolute;
	inset: auto 0 0;
	height: 46%;
	background: linear-gradient(180deg, transparent, rgba(5, 10, 16, 0.38));
	pointer-events: none;
}

.as-listing-card__image {
	transition: transform 700ms var(--as-ease-spring), filter 260ms var(--as-ease);
}

.as-listing-card:hover .as-listing-card__image {
	transform: scale(1.045);
	filter: saturate(1.04) contrast(1.02);
}

.as-gallery-dots {
	z-index: 3;
	border: 1px solid rgba(255, 255, 255, 0.3);
	background: rgba(10, 14, 18, 0.38);
	backdrop-filter: blur(14px);
}

.as-listing-card__body,
.as-entry-card__body {
	padding: 19px;
}

.as-listing-card__meta {
	min-height: 22px;
	color: rgba(104, 112, 125, 0.95);
	font-size: 12px;
	font-weight: 800;
}

.as-listing-card__title {
	margin-top: 9px;
	font-size: 21px;
	font-weight: 850;
	letter-spacing: 0;
}

.as-listing-card__title a:hover,
.as-entry-card h2 a:hover {
	color: var(--as-primary-strong);
}

.as-listing-card__excerpt,
.as-entry-card p {
	color: rgba(104, 112, 125, 0.92);
	line-height: 1.48;
}

.as-listing-card__footer {
	border-top-color: rgba(16, 24, 40, 0.08);
}

.as-price-block__label,
.as-contact-panel__price span {
	color: rgba(104, 112, 125, 0.9);
	font-size: 11px;
	letter-spacing: 0;
}

.as-price-block__value,
.as-contact-panel__price strong {
	color: var(--as-text-strong);
	font-weight: 900;
}

.as-rating {
	padding: 6px 9px;
	border: 1px solid rgba(183, 110, 0, 0.16);
	border-radius: var(--as-radius-pill);
	background: rgba(255, 247, 232, 0.78);
	color: #9b5e00;
}

.as-listing-card__actions {
	gap: 9px;
	margin-top: 18px;
}

.as-page-head {
	position: relative;
	margin-top: -80px;
	padding: 156px 0 64px;
	overflow: hidden;
	border-bottom: 0;
	background:
		linear-gradient(180deg, rgba(250, 253, 255, 0.98), rgba(239, 248, 250, 0.95)),
		#f6f8fb;
}

.as-page-head::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(120deg, rgba(10, 132, 255, 0.13), transparent 32%),
		linear-gradient(250deg, rgba(22, 155, 115, 0.12), transparent 36%);
	pointer-events: none;
}

.as-page-head .as-shell {
	position: relative;
}

.as-page-head__description {
	max-width: 760px;
	color: rgba(32, 33, 36, 0.72);
	font-size: 18px;
}

.as-detail-hero {
	margin-top: -80px;
	padding: 126px 0 58px;
	border-bottom: 0;
	background:
		linear-gradient(180deg, rgba(247, 251, 253, 0.98), rgba(255, 255, 255, 0.96)),
		#f6f8fb;
}

.as-detail-hero__grid {
	gap: 28px;
}

.as-detail-hero__media,
.as-detail-gallery {
	border: 1px solid rgba(255, 255, 255, 0.72);
	border-radius: 28px;
	background: #e8edf2;
	box-shadow: 0 30px 82px rgba(9, 18, 33, 0.18);
}

.as-detail-gallery__image {
	transition: transform 900ms var(--as-ease-spring);
}

.as-detail-hero__media:hover .as-detail-gallery__image {
	transform: scale(1.025);
}

.as-contact-panel {
	top: 96px;
	padding: 24px;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.7);
	border-radius: 28px;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.76), rgba(255, 255, 255, 0.56)),
		rgba(255, 255, 255, 0.6);
	backdrop-filter: saturate(170%) blur(28px);
	box-shadow: var(--as-shadow-glass);
}

.as-contact-panel h1 {
	font-size: 34px;
	font-weight: 880;
	letter-spacing: 0;
}

.as-contact-panel__price {
	border: 1px solid rgba(10, 132, 255, 0.14);
	background:
		linear-gradient(135deg, rgba(10, 132, 255, 0.11), rgba(22, 155, 115, 0.1)),
		rgba(255, 255, 255, 0.46);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.68);
}

.as-content-section {
	padding: 28px;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.86)),
		var(--as-surface-solid);
}

.as-feature-grid {
	gap: 9px;
}

.as-feature-grid li {
	border-color: rgba(16, 24, 40, 0.08);
	background: rgba(246, 248, 251, 0.86);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.as-map-frame {
	border-color: rgba(16, 24, 40, 0.1);
	box-shadow: 0 14px 38px rgba(9, 18, 33, 0.08);
}

.as-experience-band {
	position: relative;
	overflow: hidden;
	background:
		linear-gradient(180deg, rgba(9, 16, 23, 0.98), rgba(14, 24, 30, 0.98)),
		var(--as-ink);
	color: rgba(255, 255, 255, 0.9);
}

.as-experience-band::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(115deg, rgba(10, 132, 255, 0.2), transparent 34%),
		linear-gradient(245deg, rgba(22, 155, 115, 0.18), transparent 38%),
		linear-gradient(0deg, rgba(224, 95, 79, 0.13), transparent 48%);
	pointer-events: none;
}

.as-experience-band .as-shell {
	position: relative;
}

.as-experience-band .as-eyebrow {
	color: #67b7ff;
}

.as-experience-band h2 {
	max-width: 720px;
	color: #ffffff;
}

.as-journey-list {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
	margin: 0;
	padding: 0;
	list-style: none;
	counter-reset: as-journey;
}

.as-journey-list li {
	position: relative;
	min-height: 230px;
	padding: 24px;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: var(--as-radius-card);
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.06)),
		rgba(255, 255, 255, 0.07);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16), 0 28px 70px rgba(0, 0, 0, 0.24);
}

.as-journey-list li::after {
	content: "";
	position: absolute;
	inset: auto 0 0;
	height: 3px;
	background: linear-gradient(90deg, #0a84ff, #169b73, #e05f4f);
}

.as-journey-list span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: var(--as-radius-pill);
	background: rgba(255, 255, 255, 0.1);
	color: #ffffff;
	font-size: 13px;
	font-weight: 900;
}

.as-journey-list strong {
	display: block;
	margin-top: 42px;
	color: #ffffff;
	font-size: 24px;
	line-height: 1.08;
}

.as-journey-list p {
	margin: 12px 0 0;
	color: rgba(255, 255, 255, 0.66);
	line-height: 1.55;
}

.as-site-footer {
	position: relative;
	overflow: hidden;
	border-top: 0;
	background:
		linear-gradient(180deg, #0c1117, #070a0f),
		#070a0f;
}

.as-site-footer::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(120deg, rgba(10, 132, 255, 0.14), transparent 34%),
		linear-gradient(250deg, rgba(22, 155, 115, 0.14), transparent 38%);
	pointer-events: none;
}

.as-site-footer__inner {
	position: relative;
}

.as-site-footer .as-brand__mark {
	box-shadow: none;
}

.as-mobile-contact {
	border-color: rgba(255, 255, 255, 0.72);
	border-radius: 24px;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.56)),
		rgba(255, 255, 255, 0.64);
	backdrop-filter: saturate(170%) blur(26px);
	box-shadow: var(--as-shadow-glass);
}

.as-site-header__inner,
.as-searchbar,
.as-contact-panel,
.as-mobile-contact {
	-webkit-backdrop-filter: saturate(170%) blur(28px);
}

.as-button--quiet,
.as-button--glass,
.as-hero-search-chips a,
.as-chip,
.as-related-rail a,
.as-chip-list li,
.as-hero-metrics li {
	-webkit-backdrop-filter: blur(18px);
}

.as-hero-visual__bar,
.as-hero-floating,
.as-nav {
	-webkit-backdrop-filter: saturate(160%) blur(24px);
}

[data-as-glow] {
	--as-glow-x: 50%;
	--as-glow-y: 0%;
}

[data-as-glow]::before {
	content: "";
	position: absolute;
	z-index: 1;
	inset: 0;
	border-radius: inherit;
	background: radial-gradient(circle 260px at var(--as-glow-x) var(--as-glow-y), rgba(255, 255, 255, 0.46), rgba(255, 255, 255, 0.16) 22%, transparent 58%);
	opacity: 0;
	pointer-events: none;
	transition: opacity 240ms var(--as-ease);
}

[data-as-glow]:hover::before,
[data-as-glow].is-glowing::before {
	opacity: 1;
}

[data-as-glow] > * {
	position: relative;
	z-index: 2;
}

.as-reveal-ready [data-as-reveal] {
	opacity: 0;
	transform: translateY(22px) scale(0.985);
	transition:
		opacity 680ms var(--as-ease-spring),
		transform 680ms var(--as-ease-spring);
	transition-delay: var(--as-reveal-delay, 0ms);
}

.as-reveal-ready [data-as-reveal].is-visible {
	opacity: 1;
	transform: translateY(0) scale(1);
}

@supports not ((backdrop-filter: blur(20px)) or (-webkit-backdrop-filter: blur(20px))) {
	.as-site-header__inner,
	.as-searchbar,
	.as-contact-panel,
	.as-hero-floating,
	.as-hero-visual__bar,
	.as-mobile-contact {
		background: rgba(255, 255, 255, 0.94);
	}

	.as-hero-visual__bar {
		background: rgba(13, 17, 23, 0.86);
	}
}

@media (prefers-contrast: more) {
	:root {
		--as-border: rgba(0, 0, 0, 0.32);
		--as-muted: #424853;
	}

	.as-site-header__inner,
	.as-searchbar,
	.as-contact-panel,
	.as-mobile-contact {
		border-color: rgba(0, 0, 0, 0.35);
		background: rgba(255, 255, 255, 0.96);
	}
}

@media (prefers-reduced-transparency: reduce) {
	.as-site-header__inner,
	.as-searchbar,
	.as-contact-panel,
	.as-hero-floating,
	.as-mobile-contact {
		background: #ffffff;
		backdrop-filter: none;
		-webkit-backdrop-filter: none;
	}

	.as-hero-visual__bar {
		background: rgba(13, 17, 23, 0.92);
		backdrop-filter: none;
		-webkit-backdrop-filter: none;
	}
}

@media (min-width: 1280px) {
	.as-home-hero h1 {
		font-size: 74px;
	}
}

@media (max-width: 1080px) {
	.as-home-hero__inner {
		grid-template-columns: minmax(0, 1fr) minmax(330px, 0.72fr);
		gap: 16px 28px;
	}

	.as-home-hero h1,
	.as-page-head h1 {
		font-size: 58px;
	}

	.as-hero-visual,
	.as-hero-visual__frame {
		min-height: 510px;
		height: 510px;
	}

	.as-hero-metrics {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 980px) {
	:root {
		--as-shell: min(100% - 32px, 760px);
	}

	.as-site-header {
		padding: 8px 0;
	}

	.as-site-header__inner {
		grid-template-columns: auto 1fr auto auto;
		grid-template-areas: "brand spacer cta toggle";
		min-height: 58px;
		border-radius: 24px;
	}

	.as-brand {
		grid-area: brand;
	}

	.as-menu-toggle {
		grid-column: auto;
		grid-area: toggle;
		justify-self: end;
		background: rgba(255, 255, 255, 0.58);
	}

	.as-header-cta {
		grid-column: auto;
		grid-area: cta;
		justify-self: end;
	}

	.as-nav {
		position: fixed;
		top: 78px;
		right: 16px;
		bottom: auto;
		left: 16px;
		display: none;
		justify-self: stretch;
		width: auto;
		max-height: calc(100vh - 94px);
		overflow-y: auto;
		border: 1px solid rgba(255, 255, 255, 0.72);
		border-radius: 26px;
		background:
			linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.7)),
			rgba(255, 255, 255, 0.78);
		backdrop-filter: saturate(170%) blur(28px);
		box-shadow: var(--as-shadow-glass);
	}

	.as-nav.is-open {
		display: block;
	}

	.as-nav__list,
	.as-nav ul {
		width: auto;
		padding: 12px;
	}

	.as-nav a {
		min-height: 48px;
	}

	.as-home-hero,
	.as-page-head,
	.as-detail-hero {
		margin-top: -74px;
		padding-top: 128px;
	}

	.as-home-hero {
		min-height: auto;
		padding-bottom: 58px;
	}

	.as-home-hero__inner {
		grid-template-columns: 1fr;
		grid-template-areas:
			"copy"
			"search"
			"chips"
			"visual"
			"metrics";
		gap: 16px;
	}

	.as-home-hero__copy {
		padding-top: 12px;
	}

	.as-home-hero h1,
	.as-page-head h1 {
		font-size: 50px;
	}

	.as-searchbar {
		margin-top: 8px;
	}

	.as-hero-visual {
		margin-top: 16px;
	}

	.as-hero-visual,
	.as-hero-visual__frame {
		min-height: 500px;
		height: 500px;
	}

	.as-hero-floating {
		right: 16px;
	}

	.as-listing-grid,
	.as-listing-grid--related,
	.as-content-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.as-detail-hero__grid {
		grid-template-columns: 1fr;
	}

	.as-contact-panel {
		position: relative;
		top: auto;
	}

	.as-journey-list {
		grid-template-columns: 1fr;
	}

	.as-journey-list li {
		min-height: 190px;
	}

	.as-journey-list strong {
		margin-top: 34px;
	}
}

@media (max-width: 680px) {
	:root {
		--as-shell: min(100% - 28px, 520px);
	}

	.as-site-header__inner {
		gap: 8px;
		padding: 6px;
	}

	.as-brand__mark {
		width: 36px;
		height: 36px;
	}

	.as-header-cta {
		min-height: 38px;
		padding-inline: 12px;
		font-size: 13px;
	}

	.as-home-hero,
	.as-page-head,
	.as-detail-hero {
		margin-top: -72px;
		padding-top: 118px;
	}

	.as-home-hero h1,
	.as-page-head h1 {
		font-size: 42px;
		line-height: 1;
	}

	.as-home-hero p:not(.as-eyebrow) {
		font-size: 17px;
	}

	.as-hero-actions {
		display: grid;
		grid-template-columns: 1fr;
	}

	.as-searchbar {
		display: grid;
		gap: 8px;
		border-radius: 22px;
	}

	.as-searchbar input,
	.as-searchbar .as-button {
		width: 100%;
	}

	.as-hero-search-chips {
		gap: 8px;
	}

	.as-hero-metrics {
		grid-template-columns: 1fr;
	}

	.as-hero-visual,
	.as-hero-visual__frame {
		min-height: 410px;
		height: 410px;
	}

	.as-hero-visual__frame {
		border-radius: 24px;
	}

	.as-hero-visual__bar {
		right: 12px;
		bottom: 12px;
		left: 12px;
		display: grid;
		gap: 8px;
	}

	.as-hero-visual__bar strong {
		justify-self: start;
	}

	.as-hero-floating {
		top: 14px;
		right: 12px;
		left: 12px;
		max-width: none;
		border-radius: 18px;
	}

	.as-section {
		padding: 48px 0;
	}

	.as-section-head {
		display: grid;
		gap: 12px;
	}

	.as-section-head h2,
	.as-content-section h2 {
		font-size: 27px;
	}

	.as-listing-grid,
	.as-listing-grid--related,
	.as-content-grid {
		grid-template-columns: 1fr;
	}

	.as-listing-card__actions {
		display: grid;
	}

	.as-listing-card__actions .as-button {
		width: 100%;
	}

	.as-detail-hero__media,
	.as-detail-gallery,
	.as-detail-gallery__slide {
		min-height: 340px;
		border-radius: 24px;
	}

	.as-contact-panel {
		padding: 20px;
		border-radius: 24px;
	}

	.as-contact-panel h1 {
		font-size: 30px;
	}

	.as-content-section {
		padding: 20px;
	}

	.as-journey-list li {
		min-height: 210px;
		padding: 22px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.as-reveal-ready [data-as-reveal] {
		opacity: 1;
		transform: none;
		transition: none;
	}

	.as-button:hover,
	.as-listing-card:hover,
	.as-hero-visual:hover .as-hero-visual__image,
	.as-listing-card:hover .as-listing-card__image {
		transform: none;
	}

	[data-as-glow]::before {
		display: none;
	}
}

/* Release 1.1.0: Google Design expressive layer. */
:root {
	--as-google-blue: #1a73e8;
	--as-google-green: #188038;
	--as-google-yellow: #fbbc04;
	--as-google-coral: #ea4335;
	--as-google-violet: #6750a4;
	--as-font-display: "Manrope", -apple-system, BlinkMacSystemFont, "SF Pro Display", Inter, "Segoe UI", system-ui, sans-serif;
	--as-font-text: "Manrope", -apple-system, BlinkMacSystemFont, "SF Pro Text", Inter, "Segoe UI", system-ui, sans-serif;
}

body.as-theme {
	font-family: var(--as-font-text);
	font-variation-settings: "opsz" 14, "wdth" 100, "wght" 470;
	background:
		linear-gradient(180deg, #fbfcff 0%, #f4f8ff 28%, #fffaf0 72%, #fbfcff 100%);
}

.as-home-hero,
.as-page-head,
.as-detail-hero {
	background:
		linear-gradient(120deg, rgba(26, 115, 232, 0.16), transparent 34%),
		linear-gradient(240deg, rgba(24, 128, 56, 0.13), transparent 36%),
		linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 249, 255, 0.95) 58%, rgba(255, 252, 244, 0.96)),
		#fbfcff;
}

.as-home-hero h1,
.as-page-head h1,
.as-contact-panel h1 {
	font-family: var(--as-font-display);
	font-variation-settings: "opsz" 72, "wdth" 92, "wght" 850;
}

.as-section-head h2,
.as-content-section h2,
.as-entry-card h2,
.as-listing-card__title,
.as-journey-list strong,
.as-need-card strong {
	font-family: var(--as-font-display);
	font-variation-settings: "opsz" 36, "wdth" 96, "wght" 820;
}

.as-eyebrow {
	display: inline-flex;
	align-items: center;
	min-height: 28px;
	padding: 5px 9px;
	border: 1px solid rgba(26, 115, 232, 0.14);
	border-radius: var(--as-radius-pill);
	background: rgba(232, 240, 254, 0.72);
	color: #174ea6;
}

.as-site-header__inner {
	border-color: rgba(255, 255, 255, 0.82);
	background:
		linear-gradient(90deg, rgba(232, 240, 254, 0.74), rgba(255, 255, 255, 0.62) 42%, rgba(232, 245, 233, 0.68)),
		rgba(255, 255, 255, 0.66);
}

.as-brand__mark {
	background:
		linear-gradient(135deg, var(--as-google-blue) 0 25%, var(--as-google-coral) 25% 50%, var(--as-google-yellow) 50% 75%, var(--as-google-green) 75%),
		var(--as-google-blue);
}

.as-nav a,
.as-header-cta,
.as-button,
.as-hero-search-chips a,
.as-chip,
.as-related-rail a,
.as-chip-list li {
	font-variation-settings: "opsz" 16, "wdth" 100, "wght" 760;
}

.as-button--primary {
	background:
		linear-gradient(180deg, #4285f4, #1a73e8),
		var(--as-google-blue);
	box-shadow: 0 16px 34px rgba(26, 115, 232, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.as-button--contact {
	background:
		linear-gradient(180deg, #1fa463, #188038),
		var(--as-google-green);
	box-shadow: 0 16px 34px rgba(24, 128, 56, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.26);
}

.as-searchbar {
	border-color: rgba(255, 255, 255, 0.84);
	background:
		linear-gradient(90deg, rgba(232, 240, 254, 0.72), rgba(255, 255, 255, 0.78) 36%, rgba(255, 248, 225, 0.7)),
		rgba(255, 255, 255, 0.7);
}

.as-searchbar::before {
	background: radial-gradient(circle 260px at var(--as-glow-x) var(--as-glow-y), rgba(66, 133, 244, 0.22), rgba(251, 188, 4, 0.12) 28%, transparent 58%);
}

.as-need-section {
	position: relative;
	padding-top: 72px;
	padding-bottom: 48px;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(250, 252, 255, 0.98)),
		#fbfcff;
}

.as-need-grid {
	display: grid;
	grid-template-columns: 1.2fr 1fr 1fr;
	grid-auto-rows: minmax(184px, auto);
	gap: 14px;
}

.as-need-card {
	--as-need-tone: var(--as-google-blue);
	--as-need-soft: #e8f0fe;
	--as-need-ink: #174ea6;
	position: relative;
	display: grid;
	align-content: end;
	min-height: 184px;
	padding: 22px;
	overflow: hidden;
	border: 1px solid rgba(16, 24, 40, 0.08);
	border-radius: var(--as-radius-card);
	background:
		linear-gradient(145deg, var(--as-need-soft), rgba(255, 255, 255, 0.94) 60%),
		#ffffff;
	box-shadow: 0 18px 46px rgba(9, 18, 33, 0.09);
	color: var(--as-text-strong);
	text-decoration: none;
	transition:
		transform 280ms var(--as-ease-spring),
		box-shadow 280ms var(--as-ease),
		border-color 280ms var(--as-ease);
}

.as-need-card:first-child {
	grid-row: span 2;
	min-height: 382px;
}

.as-need-card:nth-child(4) {
	grid-column: span 2;
}

.as-need-card::after {
	content: "";
	position: absolute;
	inset: 0 0 auto;
	height: 7px;
	background: var(--as-need-tone);
}

.as-need-card::before {
	background:
		linear-gradient(135deg, rgba(255, 255, 255, 0.54), transparent 36%),
		radial-gradient(circle 260px at var(--as-glow-x) var(--as-glow-y), rgba(255, 255, 255, 0.44), transparent 62%);
}

.as-need-card:hover {
	border-color: color-mix(in srgb, var(--as-need-tone) 34%, transparent);
	box-shadow: 0 28px 72px rgba(9, 18, 33, 0.15);
	transform: translateY(-5px);
}

.as-need-card__label {
	justify-self: start;
	display: inline-flex;
	align-items: center;
	min-height: 32px;
	margin-bottom: 18px;
	padding: 7px 11px;
	border-radius: var(--as-radius-pill);
	background: rgba(255, 255, 255, 0.66);
	color: var(--as-need-ink);
	font-size: 12px;
	font-weight: 850;
}

.as-need-card strong {
	display: block;
	max-width: 420px;
	color: var(--as-need-ink);
	font-size: 28px;
	line-height: 1.04;
}

.as-need-card:first-child strong {
	font-size: 40px;
}

.as-need-card p {
	max-width: 430px;
	margin: 12px 0 0;
	color: rgba(32, 33, 36, 0.72);
	font-size: 15px;
	font-weight: 560;
	line-height: 1.45;
}

.as-need-card--blue {
	--as-need-tone: var(--as-google-blue);
	--as-need-soft: #e8f0fe;
	--as-need-ink: #174ea6;
}

.as-need-card--green {
	--as-need-tone: var(--as-google-green);
	--as-need-soft: #e6f4ea;
	--as-need-ink: #0d652d;
}

.as-need-card--amber {
	--as-need-tone: var(--as-google-yellow);
	--as-need-soft: #fff7d7;
	--as-need-ink: #8a5b00;
}

.as-need-card--coral {
	--as-need-tone: var(--as-google-coral);
	--as-need-soft: #fce8e6;
	--as-need-ink: #a50e0e;
}

.as-listing-card::after,
.as-entry-card::after,
.as-content-section::after {
	content: "";
	position: absolute;
	z-index: 3;
	inset: 0 0 auto;
	height: 4px;
	border-radius: var(--as-radius-card) var(--as-radius-card) 0 0;
	background: linear-gradient(90deg, var(--as-google-blue), var(--as-google-green), var(--as-google-yellow), var(--as-google-coral));
	opacity: 0;
	transition: opacity 220ms var(--as-ease);
}

.as-listing-card:hover::after,
.as-entry-card:hover::after,
.as-content-section:hover::after {
	opacity: 1;
}

.as-listing-card__footer {
	align-items: stretch;
}

.as-price-block {
	min-width: 0;
	padding: 10px 12px;
	border-radius: var(--as-radius-card);
	background: #f8fafd;
}

.as-rating {
	min-height: 44px;
	align-self: center;
}

.as-contact-panel__actions .as-button--contact {
	min-height: 54px;
	font-size: 16px;
}

.as-experience-band {
	background:
		linear-gradient(115deg, rgba(66, 133, 244, 0.24), transparent 34%),
		linear-gradient(245deg, rgba(251, 188, 4, 0.18), transparent 42%),
		linear-gradient(180deg, #101720, #07100e),
		#07100e;
}

.as-journey-list li::after {
	height: 5px;
	background: linear-gradient(90deg, var(--as-google-blue), var(--as-google-green), var(--as-google-yellow), var(--as-google-coral));
}

@media (max-width: 980px) {
	.as-need-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.as-need-card:first-child {
		grid-row: auto;
		min-height: 240px;
	}

	.as-need-card:nth-child(4) {
		grid-column: span 2;
	}

	.as-need-card:first-child strong,
	.as-need-card strong {
		font-size: 30px;
	}
}

@media (max-width: 680px) {
	.as-need-section {
		padding-top: 50px;
	}

	.as-need-grid {
		grid-template-columns: 1fr;
	}

	.as-need-card,
	.as-need-card:first-child {
		grid-column: auto;
		min-height: 220px;
		padding: 20px;
	}

	.as-need-card:nth-child(4) {
		grid-column: auto;
	}

	.as-need-card:first-child strong,
	.as-need-card strong {
		font-size: 28px;
	}

	.as-listing-card__footer {
		display: grid;
	}
}

@media (prefers-reduced-motion: reduce) {
	.as-need-card:hover {
		transform: none;
	}
}

/* Release 1.2.0: Sakarya Stay OS sensory palette from the blueprint. */
:root {
	--as-stay-bg: #f7f2ea;
	--as-stay-paper: #fffdf8;
	--as-stay-paper-warm: #fbfaf7;
	--as-stay-mist: #edf5f2;
	--as-stay-sky: #eaf2ff;
	--as-stay-ink: #080a0f;
	--as-stay-ink-soft: #111827;
	--as-stay-muted: #6e727a;
	--as-stay-blue: #0a66ff;
	--as-stay-blue-deep: #084ecc;
	--as-stay-whatsapp: #25d366;
	--as-stay-whatsapp-deep: #128c4c;
	--as-stay-teal: #0f8c82;
	--as-stay-sage: #dfece4;
	--as-stay-gold: #c9a86a;
	--as-stay-gold-soft: #f5ead2;
	--as-stay-clay: #d86f5d;
	--as-stay-clay-soft: #f8e7e2;
	--as-bg: var(--as-stay-bg);
	--as-bg-soft: var(--as-stay-paper);
	--as-surface: rgba(255, 253, 248, 0.88);
	--as-surface-solid: var(--as-stay-paper);
	--as-surface-raised: rgba(255, 253, 248, 0.82);
	--as-text: #24272d;
	--as-text-strong: var(--as-stay-ink);
	--as-muted: var(--as-stay-muted);
	--as-primary: var(--as-stay-blue);
	--as-primary-strong: var(--as-stay-blue-deep);
	--as-green: var(--as-stay-whatsapp);
	--as-amber: var(--as-stay-gold);
	--as-coral: var(--as-stay-clay);
	--as-ink: var(--as-stay-ink);
	--as-glass: rgba(255, 253, 248, 0.6);
	--as-glass-strong: rgba(255, 253, 248, 0.76);
	--as-border: rgba(8, 10, 15, 0.09);
	--as-border-strong: rgba(8, 10, 15, 0.16);
	--as-shadow: 0 18px 60px rgba(8, 10, 15, 0.1);
	--as-shadow-soft: 0 14px 42px rgba(8, 10, 15, 0.08);
	--as-shadow-glass: 0 18px 70px rgba(8, 10, 15, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.82);
	--as-radius-card: 32px;
	--as-radius-control: 32px;
	--as-radius-pill: 999px;
	--as-google-blue: var(--as-stay-blue);
	--as-google-green: var(--as-stay-teal);
	--as-google-yellow: var(--as-stay-gold);
	--as-google-coral: var(--as-stay-clay);
	--as-font-display: "Manrope", -apple-system, BlinkMacSystemFont, "SF Pro Display", Inter, "Segoe UI", system-ui, sans-serif;
	--as-font-text: "Manrope", -apple-system, BlinkMacSystemFont, "SF Pro Text", Inter, "Segoe UI", system-ui, sans-serif;
}

body.as-theme {
	background:
		linear-gradient(120deg, rgba(10, 102, 255, 0.08), transparent 34%),
		linear-gradient(245deg, rgba(15, 140, 130, 0.08), transparent 38%),
		linear-gradient(180deg, var(--as-stay-paper) 0%, var(--as-stay-bg) 48%, #fff8ec 100%);
	font-family: var(--as-font-text);
	font-variation-settings: normal;
}

body.as-theme::before {
	background:
		linear-gradient(115deg, rgba(10, 102, 255, 0.09), transparent 34%),
		linear-gradient(245deg, rgba(15, 140, 130, 0.09), transparent 38%),
		linear-gradient(180deg, transparent 62%, rgba(201, 168, 106, 0.12));
}

.as-home-hero,
.as-page-head,
.as-detail-hero {
	background:
		linear-gradient(120deg, rgba(10, 102, 255, 0.14), transparent 32%),
		linear-gradient(245deg, rgba(15, 140, 130, 0.12), transparent 38%),
		linear-gradient(180deg, rgba(255, 253, 248, 0.98), rgba(247, 242, 234, 0.94) 56%, rgba(255, 253, 248, 0.96)),
		var(--as-stay-bg);
}

.as-home-hero::before,
.as-page-head::before,
.as-experience-band::before,
.as-site-footer::before {
	background:
		linear-gradient(120deg, rgba(10, 102, 255, 0.15), transparent 34%),
		linear-gradient(245deg, rgba(15, 140, 130, 0.13), transparent 40%),
		linear-gradient(0deg, rgba(201, 168, 106, 0.12), transparent 52%);
}

.as-home-hero h1,
.as-page-head h1,
.as-contact-panel h1,
.as-section-head h2,
.as-content-section h2,
.as-entry-card h2,
.as-listing-card__title,
.as-journey-list strong,
.as-need-card strong {
	font-family: var(--as-font-display);
	font-variation-settings: normal;
	letter-spacing: 0;
}

.as-eyebrow {
	border-color: rgba(10, 102, 255, 0.14);
	background: rgba(234, 242, 255, 0.72);
	color: #084cae;
}

.as-site-header__inner {
	border-color: rgba(255, 255, 255, 0.78);
	background:
		linear-gradient(90deg, rgba(255, 253, 248, 0.78), rgba(234, 242, 255, 0.56) 40%, rgba(223, 236, 228, 0.62)),
		rgba(255, 253, 248, 0.68);
}

.as-brand__mark {
	background:
		linear-gradient(135deg, var(--as-stay-blue), var(--as-stay-teal) 48%, var(--as-stay-gold)),
		var(--as-stay-blue);
}

.as-header-cta {
	border-color: rgba(37, 211, 102, 0.28);
	background:
		linear-gradient(180deg, rgba(37, 211, 102, 0.96), rgba(18, 140, 76, 0.96)),
		var(--as-stay-whatsapp);
	box-shadow: 0 12px 28px rgba(18, 140, 76, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.28);
	color: #ffffff !important;
}

.as-button--primary {
	background:
		linear-gradient(180deg, #317fff, var(--as-stay-blue)),
		var(--as-stay-blue);
	box-shadow: 0 16px 34px rgba(10, 102, 255, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.3);
	color: #ffffff !important;
}

.as-button--contact {
	background:
		linear-gradient(180deg, var(--as-stay-whatsapp), var(--as-stay-whatsapp-deep)),
		var(--as-stay-whatsapp);
	box-shadow: 0 16px 34px rgba(18, 140, 76, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.26);
	color: #ffffff !important;
}

.as-contact-panel__actions a[href^="tel:"],
.as-mobile-contact .as-button--quiet {
	border-color: rgba(17, 24, 39, 0.16);
	background:
		linear-gradient(180deg, #1c2534, var(--as-stay-ink-soft)),
		var(--as-stay-ink-soft);
	box-shadow: 0 16px 34px rgba(8, 10, 15, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.14);
	color: #ffffff !important;
}

.as-searchbar {
	border-color: rgba(255, 255, 255, 0.8);
	background:
		linear-gradient(90deg, rgba(234, 242, 255, 0.74), rgba(255, 253, 248, 0.78) 38%, rgba(245, 234, 210, 0.72)),
		rgba(255, 253, 248, 0.68);
}

.as-searchbar::before,
[data-as-glow]::before {
	background: radial-gradient(circle 260px at var(--as-glow-x) var(--as-glow-y), rgba(10, 102, 255, 0.2), rgba(201, 168, 106, 0.14) 28%, transparent 58%);
}

.as-hero-visual__frame,
.as-detail-hero__media,
.as-detail-gallery {
	border-radius: 32px;
	background:
		linear-gradient(145deg, rgba(10, 102, 255, 0.1), rgba(15, 140, 130, 0.08), rgba(201, 168, 106, 0.08)),
		#e9ece8;
}

.as-hero-visual__bar {
	background:
		linear-gradient(180deg, rgba(8, 10, 15, 0.66), rgba(17, 24, 39, 0.44)),
		rgba(8, 10, 15, 0.5);
}

.as-hero-floating,
.as-contact-panel,
.as-mobile-contact {
	background:
		linear-gradient(180deg, rgba(255, 253, 248, 0.8), rgba(255, 253, 248, 0.58)),
		rgba(255, 253, 248, 0.66);
}

.as-need-section,
.as-section--listings {
	background:
		linear-gradient(180deg, rgba(255, 253, 248, 0.98), rgba(247, 242, 234, 0.96)),
		var(--as-stay-bg);
}

.as-need-card {
	border-color: rgba(8, 10, 15, 0.08);
	background:
		linear-gradient(145deg, var(--as-need-soft), rgba(255, 253, 248, 0.95) 62%),
		var(--as-stay-paper);
	box-shadow: var(--as-shadow);
}

.as-need-card--blue {
	--as-need-tone: var(--as-stay-blue);
	--as-need-soft: var(--as-stay-sky);
	--as-need-ink: #084cae;
}

.as-need-card--green {
	--as-need-tone: var(--as-stay-teal);
	--as-need-soft: #e2f0ed;
	--as-need-ink: #075e58;
}

.as-need-card--amber {
	--as-need-tone: var(--as-stay-gold);
	--as-need-soft: var(--as-stay-gold-soft);
	--as-need-ink: #705223;
}

.as-need-card--coral {
	--as-need-tone: var(--as-stay-clay);
	--as-need-soft: var(--as-stay-clay-soft);
	--as-need-ink: #8f3529;
}

.as-listing-card,
.as-entry-card,
.as-empty-state,
.as-content-section {
	background:
		linear-gradient(180deg, rgba(255, 253, 248, 0.96), rgba(255, 253, 248, 0.9)),
		var(--as-stay-paper);
	box-shadow: var(--as-shadow);
}

.as-listing-card:hover,
.as-entry-card:hover,
.as-need-card:hover {
	box-shadow: 0 28px 90px rgba(8, 10, 15, 0.16);
}

.as-listing-card::after,
.as-entry-card::after,
.as-content-section::after,
.as-journey-list li::after {
	background: linear-gradient(90deg, var(--as-stay-blue), var(--as-stay-teal), var(--as-stay-gold), var(--as-stay-clay));
}

.as-price-block {
	background: rgba(247, 242, 234, 0.72);
}

.as-rating {
	border-color: rgba(201, 168, 106, 0.24);
	background: rgba(245, 234, 210, 0.72);
	color: #795820;
}

.as-contact-panel__price {
	border-color: rgba(10, 102, 255, 0.14);
	background:
		linear-gradient(135deg, rgba(10, 102, 255, 0.1), rgba(201, 168, 106, 0.13)),
		rgba(255, 253, 248, 0.52);
}

.as-experience-band,
.as-site-footer {
	background:
		linear-gradient(115deg, rgba(10, 102, 255, 0.2), transparent 34%),
		linear-gradient(245deg, rgba(15, 140, 130, 0.18), transparent 42%),
		linear-gradient(180deg, #111827, #080a0f),
		var(--as-stay-ink);
}

.as-site-footer .as-link-button {
	border-color: rgba(255, 255, 255, 0.2);
	background: rgba(255, 255, 255, 0.09);
	color: #ffffff;
}

@media (max-width: 680px) {
	.as-hero-visual__frame,
	.as-detail-hero__media,
	.as-detail-gallery {
		border-radius: 28px;
	}

	.as-mobile-contact .as-button {
		color: #ffffff !important;
	}
}

/* Release 2.0.0: Sakarya Stay OS product components. */
.as-command-panel {
	grid-area: search;
	position: relative;
	max-width: 860px;
	margin-top: 24px;
	padding: 10px;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.78);
	border-radius: var(--as-radius-control);
	background:
		linear-gradient(90deg, rgba(234, 242, 255, 0.76), rgba(255, 253, 248, 0.82) 42%, rgba(245, 234, 210, 0.74)),
		rgba(255, 253, 248, 0.72);
	backdrop-filter: saturate(180%) blur(28px);
	box-shadow: var(--as-shadow-glass);
}

.as-command-bar {
	display: grid;
	grid-template-columns: minmax(220px, 1.2fr) minmax(130px, 0.68fr) minmax(120px, 0.58fr) auto;
	align-items: center;
	gap: 8px;
}

.as-command-field {
	display: grid;
	gap: 3px;
	min-height: 64px;
	padding: 10px 14px;
	border: 1px solid rgba(8, 10, 15, 0.08);
	border-radius: 24px;
	background: rgba(255, 253, 248, 0.62);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.74);
}

.as-command-field span,
.as-command-note,
.as-card-badge,
.as-mobile-dock a {
	font-size: 12px;
	font-weight: 850;
}

.as-command-field span {
	color: var(--as-muted);
	text-transform: uppercase;
}

.as-command-field input,
.as-command-field select {
	width: 100%;
	min-width: 0;
	min-height: 28px;
	padding: 0;
	border: 0;
	outline: 0;
	background: transparent;
	color: var(--as-text-strong);
	font: inherit;
	font-weight: 800;
}

.as-command-field select {
	appearance: none;
	cursor: pointer;
}

.as-command-actions {
	display: flex;
	align-items: center;
	gap: 8px;
}

.as-command-actions .as-button {
	min-height: 56px;
	white-space: nowrap;
}

.as-command-note {
	margin: 10px 12px 2px;
	color: rgba(8, 10, 15, 0.56);
}

.as-page-command {
	max-width: 760px;
	margin-top: 26px;
}

.as-page-command .as-command-bar {
	grid-template-columns: minmax(0, 1fr) auto;
}

.as-page-command .as-command-actions {
	display: flex;
}

.as-card-badges {
	position: absolute;
	z-index: 4;
	top: 24px;
	right: 24px;
	left: 24px;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 8px;
	pointer-events: none;
}

.as-card-badge {
	display: inline-flex;
	align-items: center;
	min-height: 32px;
	max-width: 70%;
	padding: 7px 11px;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.48);
	border-radius: var(--as-radius-pill);
	background: rgba(8, 10, 15, 0.46);
	backdrop-filter: blur(16px) saturate(160%);
	color: #ffffff;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.as-card-badge--rating {
	flex: 0 0 auto;
	background: rgba(255, 253, 248, 0.84);
	color: #6f4f1f;
}

.as-card-amenities {
	display: flex;
	flex-wrap: wrap;
	gap: 7px;
	margin: 14px 0 0;
	padding: 0;
	list-style: none;
}

.as-card-amenities li {
	display: inline-flex;
	align-items: center;
	min-height: 30px;
	padding: 6px 10px;
	border: 1px solid rgba(8, 10, 15, 0.08);
	border-radius: var(--as-radius-pill);
	background: rgba(247, 242, 234, 0.78);
	color: rgba(8, 10, 15, 0.72);
	font-size: 12px;
	font-weight: 800;
}

.as-listing-card {
	padding-top: 12px;
}

.as-listing-card__media {
	margin: 0 12px;
	border-radius: 24px;
	aspect-ratio: 4 / 3;
}

.as-listing-card__body {
	padding: 18px 20px 20px;
}

.as-listing-card__actions {
	grid-template-columns: 1fr 0.86fr;
}

.as-listing-card__actions .as-button {
	min-height: 48px;
}

.as-button--call {
	border-color: rgba(17, 24, 39, 0.16);
	background:
		linear-gradient(180deg, #1c2534, var(--as-stay-ink-soft)),
		var(--as-stay-ink-soft);
	box-shadow: 0 16px 34px rgba(8, 10, 15, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.14);
	color: #ffffff !important;
}

.as-location-bento {
	background:
		linear-gradient(180deg, rgba(247, 242, 234, 0.94), rgba(255, 253, 248, 0.98)),
		var(--as-stay-bg);
}

.as-location-bento__grid {
	display: grid;
	grid-template-columns: 1.1fr 1fr 1fr;
	grid-auto-rows: minmax(178px, auto);
	gap: 14px;
}

.as-location-card {
	--as-location-tone: var(--as-stay-blue);
	--as-location-soft: var(--as-stay-sky);
	--as-location-ink: #084cae;
	position: relative;
	display: grid;
	align-content: end;
	min-height: 178px;
	padding: 22px;
	overflow: hidden;
	border: 1px solid rgba(8, 10, 15, 0.08);
	border-radius: var(--as-radius-card);
	background:
		linear-gradient(145deg, var(--as-location-soft), rgba(255, 253, 248, 0.95) 62%),
		var(--as-stay-paper);
	box-shadow: var(--as-shadow-soft);
	color: var(--as-text-strong);
	text-decoration: none;
	transition:
		transform 260ms var(--as-ease-spring),
		box-shadow 260ms var(--as-ease),
		border-color 260ms var(--as-ease);
}

.as-location-card:first-child {
	grid-row: span 2;
	min-height: 370px;
}

.as-location-card:nth-child(5) {
	grid-column: span 2;
}

.as-location-card::after {
	content: "";
	position: absolute;
	inset: 0 0 auto;
	height: 6px;
	background: var(--as-location-tone);
}

.as-location-card:hover {
	border-color: color-mix(in srgb, var(--as-location-tone) 30%, transparent);
	box-shadow: 0 28px 90px rgba(8, 10, 15, 0.14);
	transform: translateY(-5px);
}

.as-location-card span {
	justify-self: start;
	display: inline-flex;
	align-items: center;
	min-height: 30px;
	margin-bottom: 16px;
	padding: 6px 10px;
	border-radius: var(--as-radius-pill);
	background: rgba(255, 253, 248, 0.72);
	color: var(--as-location-ink);
	font-size: 12px;
	font-weight: 850;
}

.as-location-card strong {
	color: var(--as-location-ink);
	font-size: 30px;
	line-height: 1.05;
}

.as-location-card:first-child strong {
	font-size: 42px;
}

.as-location-card p {
	max-width: 420px;
	margin: 12px 0 0;
	color: rgba(8, 10, 15, 0.66);
	font-weight: 650;
	line-height: 1.45;
}

.as-location-card--blue {
	--as-location-tone: var(--as-stay-blue);
	--as-location-soft: var(--as-stay-sky);
	--as-location-ink: #084cae;
}

.as-location-card--green,
.as-location-card--sage {
	--as-location-tone: var(--as-stay-teal);
	--as-location-soft: #e2f0ed;
	--as-location-ink: #075e58;
}

.as-location-card--amber {
	--as-location-tone: var(--as-stay-gold);
	--as-location-soft: var(--as-stay-gold-soft);
	--as-location-ink: #705223;
}

.as-location-card--coral {
	--as-location-tone: var(--as-stay-clay);
	--as-location-soft: var(--as-stay-clay-soft);
	--as-location-ink: #8f3529;
}

.as-contact-panel__intent {
	padding: 16px;
	border: 1px solid rgba(8, 10, 15, 0.08);
	border-radius: 24px;
	background: rgba(255, 253, 248, 0.54);
}

.as-contact-panel__intent span,
.as-summary-grid span {
	color: var(--as-muted);
	font-size: 12px;
	font-weight: 850;
	text-transform: uppercase;
}

.as-contact-panel__intent ol {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 8px;
	margin: 10px 0 0;
	padding: 0;
	list-style: none;
}

.as-contact-panel__intent li {
	min-height: 34px;
	padding: 8px 10px;
	border-radius: var(--as-radius-pill);
	background: rgba(247, 242, 234, 0.78);
	color: var(--as-text-strong);
	font-size: 13px;
	font-weight: 850;
	text-align: center;
}

.as-summary-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 10px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.as-summary-grid li {
	min-height: 112px;
	padding: 16px;
	border: 1px solid rgba(8, 10, 15, 0.08);
	border-radius: 24px;
	background: rgba(247, 242, 234, 0.68);
}

.as-summary-grid strong {
	display: block;
	margin-top: 10px;
	color: var(--as-text-strong);
	font-size: 16px;
	line-height: 1.22;
}

.as-faq-section {
	background:
		linear-gradient(180deg, rgba(255, 253, 248, 0.98), rgba(247, 242, 234, 0.94)),
		var(--as-stay-bg);
}

.as-faq-list {
	display: grid;
	gap: 10px;
	max-width: 900px;
}

.as-faq-item {
	border: 1px solid rgba(8, 10, 15, 0.08);
	border-radius: 24px;
	background: var(--as-stay-paper);
	box-shadow: var(--as-shadow-soft);
}

.as-faq-item summary {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	min-height: 68px;
	padding: 18px 22px;
	color: var(--as-text-strong);
	font-weight: 900;
	cursor: pointer;
}

.as-faq-item summary::after {
	content: "+";
	display: inline-grid;
	flex: 0 0 34px;
	place-items: center;
	width: 34px;
	height: 34px;
	border-radius: var(--as-radius-pill);
	background: rgba(234, 242, 255, 0.8);
	color: var(--as-stay-blue);
}

.as-faq-item[open] summary::after {
	content: "-";
}

.as-faq-item p {
	margin: 0;
	padding: 0 22px 22px;
	color: var(--as-muted);
}

.as-empty-state__actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
	margin-top: 24px;
}

.as-empty-state__actions .as-button {
	min-height: 48px;
}

.as-mobile-dock {
	position: fixed;
	z-index: 120;
	right: 12px;
	bottom: max(12px, env(safe-area-inset-bottom));
	left: 12px;
	display: none;
	grid-template-columns: 1fr 1fr 0.82fr;
	gap: 8px;
	height: 64px;
	padding: 8px;
	border: 1px solid rgba(255, 255, 255, 0.72);
	border-radius: var(--as-radius-pill);
	background:
		linear-gradient(180deg, rgba(255, 253, 248, 0.82), rgba(255, 253, 248, 0.62)),
		rgba(255, 253, 248, 0.74);
	backdrop-filter: blur(26px) saturate(180%);
	box-shadow: 0 24px 80px rgba(8, 10, 15, 0.22);
}

.as-mobile-dock .as-button {
	min-width: 0;
	min-height: 48px;
	padding: 8px 10px;
	color: #ffffff !important;
	white-space: nowrap;
}

@media (max-width: 1080px) {
	.as-command-bar {
		grid-template-columns: 1fr 1fr;
	}

	.as-command-field--location,
	.as-command-actions {
		grid-column: 1 / -1;
	}

	.as-command-actions {
		display: grid;
		grid-template-columns: 1fr 1fr;
	}

	.as-location-bento__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.as-location-card:first-child,
	.as-location-card:nth-child(5) {
		grid-column: span 2;
		grid-row: auto;
		min-height: 240px;
	}

	.as-summary-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 680px) {
	body.as-theme {
		padding-bottom: 82px;
	}

	.as-command-panel {
		padding: 8px;
		border-radius: 28px;
	}

	.as-command-bar,
	.as-command-actions,
	.as-location-bento__grid,
	.as-summary-grid,
	.as-empty-state__actions {
		grid-template-columns: 1fr;
	}

	.as-empty-state__actions {
		display: grid;
	}

	.as-command-field,
	.as-command-actions .as-button {
		min-height: 58px;
	}

	.as-location-card,
	.as-location-card:first-child,
	.as-location-card:nth-child(5) {
		grid-column: auto;
		min-height: 220px;
	}

	.as-location-card:first-child strong,
	.as-location-card strong {
		font-size: 30px;
	}

	.as-card-badges {
		top: 20px;
		right: 20px;
		left: 20px;
	}

	.as-card-badge {
		max-width: 64%;
	}

	.as-listing-card__actions {
		grid-template-columns: 1fr;
	}

	.as-contact-panel__intent ol {
		grid-template-columns: 1fr;
	}

	.as-mobile-dock {
		display: grid;
		opacity: 0;
		pointer-events: none;
		transform: translateY(calc(100% + 24px));
		transition:
			opacity 220ms var(--as-ease),
			transform 220ms var(--as-ease);
	}

	body.as-dock-visible .as-mobile-dock {
		opacity: 1;
		pointer-events: auto;
		transform: translateY(0);
	}
}

@media (prefers-reduced-motion: reduce) {
	.as-location-card:hover {
		transform: none;
	}

	.as-mobile-dock {
		transition: none;
	}
}
