:root {
	--primary: #e88d97;
	--primary-hover: #d97c87;
	--background: #f8f3ef;
	--surface: #fffdfc;
	--soft-beige: #efe6df;
	--border: #e9ded6;
	--heading: #2b2624;
	--body: #5e534d;
	--muted: #8c817b;
	--shadow: 0 10px 30px rgba(43, 38, 36, 0.08);
	--radius-card: 24px;
	--radius-button: 14px;
	--radius-input: 16px;
	--radius-image: 20px;
	--container: 1440px;
	--content: 1320px;
	--space: clamp(1rem, 0.6rem + 1.2vw, 2rem);
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background:
		radial-gradient(circle at top left, rgba(232, 141, 151, 0.14), transparent 28%),
		linear-gradient(180deg, #fffefd 0%, var(--background) 100%);
	color: var(--body);
	font-family: "Manrope", sans-serif;
	font-size: 16px;
	line-height: 1.6;
}

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

a {
	color: inherit;
	text-decoration: none;
}

button,
input {
	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;
}

.container {
	width: min(100%, var(--container));
	margin: 0 auto;
	padding-inline: clamp(1rem, 2vw, 3rem);
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 20;
	background: rgba(255, 253, 252, 0.86);
	backdrop-filter: blur(20px);
	border-bottom: 1px solid rgba(233, 222, 214, 0.8);
}

.site-header.is-menu-open,
.site-header.is-search-open {
	background: rgba(255, 253, 252, 0.98);
}

.site-header__inner,
.site-footer__bottom,
.section-heading,
.hero-search,
.popular-tags,
.style-grid,
.newsletter__form {
	display: flex;
	align-items: center;
}

.site-header__inner {
	justify-content: space-between;
	min-height: 86px;
	gap: 1.5rem;
}

.mobile-header__button,
.mobile-search-panel {
	display: none;
}

.site-brand {
	font-family: "Cormorant Garamond", serif;
	font-size: clamp(2rem, 1.25rem + 1.6vw, 2.75rem);
	font-weight: 700;
	letter-spacing: -0.04em;
	line-height: 1;
	position: relative;
	z-index: 2;
}

.site-brand__na {
	color: var(--heading);
}

.site-brand__lia {
	color: var(--primary);
}

.site-nav__list,
.site-actions,
.site-footer__links {
	display: flex;
	gap: 1.25rem;
	padding: 0;
	margin: 0;
	list-style: none;
}

.header-search {
	flex: 0 1 320px;
}

.header-search input {
	width: 100%;
	padding: 0.9rem 1rem;
	border: 1px solid var(--border);
	border-radius: 14px;
	background: rgba(255, 255, 255, 0.88);
}

.site-nav__list a,
.site-footer__links a {
	font-size: 0.95rem;
	font-weight: 600;
	color: var(--heading);
}

.site-nav__list {
	list-style: none;
}

.site-nav__list li {
	position: relative;
}

.site-nav__list > li > a {
	display: inline-flex;
	align-items: center;
	min-height: 42px;
}

.site-nav .sub-menu {
	list-style: none;
	margin: 0;
	padding: 0.75rem 0;
}

.site-nav__list .sub-menu {
	position: absolute;
	top: calc(100% + 0.35rem);
	left: 0;
	min-width: 220px;
	display: grid;
	gap: 0.1rem;
	padding: 0.65rem;
	border: 1px solid rgba(233, 222, 214, 0.96);
	border-radius: 18px;
	background: rgba(255, 253, 252, 0.98);
	box-shadow: 0 18px 34px rgba(43, 38, 36, 0.12);
	opacity: 0;
	visibility: hidden;
	transform: translateY(8px);
	transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
	z-index: 30;
}

.site-nav__list .sub-menu a {
	display: block;
	padding: 0.7rem 0.9rem;
	border-radius: 12px;
	font-size: 0.92rem;
	font-weight: 600;
	line-height: 1.35;
}

.site-nav__list .sub-menu a:hover,
.site-nav__list .sub-menu a:focus-visible {
	background: rgba(239, 230, 223, 0.72);
	outline: none;
}

.site-nav__list > li.menu-item-has-children > a {
	padding-right: 1.05rem;
}

.site-nav__list > li.menu-item-has-children > a::after {
	content: "";
	position: absolute;
	right: 0;
	top: 50%;
	width: 0.42rem;
	height: 0.42rem;
	border-right: 1.5px solid currentColor;
	border-bottom: 1.5px solid currentColor;
	transform: translateY(-62%) rotate(45deg);
	opacity: 0.72;
}

.site-nav__list > li:hover > .sub-menu,
.site-nav__list > li:focus-within > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.site-action {
	display: grid;
	place-items: center;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.7);
	border: 1px solid rgba(233, 222, 214, 0.9);
}

.site-action svg {
	width: 18px;
	height: 18px;
	fill: none;
	stroke: var(--heading);
	stroke-width: 1.6;
}

.mobile-header__button--search svg {
	width: 18px;
	height: 18px;
	fill: none;
	stroke: var(--heading);
	stroke-width: 1.8;
}

.hero {
	padding: clamp(2rem, 3vw, 4rem) 0 2rem;
}

/* .hero--homepage {
	padding-top: 0;
} */

.hero__inner {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
	align-items: stretch;
	gap: clamp(1.5rem, 3vw, 4rem);
	padding: clamp(1.25rem, 2vw, 2rem);
	border-radius: 40px;
	background:
		linear-gradient(90deg, rgba(255, 252, 249, 0.96) 0%, rgba(255, 247, 241, 0.78) 48%, rgba(235, 197, 174, 0.18) 100%),
		linear-gradient(135deg, #f7eee8 0%, #f1ddd3 50%, #efc7bb 100%);
	overflow: hidden;
}

.hero__inner--home {
	position: relative;
	grid-template-columns: minmax(0, 1fr);
	min-height: clamp(520px, 64vw, 620px);
	padding: clamp(1.25rem, 2vw, 2rem);
	background:
		linear-gradient(90deg, rgba(255, 252, 249, 0.82) 0%, rgba(255, 247, 241, 0.44) 38%, rgba(42, 29, 24, 0.06) 100%),
		linear-gradient(135deg, #f7eee8 0%, #f1ddd3 50%, #efc7bb 100%);
}

.hero__inner--home::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(28, 20, 16, 0.04), rgba(28, 20, 16, 0.34));
	pointer-events: none;
}

.hero__content {
	padding: clamp(1rem, 2vw, 2rem);
	align-self: center;
}

.hero__content--overlay {
	position: relative;
	z-index: 1;
	/* max-width: min(41rem, 100%); */
	padding: clamp(1.5rem, 2vw, 2.5rem);
}

.homepage-hero__title {
	display: grid;
	gap: 0.1em;
	/* max-width: 9ch; */
}

.homepage-hero__title span {
	color: var(--primary);
}

.eyebrow {
	margin: 0 0 0.75rem;
	color: var(--primary);
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.hero h1,
.section h2,
.feature-banner h2,
.newsletter h2,
.simple-panel h1 {
	margin: 0;
	color: var(--heading);
	font-family: "Cormorant Garamond", serif;
	font-weight: 600;
	letter-spacing: -0.03em;
	line-height: 0.95;
}

.hero h1 {
	/* max-width: 10ch; */
	font-size: clamp(3.3rem, 2rem + 3.4vw, 5.15rem);
	line-height: 0.92;
}

.hero__content--overlay h1,
.hero__content--overlay .hero__intro {
	text-shadow: 0 10px 24px rgba(255, 248, 243, 0.38);
}

.hero__intro {
	/* max-width: 28rem; */
	margin: 1.15rem 0 0;
	font-size: 1rem;
	line-height: 1.55;
}

.hero-search {
	display: grid;
	grid-template-columns: minmax(0, 1.7fr) minmax(0, 0.5fr) 140px;
	gap: 0;
	margin-top: 2rem;
	padding: 0.5rem;
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.98);
	box-shadow: 0 16px 34px rgba(43, 38, 36, 0.12);
}

.hero-search input,
.hero-search select {
	min-width: 0;
	padding: 1rem 1.05rem;
	border: 0;
	border-radius: 14px;
	background: #fff;
	color: var(--heading);
	box-shadow: none;
}

.hero-search > *:not(:last-child) {
	border-right: 1px solid rgba(233, 222, 214, 0.92);
}

.hero-search input[type="hidden"] {
	display: none;
}

.hero-search .button {
	min-height: 100%;
	border-radius: 14px;
	margin-left: 0.35rem;
}

.hero-search--city-archive {
	max-width: 42rem;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: stretch;
}

.hero-search--city-archive .button {
	margin-left: 0.2rem;
	padding-inline: 1.3rem;
	white-space: nowrap;
}

.hero-search__note {
	margin: 0.85rem 0 0;
	font-size: 0.92rem;
	color: var(--heading);
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 52px;
	padding: 0.85rem 1.5rem;
	border: 0;
	border-radius: var(--radius-button);
	font-weight: 700;
	cursor: pointer;
	transition: transform 0.2s ease, background-color 0.2s ease;
}

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

.button--primary {
	background: linear-gradient(135deg, var(--primary) 0%, #f19fa8 100%);
	color: #fff;
}

.button--primary:hover {
	background: linear-gradient(135deg, var(--primary-hover) 0%, #e88d97 100%);
}

.popular-tags {
	flex-wrap: wrap;
	gap: 0.8rem;
	margin-top: 1rem;
	align-items: center;
}

.popular-tags span,
.popular-tags a {
	font-size: 0.92rem;
}

.popular-tags a {
	padding: 0.46rem 0.8rem;
	border-radius: 999px;
	background: rgba(255, 244, 238, 0.88);
	border: 1px solid rgba(241, 226, 217, 0.98);
}

.hero__visual {
	position: relative;
	min-height: 520px;
	border-radius: 34px;
	overflow: hidden;
	background:
		linear-gradient(180deg, rgba(55, 30, 21, 0.08), rgba(55, 30, 21, 0.22)),
		linear-gradient(135deg, #f0d1c2 0%, #e1b6a8 34%, #f9f0ea 100%);
}

.hero__visual--home::after,
.archive-hero__visual::after,
.article-hero__image::after,
.mini-card__thumb::after,
.mini-city-card::after,
.neighborhood-card::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(28, 20, 16, 0.04), rgba(28, 20, 16, 0.46));
}

.hero__shape,
.hero__card,
.feature-banner__visual,
.newsletter__visual,
.card-media,
.city-card {
	background-size: cover;
	background-position: center;
}

.hero__shape {
	position: absolute;
	border-radius: 46% 54% 52% 48% / 40% 40% 60% 60%;
	filter: blur(0.2px);
}

.hero__shape--one {
	inset: 2% 0 8% 22%;
	background:
		radial-gradient(circle at 58% 35%, rgba(255, 235, 229, 0.38), transparent 22%),
		linear-gradient(160deg, rgba(247, 208, 194, 0.96) 0%, rgba(226, 171, 154, 0.92) 35%, rgba(181, 110, 88, 0.9) 100%);
}

.hero__shape--two {
	width: 220px;
	height: 220px;
	right: 7%;
	top: 10%;
	background: radial-gradient(circle at 35% 35%, rgba(255, 255, 255, 0.42), rgba(232, 141, 151, 0.7) 66%, rgba(166, 93, 100, 0.95) 100%);
	border-radius: 50%;
}

.hero__card {
	position: absolute;
	left: 0;
	bottom: 7%;
	width: clamp(170px, 28%, 240px);
	aspect-ratio: 0.7;
	border-radius: 34px;
	background:
		linear-gradient(160deg, rgba(255, 253, 251, 0.82), rgba(255, 238, 230, 0.18)),
		linear-gradient(180deg, rgba(255, 255, 255, 0.4), rgba(232, 141, 151, 0.18));
	backdrop-filter: blur(18px);
	box-shadow: var(--shadow);
	border: 1px solid rgba(255, 255, 255, 0.66);
}

.hero__card--glass {
	left: 1.5rem;
	right: auto;
	bottom: 1.5rem;
	width: min(320px, calc(100% - 3rem));
	aspect-ratio: auto;
	padding: 1.2rem;
	display: grid;
	gap: 0.55rem;
}

.hero__card-label {
	font-size: 0.76rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: rgba(43, 38, 36, 0.72);
}

.hero__card--glass strong,
.hero__card--glass small {
	color: var(--heading);
}

.hero__card--glass strong {
	font-size: 1.15rem;
	line-height: 1.35;
}

.hero__card--glass small {
	font-size: 0.92rem;
	line-height: 1.5;
}

.section {
	padding: clamp(1.5rem, 2vw, 2.5rem) 0;
}

.homepage-section {
	padding: 1.6rem 0;
}

.section--compact {
	padding-top: 0.5rem;
}

.section--newsletter {
	padding-bottom: clamp(2.25rem, 4vw, 4rem);
}

.section-heading {
	justify-content: space-between;
	gap: 1rem;
	margin-bottom: 1.4rem;
}

.homepage-section__heading {
	margin-bottom: 1.2rem;
}

.homepage-section__heading h2 {
	font-size: clamp(2rem, 1.5rem + 1vw, 2.65rem);
}

.section h2,
.feature-banner h2,
.newsletter h2,
.simple-panel h1 {
	font-size: clamp(1.8rem, 1.6rem + 1.3vw, 2.8rem);
	margin-bottom: 1rem;
}

.section-link {
	color: var(--primary);
	font-weight: 700;
}

.card-grid {
	display: grid;
	gap: 1.25rem;
}

.card-grid--four {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card-grid--three {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
	display: flex;
	flex-direction: column;
	border: 1px solid rgba(233, 222, 214, 0.92);
	border-radius: var(--radius-card);
	background: var(--surface);
	box-shadow: 0 10px 24px rgba(43, 38, 36, 0.04);
	overflow: hidden;
}

.homepage-card {
	border-radius: 18px;
	box-shadow: 0 8px 22px rgba(43, 38, 36, 0.06);
}

.card-media {
	position: relative;
	min-height: 214px;
	padding: 1rem;
}

.homepage-card .card-media {
	min-height: 170px;
}

.card-media--rose {
	background:
		linear-gradient(180deg, rgba(55, 30, 21, 0.1), rgba(55, 30, 21, 0.18)),
		linear-gradient(135deg, #b06d4d 0%, #e8c1a7 48%, #f7ebdf 100%);
}

.card-media--sand {
	background:
		linear-gradient(180deg, rgba(34, 24, 18, 0.14), rgba(34, 24, 18, 0.04)),
		linear-gradient(135deg, #be9d81 0%, #f1dfd1 48%, #fff7f1 100%);
}

.card-media--cream {
	background:
		linear-gradient(180deg, rgba(61, 42, 31, 0.1), rgba(61, 42, 31, 0.1)),
		linear-gradient(135deg, #9f6b48 0%, #e9ceb5 52%, #f9f0e6 100%);
}

.card-media--mocha {
	background:
		linear-gradient(180deg, rgba(22, 18, 15, 0.24), rgba(22, 18, 15, 0.04)),
		linear-gradient(135deg, #5b4a42 0%, #cdb6a8 48%, #f5ede6 100%);
}

.card-media--guide-rose {
	background: linear-gradient(135deg, #d8a79d 0%, #f6d4cb 50%, #fff2ed 100%);
}

.card-media--guide-blush {
	background: linear-gradient(135deg, #c99e8e 0%, #ebc3b4 46%, #fff4ef 100%);
}

.card-media--guide-warm {
	background: linear-gradient(135deg, #7d5f53 0%, #c29c84 46%, #f9efe7 100%);
}

.card-media--salon-1 {
	background:
		linear-gradient(180deg, rgba(55, 30, 21, 0.1), rgba(55, 30, 21, 0.18)),
		linear-gradient(135deg, #b06d4d 0%, #e8c1a7 48%, #f7ebdf 100%);
}

.card-media--salon-2 {
	background:
		linear-gradient(180deg, rgba(34, 24, 18, 0.14), rgba(34, 24, 18, 0.04)),
		linear-gradient(135deg, #7a503a 0%, #caa285 48%, #f7e9dc 100%);
}

.card-media--salon-3 {
	background:
		linear-gradient(180deg, rgba(61, 42, 31, 0.1), rgba(61, 42, 31, 0.1)),
		linear-gradient(135deg, #9f6b48 0%, #e9ceb5 52%, #f9f0e6 100%);
}

.card-media--salon-4 {
	background:
		linear-gradient(180deg, rgba(22, 18, 15, 0.24), rgba(22, 18, 15, 0.04)),
		linear-gradient(135deg, #5b4a42 0%, #cdb6a8 48%, #f5ede6 100%);
}

.card-media--guide-1 {
	background: linear-gradient(135deg, #d8a79d 0%, #f6d4cb 50%, #fff2ed 100%);
}

.card-media--guide-2 {
	background: linear-gradient(135deg, #c99e8e 0%, #ebc3b4 46%, #fff4ef 100%);
}

.card-media--guide-3 {
	background: linear-gradient(135deg, #7d5f53 0%, #c29c84 46%, #f9efe7 100%);
}

.pill {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.42rem 0.7rem;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.82);
	color: var(--heading);
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.pill--soft {
	margin: 1rem 0;
	background: rgba(232, 141, 151, 0.1);
	color: var(--primary-hover);
}

.pill--accent {
	background: linear-gradient(135deg, rgba(232, 141, 151, 0.98), rgba(241, 167, 176, 0.96));
	color: #fff;
}

.card-body {
	padding: 1rem 1rem 1.15rem;
}

.card-body h3 {
	margin: 0 0 0.35rem;
	color: var(--heading);
	font-size: 1.08rem;
	line-height: 1.3;
}

.homepage-card .card-body h3 {
	font-size: 1rem;
}

.card-body p {
	margin: 0.26rem 0;
	font-size: 0.94rem;
}

.rating {
	color: #a97518;
	font-weight: 700;
}

.rating span,
.muted {
	color: var(--muted);
}

.style-grid {
	flex-wrap: wrap;
	gap: 1rem;
}

.homepage-style-grid {
	display: grid;
	grid-template-columns: repeat(8, minmax(0, 1fr));
	gap: 1rem;
}

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

.style-card {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: end;
	min-height: 250px;
	padding: 1.1rem;
	border-radius: 24px;
	color: #fff;
	overflow: hidden;
	background:
		linear-gradient(180deg, rgba(25, 19, 16, 0.08), rgba(25, 19, 16, 0.58)),
		linear-gradient(135deg, #b06d4d 0%, #e8c1a7 48%, #f7ebdf 100%);
	box-shadow: var(--shadow);
}

.style-card__eyebrow,
.style-card__title,
.style-card__summary {
	position: relative;
	z-index: 1;
}

.style-card__eyebrow {
	font-size: 0.75rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	opacity: 0.92;
}

.style-card__title {
	margin-top: 0.35rem;
	font-family: "Cormorant Garamond", serif;
	font-size: 2rem;
	line-height: 1;
}

.style-card__summary {
	margin-top: 0.55rem;
	max-width: 26ch;
	font-size: 0.92rem;
	line-height: 1.45;
}

.style-pill {
	display: grid;
	justify-items: center;
	gap: 0.65rem;
	min-width: 92px;
}

.style-pill__icon {
	display: grid;
	place-items: center;
	width: 64px;
	height: 64px;
	border-radius: 50%;
	background: linear-gradient(180deg, #fff5f2 0%, #f7ebe4 100%);
	border: 1px solid var(--border);
	color: var(--heading);
	font-weight: 800;
	box-shadow: 0 8px 22px rgba(43, 38, 36, 0.05);
}

.style-pill__label {
	/* max-width: 9ch; */
	text-align: center;
	font-size: 0.9rem;
	font-weight: 600;
	color: var(--heading);
}

.homepage-style-pill {
	gap: 0.8rem;
	min-width: 0;
}

.homepage-style-pill .style-pill__icon {
	width: 58px;
	height: 58px;
	background: linear-gradient(180deg, #fff7f4 0%, #f8ede7 100%);
}

.homepage-style-pill .style-pill__label {
	font-size: 0.86rem;
}

.feature-banner,
.newsletter,
.simple-panel {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(260px, 1.1fr);
	align-items: stretch;
	border-radius: 30px;
	background: linear-gradient(135deg, rgba(255, 250, 247, 0.98), rgba(248, 236, 230, 0.92));
	border: 1px solid rgba(233, 222, 214, 0.92);
	overflow: hidden;
}

.archive-hero--guides.archive-hero--overlay {
	min-height: clamp(320px, 58vw, 420px);
	background:
		linear-gradient(90deg, rgba(255,250,247,.93) 0%, rgba(248,236,230,.66) 38%, rgba(43,31,26,.16) 100%),
		linear-gradient(135deg, #f0d1c2 0%, #e1b6a8 34%, #f9f0ea 100%);
	background-size: cover;
	background-position: center;
}

.feature-banner--overlay {
	position: relative;
	grid-template-columns: minmax(0, 1fr);
	min-height: 220px;
	background:
		linear-gradient(90deg, rgba(255, 250, 247, 0.96) 0%, rgba(248, 236, 230, 0.72) 36%, rgba(43, 31, 26, 0.08) 100%),
		linear-gradient(135deg, #f0d1c2 0%, #e1b6a8 34%, #f9f0ea 100%);
	background-size: cover;
	background-position: center;
}

.feature-banner--overlay::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(28, 20, 16, 0.03), rgba(28, 20, 16, 0.2));
	pointer-events: none;
}

.feature-banner__content,
.newsletter__content,
.simple-panel {
	padding: clamp(1.5rem, 2.5vw, 3rem);
}

.feature-banner--overlay .feature-banner__content {
	position: relative;
	z-index: 1;
	max-width: 42rem;
}

.feature-banner__visual {
	min-height: 280px;
	background:
		radial-gradient(circle at 70% 22%, rgba(255, 255, 255, 0.5), transparent 18%),
		linear-gradient(135deg, #f0d1c2 0%, #e1b6a8 34%, #f9f0ea 100%);
}

.card-grid--cities {
	grid-template-columns: repeat(6, minmax(0, 1fr));
}

.card-grid--cities-wide {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card-grid--five {
	grid-template-columns: repeat(5, minmax(0, 1fr));
}

.city-card {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	min-height: 182px;
	padding: 0.9rem;
	border-radius: 14px;
	color: #fff;
	overflow: hidden;
	box-shadow: 0 10px 24px rgba(43, 38, 36, 0.1);
}

.city-card::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(24, 18, 16, 0.04), rgba(24, 18, 16, 0.72));
}

.city-card > span {
	position: relative;
	z-index: 1;
}

.city-card p {
	position: relative;
	z-index: 1;
}

.city-card__name {
	font-family: "Cormorant Garamond", serif;
	font-size: 1.4rem;
	font-weight: 600;
	line-height: 0.96;
}

.city-card__count {
	font-size: 0.82rem;
}

.city-1,
.city-austin {
	background-image: linear-gradient(135deg, #46637d 0%, #6ba4ca 42%, #d8b694 100%);
}

.city-2,
.city-houston {
	background-image: linear-gradient(135deg, #537998 0%, #7dbadf 42%, #e7d7c8 100%);
}

.city-3,
.city-dallas {
	background-image: linear-gradient(135deg, #5f688d 0%, #8cb0d8 40%, #d6ad84 100%);
}

.city-4,
.city-miami {
	background-image: linear-gradient(135deg, #5e7687 0%, #85adc1 42%, #d7c2a8 100%);
}

.city-5,
.city-la {
	background-image: linear-gradient(135deg, #555e6c 0%, #7f8f9f 48%, #d8ba96 100%);
}

.city-6,
.city-nyc {
	background-image: linear-gradient(135deg, #434956 0%, #636f82 46%, #d4b298 100%);
}

.newsletter__visual {
	min-height: 280px;
	background:
		radial-gradient(circle at 72% 30%, rgba(255, 255, 255, 0.42), transparent 16%),
		linear-gradient(135deg, #efe1d8 0%, #d9b4a2 38%, #f8ede8 100%);
}

.newsletter--overlay {
	position: relative;
	grid-template-columns: minmax(0, 1fr);
	min-height: 320px;
	background:
		linear-gradient(110deg, rgba(32,21,17,.68) 0%, rgba(32,21,17,.38) 34%, rgba(255,245,238,.12) 100%),
		linear-gradient(135deg, #efe1d8 0%, #d9b4a2 38%, #f8ede8 100%);
	background-size: cover;
	background-position: center;
}

.newsletter--overlay::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(255,255,255,.02), rgba(26,18,15,.14));
	pointer-events: none;
}

.newsletter--overlay .newsletter__content {
	position: relative;
	z-index: 1;
	max-width: 36rem;
	color: #fffaf7;
}

.newsletter--overlay .newsletter__content h2,
.newsletter--overlay .newsletter__content p {
	color: inherit;
}

.newsletter--overlay .newsletter__form input {
	background: rgba(255, 255, 255, 0.92);
	border-color: rgba(255, 255, 255, 0.52);
}

.newsletter__content p,
.simple-panel p {
	margin-top: 1rem;
}

.newsletter__form {
	flex-wrap: wrap;
	gap: 0.85rem;
	margin-top: 1.5rem;
}

.newsletter__form input {
	flex: 1 1 240px;
	padding: 1rem 1.1rem;
	border: 1px solid var(--border);
	border-radius: var(--radius-input);
	background: #fff;
}

.site-footer {
	padding: 1.5rem 0 2rem;
	background: rgba(255, 253, 252, 0.82);
	border-top: 1px solid rgba(233, 222, 214, 0.9);
}

.site-footer__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.35fr) repeat(4, minmax(0, 1fr));
	gap: 1.5rem;
	padding-block: 1rem;
}

.site-footer__grid h2 {
	margin: 0 0 1rem;
	color: var(--heading);
	font-size: 1rem;
}

.site-footer__brand p {
	max-width: 24ch;
	margin-top: 1rem;
}

.site-footer__links {
	flex-direction: column;
	gap: 0.6rem;
}

.site-footer__bottom {
	justify-content: center;
	padding-top: 1rem;
	border-top: 1px solid rgba(233, 222, 214, 0.9);
	font-size: 0.92rem;
}

.app-badges {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin-top: 1rem;
}

.app-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 0.65rem 1rem;
	border-radius: 12px;
	background: var(--heading);
	color: #fff;
	font-size: 0.9rem;
	font-weight: 700;
}

.page-shell {
	padding-block: 0rem;
}

.simple-panel {
	grid-template-columns: 1fr;
}

.breadcrumbs {
	display: flex;
	flex-wrap: wrap;
	gap: 0.45rem;
	margin-top: 1rem;
	font-size: 0.9rem;
	color: var(--muted);
}

.breadcrumbs a {
	color: var(--muted);
}

.archive-hero {
	display: grid;
	grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
	border-radius: 32px;
	overflow: hidden;
	border: 1px solid rgba(233, 222, 214, 0.92);
	background: linear-gradient(135deg, rgba(255, 252, 249, 0.98), rgba(248, 236, 230, 0.92));
}

.archive-hero--overlay {
	position: relative;
	grid-template-columns: minmax(0, 1fr);
	min-height: clamp(320px, 62vw, 420px);
	background-size: cover;
	background-position: center;
}

.archive-hero--overlay::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(28, 20, 16, 0.04), rgba(28, 20, 16, 0.3));
	pointer-events: none;
}

.archive-hero--overlay .archive-hero__content {
	position: relative;
	z-index: 1;
	/* max-width: 46rem; */
}

.archive-hero__content {
	padding: clamp(1.75rem, 3vw, 3.5rem);
}

.archive-hero__content p {
	max-width: 34rem;
}

.archive-hero__visual {
	position: relative;
	min-height: 380px;
	background-size: cover;
	background-position: center;
}

.archive-hero__visual--guides {
	background: linear-gradient(135deg, #f0d1c2 0%, #e1b6a8 34%, #f9f0ea 100%);
}

.archive-hero__visual--cities {
	background: linear-gradient(135deg, #d7c2b2 0%, #d8b39f 34%, #f2e4db 100%);
}

.archive-hero__visual--salons {
	background: linear-gradient(135deg, #f0cbbd 0%, #e2b5a7 34%, #f8e9e3 100%);
}

.archive-hero__visual--city-single {
	background: linear-gradient(135deg, #7b7f8d 0%, #d3b499 44%, #f8e9e3 100%);
}

.layout-with-sidebar {
	display: grid;
	grid-template-columns: 290px minmax(0, 1fr);
	gap: 1.75rem;
}

.sidebar-panel,
.filter-panel,
.metric-panel {
	padding: 1.5rem;
	border: 1px solid rgba(233, 222, 214, 0.92);
	border-radius: 24px;
	background: var(--surface);
	box-shadow: 0 10px 24px rgba(43, 38, 36, 0.04);
}

.sidebar-nav,
.filter-group {
	margin: 1rem 0 0;
}

.sidebar-nav {
	display: grid;
	gap: 0.9rem;
	padding: 0;
	list-style: none;
}

.sidebar-nav a {
	color: var(--heading);
	font-weight: 600;
}

.topic-cloud,
.chip-row,
.toolbar,
.stat-row,
.mini-city-grid {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	gap: 0.75rem;
}

.topic-cloud a,
.chip-row a,
.chip-row span {
	display: inline-flex;
	align-items: center;
	flex: 0 0 auto;
	padding: 0.55rem 0.85rem;
	border-radius: 999px;
	border: 1px solid rgba(233, 222, 214, 0.92);
	background: #fff;
	font-size: 0.9rem;
	white-space: nowrap;
}

.chip-row--input {
	gap: 0.6rem;
}

.filter-chip {
	position: relative;
}

.filter-chip input {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.filter-chip span {
	display: inline-flex;
	align-items: center;
	padding: 0.55rem 0.85rem;
	border-radius: 999px;
	border: 1px solid rgba(233, 222, 214, 0.92);
	background: #fff;
	font-size: 0.9rem;
	cursor: pointer;
}

.filter-chip input:checked + span {
	background: rgba(232, 141, 151, 0.1);
	color: var(--primary-hover);
	border-color: rgba(232, 141, 151, 0.22);
}

.chip-row .active,
.button--ghost.is-active {
	background: rgba(232, 141, 151, 0.1);
	color: var(--primary-hover);
	border-color: rgba(232, 141, 151, 0.22);
}

.sidebar-newsletter,
.guide-sidebar,
.content-area,
.listing-content {
	display: grid;
	gap: 1.5rem;
}

.stack-form {
	display: grid;
	gap: 0.75rem;
}

.stack-form input,
.filter-panel input:not([type="checkbox"]):not([type="radio"]),
.filter-panel select {
	width: 100%;
	padding: 0.9rem 1rem;
	border: 1px solid var(--border);
	border-radius: 14px;
	background: #fff;
}

.category-strip {
	display: grid;
	gap: 1rem;
}

.guide-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 320px;
	gap: 2rem;
}

.guide-main {
	min-width: 0;
}

.guide-layout--article {
	align-items: start;
}

.guide-header {
	display: grid;
	gap: 1rem;
	margin-bottom: 1.5rem;
}

.guide-header__eyebrow,
.article-meta-list {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.75rem;
}

.guide-header__category {
	font-size: 0.86rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--muted);
}

.article-title {
	margin: 0.5rem 0 0;
	color: var(--heading);
	font-family: "Cormorant Garamond", serif;
	font-size: clamp(1.5rem, 2rem + 2vw, 2.8rem);
	line-height: 0.95;
}

.article-intro,
.article-meta {
	max-width: 44rem;
}

.article-meta-list {
	color: var(--muted);
	font-size: 0.94rem;
}

.article-meta-list span {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
}

.article-meta-list span:not(:last-child)::after {
	content: "";
	width: 4px;
	height: 4px;
	border-radius: 999px;
	background: rgba(140, 129, 123, 0.45);
}

.article-hero {
	margin: 1.75rem 0;
}

.article-hero--split {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 280px;
	gap: 1.25rem;
	align-items: stretch;
}

.article-hero__image {
	position: relative;
	min-height: 460px;
	border-radius: 28px;
	background-size: cover;
	background-position: center;
	overflow: hidden;
}

.article-hero__image--fallback {
	background: linear-gradient(135deg, #ddb7a8 0%, #f4d8ca 42%, #fff5ef 100%);
}

.article-hero__aside {
	display: grid;
	gap: 1rem;
}

.article-stat-grid,
.guide-related-grid {
	display: grid;
	gap: 1rem;
}

.article-stat,
.article-hero__summary,
.guide-related-card {
	padding: 1.25rem;
	border: 1px solid rgba(233, 222, 214, 0.92);
	border-radius: 24px;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 249, 246, 0.98) 100%);
	box-shadow: 0 12px 30px rgba(43, 38, 36, 0.05);
}

.article-stat small,
.guide-related-card small {
	display: block;
	margin-bottom: 0.4rem;
	color: var(--muted);
	font-size: 0.8rem;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.article-stat strong {
	display: block;
	color: var(--heading);
	font-size: 1.05rem;
	line-height: 1.35;
}

.article-hero__summary h2 {
	margin: 0 0 0.65rem;
	font-size: 1.1rem;
}

.article-hero__summary p {
	margin: 0;
}

.article-content {
	max-width: 100%;
	padding: clamp(1.4rem, 1rem + 1vw, 2rem);
	border: 1px solid rgba(233, 222, 214, 0.92);
	border-radius: 28px;
	background: rgba(255, 255, 255, 0.78);
	box-shadow: 0 18px 34px rgba(43, 38, 36, 0.04);
}

.article-content > :first-child {
	margin-top: 0;
}

.article-content > :last-child {
	margin-bottom: 0;
}

.article-content .article-toc {
	margin: 0 0 1.8rem;
	padding: 1.15rem 1.25rem;
	border: 1px solid rgba(233, 222, 214, 0.92);
	border-radius: 22px;
	background: linear-gradient(180deg, rgba(255, 252, 250, 0.98) 0%, rgba(248, 243, 239, 0.92) 100%);
}

.article-content p {
	margin: 0 0 1.2rem;
	font-size: 1.05rem;
	line-height: 1.9;
}

.article-content h2,
.article-content h3,
.article-content h4 {
	margin: 2.2rem 0 0.9rem;
	color: var(--heading);
	font-family: "Cormorant Garamond", serif;
	line-height: 1.05;
}

.article-content h2 {
	font-size: clamp(1.5rem, 1.5rem + 1.2vw, 2.5rem);
}

.article-content h3 {
	font-size: clamp(1.4rem, 1.2rem + 0.9vw, 2.0rem);
}

.article-content h4 {
	font-size: 1.2rem;
}

.article-content ul,
.article-content ol {
	margin: 0 0 1.4rem;
	padding-left: 1.4rem;
}

.article-content li + li {
	margin-top: 0.55rem;
}

.article-content a {
	color: var(--primary-hover);
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 0.18em;
}

.article-content strong {
	color: var(--heading);
}

.article-content blockquote {
	margin: 1.8rem 0;
	padding: 1.4rem 1.5rem;
	border-left: 3px solid rgba(232, 141, 151, 0.7);
	border-radius: 0 22px 22px 0;
	background: rgba(248, 243, 239, 0.85);
	color: var(--heading);
	font-size: 1.05rem;
}

.article-content blockquote p:last-child {
	margin-bottom: 0;
}

.article-content img,
.article-content .wp-block-image img {
	width: 100%;
	height: auto;
	border-radius: 22px;
}

.article-content figure {
	margin: 1.8rem 0;
	max-width: 100%;
}

.article-content figcaption {
	margin-top: 0.75rem;
	color: var(--muted);
	font-size: 0.9rem;
	text-align: center;
}

.article-content table {
	width: 100%;
	border-collapse: collapse;
	margin: 0;
	background: #fff;
}

.article-content th,
.article-content td {
	padding: 0.85rem 1rem;
	border: 1px solid rgba(233, 222, 214, 0.92);
	text-align: left;
}

.article-content th {
	color: var(--heading);
	background: rgba(248, 243, 239, 0.9);
}

.article-table-scroll {
	margin: 1.8rem 0;
	overflow-x: auto;
	overflow-y: hidden;
	border: 1px solid rgba(233, 222, 214, 0.92);
	border-radius: 18px;
	background: #fff;
	-webkit-overflow-scrolling: touch;
}

.article-table-scroll table {
	min-width: 640px;
}

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

.info-feature {
	padding: 1rem;
	border-top: 1px solid rgba(233, 222, 214, 0.92);
}

.article-insight-grid {
	margin-top: 1.75rem;
}

.article-insight-grid .info-feature {
	padding: 1.3rem 1.15rem 0;
	border-top-width: 2px;
}

.article-insight-grid h3 {
	margin: 0 0 0.55rem;
	color: var(--heading);
	font-size: 1rem;
}

.article-insight-grid p {
	margin: 0;
}

.article-section {
	margin-top: 2.5rem;
}

.article-section--related {
	padding-top: 0.5rem;
}

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

.guide-related-card {
	display: grid;
	gap: 1rem;
}

.guide-related-card__media {
	display: block;
	min-height: 200px;
	border-radius: 20px;
	background:
		linear-gradient(180deg, rgba(55, 30, 21, 0.08), rgba(55, 30, 21, 0.2)),
		linear-gradient(135deg, #f0d1c2 0%, #e1b6a8 34%, #f9f0ea 100%);
	background-size: cover;
	background-position: center;
}

.guide-related-card__body {
	display: grid;
	gap: 0.8rem;
}

.guide-related-card__body h3 {
	margin: 0;
	color: var(--heading);
	font-size: 1.22rem;
	line-height: 1.2;
}

.guide-related-card__body p {
	margin: 0;
}

.sidebar-panel--sticky {
	position: sticky;
	top: 104px;
}

.article-toc summary {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	cursor: pointer;
	list-style: none;
	color: var(--heading);
	font-size: 1.05rem;
	font-weight: 700;
}

.article-toc summary::-webkit-details-marker {
	display: none;
}

.article-toc summary::after {
	content: "+";
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	border-radius: 999px;
	border: 1px solid rgba(233, 222, 214, 0.92);
	background: rgba(255, 255, 255, 0.92);
	color: var(--heading);
	font-size: 1rem;
	line-height: 1;
}

.article-toc[open] summary::after {
	content: "−";
}

.article-toc__list {
	display: grid;
	gap: 0.7rem;
	margin: 1rem 0 0;
	padding: 0;
	list-style: none;
}

.article-toc__item a {
	display: block;
	color: var(--heading);
	font-weight: 600;
	line-height: 1.45;
}

.article-cta-panel {
	background:
		linear-gradient(180deg, rgba(255, 250, 247, 0.96) 0%, rgba(249, 239, 234, 0.98) 100%);
}

.mini-list {
	display: grid;
	gap: 0.9rem;
}

.mini-card {
	display: grid;
	grid-template-columns: 72px minmax(0, 1fr);
	gap: 0.8rem;
	align-items: center;
}

.mini-card__thumb {
	position: relative;
	display: block;
	min-height: 72px;
	border-radius: 16px;
	overflow: hidden;
}

.mini-card strong,
.mini-city-card strong {
	display: block;
	color: var(--heading);
	font-size: 0.96rem;
	line-height: 1.35;
}

.mini-card small,
.mini-city-card small {
	display: block;
	margin-top: 0.25rem;
	color: var(--muted);
}

.listing-layout {
	display: grid;
	grid-template-columns: 280px minmax(0, 1fr);
	gap: 1.5rem;
}

.filter-panel form,
.listing-content--rows {
	display: grid;
	gap: 1rem;
}

.filter-group label {
	display: flex;
	margin-top: 0.55rem;
	font-size: 0.96rem;
}

.filter-option {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	margin-top: 0.65rem;
	cursor: pointer;
}

.filter-option input[type="checkbox"],
.filter-option input[type="radio"] {
	flex: 0 0 auto;
	width: 18px;
	height: 18px;
	margin: 0.15rem 0 0;
	padding: 0;
	border-radius: 4px;
	accent-color: var(--primary);
}

.filter-option span {
	display: block;
	line-height: 1.45;
	color: var(--text);
}

.filter-chip {
	display: inline-flex;
	align-items: center;
}

.filter-actions {
	display: grid;
	gap: 0.75rem;
}

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

.button--ghost {
	background: rgba(255, 255, 255, 0.78);
	color: var(--heading);
	border: 1px solid rgba(233, 222, 214, 0.92);
}

.card--listing .card-media {
	min-height: 210px;
}

.salon-list,
.salon-row {
	display: grid;
	gap: 1rem;
}

.salon-row {
	grid-template-columns: 280px minmax(0, 1fr) auto;
	padding: 1rem;
	border: 1px solid rgba(233, 222, 214, 0.92);
	border-radius: 24px;
	background: var(--surface);
	box-shadow: 0 10px 24px rgba(43, 38, 36, 0.04);
	align-items: center;
}

.salon-row__media {
	min-height: 180px;
	border-radius: 20px;
}

.salon-row__content {
	min-width: 0;
}

.salon-row__content h3 {
	margin: 0;
	font-family: "Cormorant Garamond", serif;
	font-size: 2rem;
	color: var(--heading);
	line-height: 1;
}

.salon-row__cta {
	align-self: end;
}

.city-discovery-card {
	display: grid;
	gap: 0.9rem;
}

.city-discovery-card .city-card {
	min-height: 280px;
}

.city-discovery-card p {
	margin: 0;
	padding-inline: 0.25rem;
}

.stat-row {
	margin: 1.5rem 0;
}

.stat-row > div {
	flex: 1 1 120px;
	padding: 1rem 1.1rem;
	border-radius: 18px;
	border: 1px solid rgba(233, 222, 214, 0.92);
	background: rgba(255, 255, 255, 0.66);
	box-shadow: 0 8px 22px rgba(43, 38, 36, 0.04);
}

.stat-row strong {
	display: block;
	color: var(--heading);
	font-size: 1.8rem;
	line-height: 1;
}

.stat-row span {
	display: block;
	margin-top: 0.35rem;
	font-size: 0.9rem;
}

.stat-row--city > div {
	background: rgba(255, 255, 255, 0.92);
}

.neighborhood-card {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	min-height: 220px;
	padding: 1rem;
	border-radius: 24px;
	color: #fff;
	overflow: hidden;
	background-size: cover;
	background-position: center;
}

.neighborhood-card > span {
	position: relative;
	z-index: 1;
}

.neighborhood-card__name {
	font-family: "Cormorant Garamond", serif;
	font-size: 1.7rem;
	line-height: 1;
}

.neighborhood-card__summary {
	font-size: 0.9rem;
}

.neighborhood-1 {
	background: linear-gradient(135deg, #8e695c 0%, #c89f90 50%, #f7e9e2 100%);
}

.neighborhood-2 {
	background: linear-gradient(135deg, #5a564f 0%, #857666 50%, #e2d2c4 100%);
}

.neighborhood-3 {
	background: linear-gradient(135deg, #8a7867 0%, #b7a28e 50%, #efe1d2 100%);
}

.neighborhood-4 {
	background: linear-gradient(135deg, #44505f 0%, #627487 50%, #d7c5b5 100%);
}

.neighborhood-5 {
	background: linear-gradient(135deg, #536b82 0%, #7896b2 50%, #e9d9ca 100%);
}

.mini-city-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.mini-city-card {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	min-height: 140px;
	padding: 1rem;
	border-radius: 18px;
	color: #fff;
	overflow: hidden;
	background-size: cover;
	background-position: center;
	isolation: isolate;
	box-shadow: inset 0 -24px 48px rgba(24, 18, 14, 0.38);
}

.mini-city-card::after {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(180deg, rgba(24, 18, 14, 0.08) 0%, rgba(24, 18, 14, 0.34) 62%, rgba(24, 18, 14, 0.72) 100%),
		linear-gradient(90deg, rgba(24, 18, 14, 0.18) 0%, rgba(24, 18, 14, 0.04) 58%, rgba(24, 18, 14, 0.18) 100%);
	z-index: 0;
}

.mini-city-card > * {
	position: relative;
	z-index: 1;
}

.mini-city-card strong {
	color: #fff;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.28);
}

.mini-city-card small {
	color: rgba(255, 247, 242, 0.86);
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.22);
}

.pagination ul {
	display: flex;
	flex-wrap: wrap;
	gap: 0.65rem;
	align-items: center;
	justify-content: center;
	margin: 1rem 0 0;
	padding: 0;
	list-style: none;
}

.pagination a,
.pagination span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border: 1px solid rgba(233, 222, 214, 0.92);
	background: rgba(255, 255, 255, 0.82);
	color: var(--heading);
}

.pagination .current {
	background: rgba(232, 141, 151, 0.12);
	color: var(--primary-hover);
	border-color: rgba(232, 141, 151, 0.25);
}

.js-salon-results {
	position: relative;
	transition: opacity 0.2s ease;
	height: fit-content;
}

.js-salon-results.is-loading {
	opacity: 0.45;
	pointer-events: none;
	height: fit-content;
}

.empty-state {
	padding: 2rem;
	border: 1px dashed rgba(233, 222, 214, 0.92);
	border-radius: 24px;
	background: rgba(255, 255, 255, 0.7);
}

.empty-state h3 {
	margin: 0 0 0.5rem;
	color: var(--heading);
	font-family: "Cormorant Garamond", serif;
	font-size: 2rem;
}

.salon-detail {
	display: grid;
	gap: 1.25rem;
}

.salon-detail__hero,
.salon-detail__stats,
.salon-detail__location,
.salon-detail__pricing {
	display: grid;
	gap: 1rem;
}

.salon-detail__hero {
	border: 1px solid rgba(233, 222, 214, 0.92);
	border-radius: 32px;
	background: var(--surface);
	padding: 1rem;
	box-shadow: 0 10px 24px rgba(43, 38, 36, 0.04);
}

.salon-detail__gallery {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 220px;
	gap: 1rem;
}

.salon-detail__gallery-main,
.salon-detail__gallery-thumb {
	background-size: cover;
	background-position: center;
	border-radius: 24px;
}

.salon-detail__gallery-main {
	min-height: 470px;
}

.salon-detail__gallery-main--fallback,
.salon-detail__gallery-thumb--fallback {
	background:
		linear-gradient(180deg, rgba(34, 24, 18, 0.08), rgba(34, 24, 18, 0.08)),
		linear-gradient(135deg, #ecd8cb 0%, #dcb39c 46%, #f7eee8 100%);
}

.salon-detail__gallery-side {
	display: grid;
	grid-template-rows: 1fr 1fr;
	gap: 1rem;
}

.salon-detail__gallery-thumb {
	position: relative;
	min-height: 228px;
	overflow: hidden;
}

.salon-detail__gallery-count {
	position: absolute;
	right: 1rem;
	bottom: 1rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 64px;
	min-height: 64px;
	padding: 0.75rem;
	border-radius: 18px;
	background: rgba(32, 22, 18, 0.46);
	color: #fff;
	font-size: 1.2rem;
	font-weight: 800;
}

.salon-detail__header {
	display: flex;
	flex-wrap: wrap;
	align-items: end;
	justify-content: space-between;
	gap: 1rem 1.5rem;
	padding: 0.5rem 0 0.25rem;
}

.salon-detail__title {
	margin: 0.5rem 0 0;
	color: var(--heading);
	font-family: "Cormorant Garamond", serif;
	font-size: clamp(2.8rem, 2rem + 2vw, 3.2rem);
	line-height: 0.96;
}

.salon-detail__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 0.85rem;
	margin: 0.85rem 0 0;
	color: var(--muted);
}

.salon-detail__meta span:not(:first-child)::before {
	content: "•";
	margin-right: 0.85rem;
	color: rgba(140, 129, 123, 0.7);
}

.salon-detail__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
}

.salon-detail__stats {
	grid-template-columns: repeat(5, minmax(0, 1fr));
}

.salon-detail__stat {
	padding: 1.2rem;
	border: 1px solid rgba(233, 222, 214, 0.92);
	border-radius: 24px;
	background: var(--surface);
	box-shadow: 0 10px 24px rgba(43, 38, 36, 0.04);
}

.salon-detail__stat-label,
.salon-detail__insight-title {
	display: block;
	margin-bottom: 0.55rem;
	color: var(--heading);
	font-size: 0.86rem;
	font-weight: 700;
}

.salon-detail__stat strong,
.salon-detail__insight strong {
	display: block;
	color: var(--heading);
	font-size: 1.15rem;
	line-height: 1.3;
}

.salon-detail__stat small {
	display: block;
	margin-top: 0.55rem;
	color: var(--muted);
	font-size: 0.88rem;
}

.salon-detail__section {
	display: grid;
	gap: 1rem;
}

.salon-detail__section h2,
.salon-detail__section h3 {
	margin: 0;
	color: var(--heading);
}

.salon-detail__section h2 {
	font-family: "Cormorant Garamond", serif;
	font-size: clamp(2rem, 1.5rem + 1vw, 2.9rem);
	line-height: 1;
}

.salon-detail__section h3 {
	font-size: 1.12rem;
}

.salon-detail__summary {
	/* max-width: 65ch; */
	margin: 0;
}

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

.salon-detail__list,
.salon-detail__service-list,
.salon-detail__hours {
	display: grid;
	gap: 0.8rem;
	padding: 0;
	margin: 1rem 0 0;
	list-style: none;
}

.salon-detail__list li,
.salon-detail__hours li {
	position: relative;
	padding-left: 1.4rem;
}

.salon-detail__list li::before,
.salon-detail__hours li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.7rem;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: rgba(232, 141, 151, 0.8);
}

.salon-detail__list--positive li::before {
	background: #86b980;
}

.salon-detail__list--neutral li::before {
	background: #f1bb78;
}

.salon-detail__insights {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.salon-detail__insight p {
	margin: 0.55rem 0 0;
	font-size: 0.95rem;
	line-height: 1.55;
}

.salon-detail__insight small {
	display: block;
	margin-top: 0.7rem;
	color: var(--muted);
	font-size: 0.82rem;
}

.salon-detail__pattern-list {
	display: grid;
	gap: 0.85rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.salon-detail__pattern-list li {
	position: relative;
	padding-left: 1.15rem;
	line-height: 1.6;
}

.salon-detail__pattern-list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.72rem;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--primary);
}

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

.salon-detail__signal-cloud span {
	display: inline-flex;
	align-items: center;
	padding: 0.55rem 0.85rem;
	border-radius: 999px;
	border: 1px solid rgba(233, 222, 214, 0.92);
	background: #fff;
	font-size: 0.92rem;
}

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

.salon-detail__comparison-groups {
	display: grid;
	gap: 1.5rem;
}

.salon-detail__comparison-group {
	display: grid;
	gap: 0.9rem;
}

.salon-detail__service-list li {
	display: flex;
	align-items: start;
	justify-content: space-between;
	gap: 1rem;
	padding-bottom: 0.8rem;
	border-bottom: 1px solid rgba(233, 222, 214, 0.7);
}

.salon-detail__service-list li:last-child {
	padding-bottom: 0;
	border-bottom: 0;
}

.salon-detail__service-list strong {
	color: var(--heading);
}

.salon-detail__location {
	grid-template-columns: 320px minmax(0, 1fr);
	align-items: stretch;
}

.salon-detail__address {
	margin: 0;
	color: var(--heading);
	font-weight: 700;
}

.salon-detail__location-note {
	margin: 0.7rem 0 0;
	color: var(--muted);
	font-size: 0.92rem;
}

.salon-detail__map-card {
	padding: 0.2rem;
	border: 1px solid rgba(233, 222, 214, 0.92);
	border-radius: 24px;
	background: var(--surface);
	box-shadow: 0 10px 24px rgba(43, 38, 36, 0.04);
}

.salon-detail__map-visual {
	position: relative;
	min-height: 280px;
	border-radius: 20px;
	background:
		linear-gradient(90deg, rgba(255, 255, 255, 0.82) 0 1px, transparent 1px 48px),
		linear-gradient(rgba(255, 255, 255, 0.82) 0 1px, transparent 1px 48px),
		linear-gradient(135deg, #e7ddd6 0%, #d8c9bf 100%);
	background-size: 48px 48px, 48px 48px, auto;
	overflow: hidden;
}

.salon-detail__map-pin {
	position: absolute;
	left: 62%;
	top: 44%;
	width: 26px;
	height: 26px;
	border-radius: 50% 50% 50% 0;
	background: var(--primary);
	transform: rotate(-45deg);
	box-shadow: 0 10px 20px rgba(232, 141, 151, 0.3);
}

.salon-detail__map-pin::after {
	content: "";
	position: absolute;
	left: 7px;
	top: 7px;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: #fff;
}

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

.salon-detail__instagram-embed {
	padding: 1rem;
	border-radius: 24px;
	border: 1px solid rgba(233, 222, 214, 0.92);
	background: rgba(255, 255, 255, 0.88);
	box-shadow: 0 10px 24px rgba(43, 38, 36, 0.04);
}

.salon-detail__instagram-embed .instagram-media,
.salon-detail__instagram-embed iframe {
	min-width: 100% !important;
	width: 100% !important;
	margin: 0 !important;
}

@media (max-width: 1180px) {
	.card-grid--four,
	.card-grid--cities,
	.card-grid--cities-wide,
	.card-grid--five,
	.info-feature-grid,
	.dual-panel,
	.mini-city-grid,
	.style-card-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.guide-related-grid, .two-panel  {
		grid-template-columns: 1fr;
	}

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

	.guide-layout,
	.layout-with-sidebar,
	.listing-layout,
	.salon-detail__gallery,
	.salon-detail__location {
		grid-template-columns: 1fr;
	}

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

	.salon-detail__insights,
	.salon-detail__pricing,
	.salon-detail__panels,
	.salon-detail__fingerprint,
	.salon-detail__fingerprint-secondary {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 960px) {
	.section-heading {
		flex-direction: column;
		align-items: flex-start;
	}

	.article-hero--split {
		grid-template-columns: 1fr;
	}

	.article-content {
		padding: 1.3rem;
	}

	.sidebar-panel--sticky {
		position: static;
	}

	.feature-banner,
	.newsletter {
		grid-template-columns: 1fr;
	}

	.newsletter--overlay {
		min-height: 280px;
	}

	.site-nav {
		width: 100%;
	}

	.header-search {
		display: none;
	}

	.site-nav__list {
		flex-direction: column;
		align-items: flex-start;
		gap: 0.85rem;
	}

	.site-nav__list > li {
		width: 100%;
	}

	.site-nav__list > li > a {
		width: 100%;
		min-height: 0;
		padding: 0.15rem 0;
	}

	.site-nav__list > li.menu-item-has-children > a {
		padding-right: 1rem;
	}

	.site-nav__list .sub-menu {
		position: static;
		min-width: 0;
		display: grid;
		gap: 0.25rem;
		margin-top: 0.35rem;
		margin-left: 0.85rem;
		padding: 0.15rem 0 0 0.9rem;
		border: 0;
		border-left: 1px solid rgba(233, 222, 214, 0.96);
		border-radius: 0;
		background: transparent;
		box-shadow: none;
		opacity: 1;
		visibility: visible;
		transform: none;
	}

	.site-nav__list .sub-menu a {
		padding: 0.45rem 0;
		border-radius: 0;
		font-size: 0.92rem;
	}

	.site-actions {
		display: none;
	}

	.mobile-header__button {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		width: 42px;
		height: 42px;
		padding: 0;
		border: 1px solid rgba(233, 222, 214, 0.9);
		border-radius: 50%;
		background: rgba(255, 255, 255, 0.84);
		cursor: pointer;
		flex: 0 0 42px;
	}

	.mobile-header__button--menu {
		flex-direction: column;
		gap: 4px;
	}

	.mobile-header__button--menu span {
		display: block;
		width: 16px;
		height: 1.5px;
		background: var(--heading);
		border-radius: 999px;
		transition: transform 0.2s ease, opacity 0.2s ease;
	}

	.site-header.is-menu-open .mobile-header__button--menu span:nth-child(1) {
		transform: translateY(5.5px) rotate(45deg);
	}

	.site-header.is-menu-open .mobile-header__button--menu span:nth-child(2) {
		opacity: 0;
	}

	.site-header.is-menu-open .mobile-header__button--menu span:nth-child(3) {
		transform: translateY(-5.5px) rotate(-45deg);
	}

	.site-header__inner {
		display: grid;
		grid-template-columns: 42px 1fr 42px;
		align-items: center;
		gap: 0.75rem;
		min-height: 74px;
		padding-block: 0.85rem;
	}

	.site-brand {
		justify-self: center;
		text-align: center;
		font-size: clamp(1.9rem, 1.35rem + 2vw, 2.4rem);
	}

	.site-nav {
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		display: none;
		padding: 0 0 1rem;
		background: rgba(255, 253, 252, 0.98);
		border-bottom: 1px solid rgba(233, 222, 214, 0.92);
		box-shadow: 0 20px 30px rgba(43, 38, 36, 0.08);
	}

	.site-nav__list {
		padding: 0 1rem;
	}

	.site-header.is-menu-open .site-nav {
		display: block;
	}

	.mobile-search-panel {
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		padding: 0 0 1rem;
		background: rgba(255, 253, 252, 0.98);
		border-bottom: 1px solid rgba(233, 222, 214, 0.92);
		box-shadow: 0 20px 30px rgba(43, 38, 36, 0.08);
	}

	.mobile-search-panel__form {
		display: grid;
		gap: 0.75rem;
		padding-top: 0.25rem;
	}

	.mobile-search-panel__form input {
		width: 100%;
		padding: 0.95rem 1rem;
		border: 1px solid var(--border);
		border-radius: 14px;
		background: rgba(255, 255, 255, 0.92);
	}

	.site-header.is-search-open .mobile-search-panel {
		display: block;
	}

	.hero__inner {
		grid-template-columns: 1fr;
	}

	.hero__inner--home {
		min-height: 480px;
	}

	.hero__visual {
		min-height: 340px;
	}

	.card-grid--three {
		grid-template-columns: 1fr;
	}

	.style-card-grid {
		grid-template-columns: 1fr;
	}

	.homepage-style-grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}

	.archive-hero,
	.guide-layout,
	.salons-list,
	.salons-row,
	.salons-row--directory,
	.salons-row__content,
	.salon-detail__stats {
		grid-template-columns: 1fr;
	}

	.archive-hero--overlay {
		min-height: 320px;
	}

	.salon-row {
		grid-template-columns: 1fr;
	}

	.salon-detail__gallery-main {
		min-height: 320px;
	}

	.salon-detail__gallery-thumb {
		min-height: 180px;
	}
}

@media (max-width: 680px) {
	.guide-header__eyebrow,
	.article-meta-list {
		gap: 0.55rem;
	}

	.article-title {
		font-size: clamp(1.5rem, 1.9rem + 1.6vw, 2.5rem);
	}

	.article-content {
		padding: 1rem;
		border-radius: 22px;
	}

	.article-table-scroll table {
		min-width: 560px;
	}

	.article-content p,
	.article-content blockquote {
		font-size: 1rem;
	}

	.article-content h2 {
		font-size: 1.5rem;
	}

	.article-content h3 {
		font-size: 1.4rem;
	}

	.guide-related-card,
	.article-stat,
	.article-hero__summary {
		padding: 1rem;
	}

	.site-header__inner {
		min-height: 70px;
		padding-block: 0.8rem;
	}

	.hero h1 {
		max-width: 12ch;
	}

	.hero__inner--home {
		min-height: 420px;
		padding: 1rem;
	}

	.hero__content--overlay {
		padding: 0.5rem;
	}

	.hero-search {
		grid-template-columns: 1fr;
		padding: 0.7rem;
	}

	.hero-search--city-archive {
		max-width: none;
	}

	.hero-search input,
	.hero-search select,
	.button,
	.newsletter__form input {
		width: 100%;
	}

	.hero-search > *:not(:last-child) {
		border-right: 0;
		border-bottom: 1px solid rgba(233, 222, 214, 0.92);
	}

	.hero-search .button {
		margin-left: 0;
		margin-top: 0.35rem;
	}

	.card-grid--four,
	.card-grid--cities,
	.site-footer__grid,
	.card-grid--five,
	.card-grid--cities-wide,
	.info-feature-grid,
	.dual-panel,
	.mini-city-grid, .two-panel  {
		grid-template-columns: 1fr;
	}

	.style-grid {
		justify-content: space-between;
	}

	.style-pill {
		flex: 1 1 28%;
	}

	.homepage-style-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.city-card {
		min-height: 170px;
	}

	.archive-hero__visual,
	.hero__visual,
	.article-hero__image {
		min-height: 260px;
	}

	.archive-hero--overlay {
		min-height: 360px;
	}

	.newsletter--overlay .newsletter__content {
		max-width: 100%;
	}

	.salon-detail__instagram-grid {
		grid-template-columns: 1fr;
	}
}
