:root {
	--color-ink: #201916;
	--color-ink-soft: #514742;
	--color-paper: #f8f4ef;
	--color-surface: #fffdf9;
	--color-soft: #eee3da;
	--color-accent: #964b3b;
	--color-accent-dark: #74372d;
	--color-rose: #815164;
	--color-gold: #b79056;
	--color-line: rgba(32, 25, 22, 0.16);
	--color-line-light: rgba(255, 253, 249, 0.2);
	--shadow-soft: 0 24px 70px rgba(48, 31, 24, 0.13);
	--radius-small: 0.35rem;
	--radius-medium: 0.75rem;
	--site-width: 76rem;
	--gutter: clamp(1.25rem, 4vw, 3.5rem);
	--section-space: clamp(4.5rem, 8vw, 8rem);
	--font-display: Georgia, "Times New Roman", serif;
	--font-body: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--color-paper);
	color: var(--color-ink);
	font-family: var(--font-body);
	font-size: 1rem;
	line-height: 1.7;
	text-rendering: optimizeLegibility;
}

body.menu-open {
	overflow: hidden;
}

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

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

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

button,
a {
	-webkit-tap-highlight-color: transparent;
}

:focus-visible {
	outline: 3px solid #d29a52;
	outline-offset: 4px;
}

h1,
h2,
h3,
p,
blockquote,
figure,
dl,
dd {
	margin-top: 0;
}

h1,
h2,
h3 {
	font-family: var(--font-display);
	font-weight: 400;
	letter-spacing: -0.025em;
	line-height: 1.08;
}

h1 {
	font-size: clamp(3rem, 7vw, 6.5rem);
}

h2 {
	font-size: clamp(2.15rem, 4.2vw, 4rem);
}

h3 {
	font-size: clamp(1.45rem, 2vw, 2rem);
}

p:last-child,
ul:last-child,
dl:last-child {
	margin-bottom: 0;
}

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

.screen-reader-text:focus,
.skip-link:focus {
	top: 1rem;
	left: 1rem;
	z-index: 100000;
	display: block;
	width: auto;
	height: auto;
	padding: 0.75rem 1rem;
	clip: auto !important;
	background: var(--color-surface);
	color: var(--color-ink);
	font-weight: 700;
	white-space: normal;
	box-shadow: var(--shadow-soft);
}

.site-shell {
	width: min(100% - (2 * var(--gutter)), var(--site-width));
	margin-inline: auto;
}

.site-shell--narrow {
	max-width: 52rem;
}

.section {
	padding-block: var(--section-space);
}

.section--paper {
	background: var(--color-surface);
}

.section--soft {
	background: var(--color-soft);
}

.section--dark {
	background: var(--color-ink);
	color: var(--color-surface);
}

.eyebrow {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	margin-bottom: 1rem;
	color: var(--color-accent-dark);
	font-size: 0.76rem;
	font-weight: 750;
	letter-spacing: 0.18em;
	line-height: 1.4;
	text-transform: uppercase;
}

.eyebrow::before {
	width: 2rem;
	height: 1px;
	background: currentColor;
	content: "";
}

.eyebrow--light,
.section--dark .eyebrow {
	color: #e1bd82;
}

.section-heading {
	display: grid;
	grid-template-columns: minmax(0, 1.5fr) minmax(16rem, 0.75fr);
	gap: clamp(2rem, 6vw, 6rem);
	align-items: end;
	margin-bottom: clamp(2.25rem, 5vw, 4rem);
}

.section-heading h2 {
	max-width: 16ch;
	margin-bottom: 0;
}

.section-heading p {
	max-width: 35rem;
	margin-bottom: 0.35rem;
	color: var(--color-ink-soft);
}

.section-heading--light p {
	color: rgba(255, 253, 249, 0.7);
}

.button-row {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	align-items: center;
}

.button {
	display: inline-flex;
	min-height: 3.15rem;
	align-items: center;
	justify-content: center;
	padding: 0.8rem 1.45rem;
	border: 1px solid var(--color-accent);
	border-radius: var(--radius-small);
	background: var(--color-accent);
	color: #fff;
	font-size: 0.8rem;
	font-weight: 750;
	letter-spacing: 0.1em;
	line-height: 1.25;
	text-align: center;
	text-decoration: none;
	text-transform: uppercase;
	cursor: pointer;
	transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.button:hover {
	border-color: var(--color-accent-dark);
	background: var(--color-accent-dark);
	transform: translateY(-2px);
}

.button--outline {
	border-color: currentColor;
	background: transparent;
	color: inherit;
}

.button--outline:hover {
	border-color: var(--color-surface);
	background: var(--color-surface);
	color: var(--color-ink);
}

.button--small {
	min-height: 2.75rem;
	padding-inline: 1.1rem;
	font-size: 0.71rem;
}

.text-link {
	display: inline-flex;
	gap: 0.4rem;
	align-items: center;
	color: var(--color-accent-dark);
	font-size: 0.79rem;
	font-weight: 750;
	letter-spacing: 0.1em;
	text-decoration: none;
	text-transform: uppercase;
}

.text-link span {
	font-size: 1.2em;
	transition: transform 180ms ease;
}

.text-link:hover span {
	transform: translateX(0.25rem);
}

.text-link--light {
	color: #f2d39f;
}

/* Header */
.site-header {
	position: relative;
	z-index: 100;
	background: var(--color-surface);
	box-shadow: 0 1px 0 var(--color-line);
}

.admin-bar .site-header {
	top: 0;
}

.contact-strip {
	background: var(--color-ink);
	color: rgba(255, 253, 249, 0.8);
	font-size: 0.7rem;
	font-weight: 650;
	letter-spacing: 0.075em;
	text-transform: uppercase;
}

.contact-strip__inner {
	display: flex;
	min-height: 2.35rem;
	align-items: center;
	justify-content: center;
	gap: clamp(1rem, 4vw, 3rem);
}

.contact-strip a {
	color: inherit;
	text-decoration: none;
}

.contact-strip a:hover {
	color: #fff;
}

.header-main {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	min-height: 5.75rem;
	align-items: center;
	gap: clamp(1.25rem, 3vw, 3rem);
}

.site-branding {
	min-width: max-content;
}

.custom-logo-link {
	display: block;
}

.custom-logo {
	width: auto;
	max-height: 3.75rem;
}

.wordmark {
	display: inline-flex;
	flex-direction: column;
	color: var(--color-ink);
	text-decoration: none;
}

.wordmark__title {
	font-family: var(--font-display);
	font-size: clamp(1.5rem, 2vw, 2rem);
	letter-spacing: -0.04em;
	line-height: 1;
}

.wordmark__tagline {
	margin-top: 0.45rem;
	color: var(--color-accent-dark);
	font-size: 0.57rem;
	font-weight: 750;
	letter-spacing: 0.16em;
	line-height: 1;
	text-transform: uppercase;
}

.primary-navigation {
	justify-self: center;
}

.primary-menu,
.primary-navigation ul {
	display: flex;
	align-items: center;
	gap: clamp(0.8rem, 1.7vw, 1.55rem);
	padding: 0;
	margin: 0;
	list-style: none;
}

.primary-navigation li {
	position: relative;
}

.primary-navigation a {
	display: block;
	padding-block: 0.75rem;
	font-size: 0.7rem;
	font-weight: 750;
	letter-spacing: 0.075em;
	text-decoration: none;
	text-transform: uppercase;
}

.primary-navigation a::after {
	position: absolute;
	right: 0;
	bottom: 0.5rem;
	left: 0;
	height: 1px;
	background: var(--color-accent);
	content: "";
	transform: scaleX(0);
	transform-origin: right;
	transition: transform 180ms ease;
}

.primary-navigation a:hover::after,
.primary-navigation .current-menu-item > a::after,
.primary-navigation .current_page_item > a::after {
	transform: scaleX(1);
	transform-origin: left;
}

.primary-navigation .sub-menu {
	position: absolute;
	top: 100%;
	left: -1rem;
	display: none;
	width: 14rem;
	align-items: stretch;
	padding: 0.65rem 1rem 0.8rem;
	background: var(--color-surface);
	box-shadow: var(--shadow-soft);
}

.primary-navigation li:hover > .sub-menu,
.primary-navigation li:focus-within > .sub-menu {
	display: block;
}

.menu-toggle {
	display: none;
	width: 3rem;
	height: 3rem;
	align-items: center;
	justify-content: center;
	padding: 0;
	border: 1px solid var(--color-line);
	background: transparent;
	cursor: pointer;
}

.menu-toggle__line {
	position: absolute;
	display: block;
	width: 1.25rem;
	height: 1px;
	background: currentColor;
	transition: transform 180ms ease;
}

.menu-toggle__line:first-child {
	transform: translateY(-0.25rem);
}

.menu-toggle__line:nth-child(2) {
	transform: translateY(0.25rem);
}

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

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

/* Home hero */
.home-hero {
	position: relative;
	display: grid;
	min-height: clamp(39rem, 78vh, 50rem);
	align-items: center;
	overflow: hidden;
	background: var(--color-ink);
	color: var(--color-surface);
}

.home-hero__media,
.home-hero__overlay {
	position: absolute;
	inset: 0;
}

.home-hero__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.home-hero__overlay {
	background:
		linear-gradient(90deg, rgba(24, 17, 14, 0.94) 0%, rgba(24, 17, 14, 0.82) 32%, rgba(24, 17, 14, 0.27) 67%, rgba(24, 17, 14, 0.1) 100%),
		linear-gradient(0deg, rgba(24, 17, 14, 0.26), transparent 45%);
}

.home-hero__inner {
	position: relative;
	z-index: 1;
	padding-block: clamp(5rem, 10vw, 8rem);
}

.home-hero__copy {
	max-width: 50rem;
}

.home-hero h1 {
	max-width: 11ch;
	margin-bottom: 1.4rem;
	text-wrap: balance;
}

.home-hero__lead {
	max-width: 40rem;
	margin-bottom: 2rem;
	color: rgba(255, 253, 249, 0.82);
	font-size: clamp(1.05rem, 1.6vw, 1.3rem);
}

.home-hero .button-row {
	margin-bottom: 2.25rem;
}

.trust-list {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem 1.6rem;
	padding: 0;
	margin: 0;
	color: rgba(255, 253, 249, 0.78);
	font-size: 0.78rem;
	font-weight: 650;
	letter-spacing: 0.04em;
	list-style: none;
}

.trust-list li {
	display: flex;
	align-items: center;
	gap: 0.55rem;
}

.trust-list li::before {
	width: 0.35rem;
	height: 0.35rem;
	border-radius: 50%;
	background: #dfb979;
	content: "";
}

/* Services */
.service-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 1rem;
}

.service-card {
	position: relative;
	display: block;
	min-height: 29rem;
	overflow: hidden;
	background: var(--color-ink);
	color: #fff;
	text-decoration: none;
}

.service-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 600ms cubic-bezier(0.2, 0.65, 0.25, 1);
}

.service-card__shade {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(20, 14, 12, 0.08) 22%, rgba(20, 14, 12, 0.88) 100%);
	transition: background-color 200ms ease;
}

.service-card__number {
	position: absolute;
	top: 1.4rem;
	right: 1.4rem;
	font-family: var(--font-display);
	font-size: 1rem;
}

.service-card__content {
	position: absolute;
	right: 1.4rem;
	bottom: 1.6rem;
	left: 1.4rem;
	display: grid;
	gap: 0.5rem;
}

.service-card__content strong {
	font-family: var(--font-display);
	font-size: clamp(1.6rem, 2.4vw, 2.15rem);
	font-weight: 400;
	line-height: 1.1;
}

.service-card__content > span {
	color: rgba(255, 255, 255, 0.74);
	font-size: 0.85rem;
}

.service-card:hover img {
	transform: scale(1.045);
}

.service-card:hover .service-card__shade {
	background-color: rgba(129, 81, 100, 0.18);
}

/* Editorial sections */
.split-layout {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(18rem, 0.95fr);
	gap: clamp(2.5rem, 7vw, 7rem);
	align-items: center;
}

.split-layout--reverse > :first-child {
	order: 2;
}

.editorial-image {
	position: relative;
}

.editorial-image img {
	width: 100%;
	min-height: 30rem;
	object-fit: cover;
	box-shadow: var(--shadow-soft);
}

.editorial-image--portrait img {
	aspect-ratio: 4 / 5;
}

.editorial-image > p {
	position: absolute;
	right: clamp(-1.5rem, -2vw, -0.5rem);
	bottom: 2rem;
	max-width: 15rem;
	padding: 1.3rem 1.45rem;
	margin: 0;
	background: var(--color-rose);
	color: #fff;
	font-family: var(--font-display);
	font-size: 1.35rem;
	line-height: 1.25;
	box-shadow: var(--shadow-soft);
}

.prose-block {
	max-width: 36rem;
}

.prose-block h2 {
	margin-bottom: 1.6rem;
}

.prose-block p:not(.eyebrow) {
	color: var(--color-ink-soft);
}

.prose-block .text-link {
	margin-top: 1rem;
}

.story-section,
.location-teaser {
	background: var(--color-paper);
}

.location-art {
	display: grid;
	min-height: 32rem;
	place-items: center;
	background:
		linear-gradient(145deg, rgba(32, 25, 22, 0.25), rgba(32, 25, 22, 0.82)),
		url("../images/hero-salon.png") center / cover;
	box-shadow: var(--shadow-soft);
}

.location-art span {
	display: grid;
	width: 9rem;
	height: 9rem;
	place-items: center;
	border: 1px solid rgba(255, 255, 255, 0.55);
	border-radius: 50%;
	color: #fff;
	font-family: var(--font-display);
	font-size: 2.6rem;
	letter-spacing: 0.08em;
}

/* Prices */
.price-columns {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: clamp(2rem, 5vw, 5rem);
}

.price-group h2 {
	padding-bottom: 1rem;
	margin-bottom: 0;
	border-bottom: 1px solid currentColor;
	font-size: clamp(1.7rem, 2.5vw, 2.25rem);
}

.price-list {
	margin: 0;
}

.price-row {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 1.5rem;
	padding-block: 0.95rem;
	border-bottom: 1px solid var(--color-line);
}

.section--dark .price-row {
	border-color: var(--color-line-light);
}

.price-row dt {
	color: inherit;
}

.price-row dd {
	font-weight: 750;
	white-space: nowrap;
}

.price-disclaimer {
	max-width: 52rem;
	padding-left: 1rem;
	margin-top: 2.5rem;
	border-left: 2px solid var(--color-gold);
	color: var(--color-ink-soft);
	font-size: 0.82rem;
}

/* Reviews and gallery preview */
.proof-grid {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(22rem, 1.1fr);
	gap: clamp(3rem, 8vw, 8rem);
	align-items: center;
}

.proof-grid h2 {
	max-width: 12ch;
	margin-bottom: 2rem;
}

.reviews {
	display: grid;
	gap: 1rem;
}

.reviews blockquote {
	padding: 1.3rem 0 1.3rem 1.4rem;
	margin-bottom: 0;
	border-left: 1px solid var(--color-gold);
}

.reviews blockquote p {
	margin-bottom: 0.5rem;
	color: var(--color-ink-soft);
	font-family: var(--font-display);
	font-size: 1.15rem;
	line-height: 1.45;
}

.reviews cite {
	font-size: 0.72rem;
	font-style: normal;
	font-weight: 750;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.stars {
	margin-bottom: 0.35rem;
	color: #8a5e19;
	font-size: 0.75rem;
	letter-spacing: 0.15em;
}

.gallery-preview {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-template-rows: repeat(2, minmax(12rem, 1fr));
	gap: 0.75rem;
}

.gallery-preview a {
	display: block;
	min-height: 0;
	overflow: hidden;
}

.gallery-preview__large {
	grid-row: 1 / span 2;
}

.gallery-preview img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 500ms ease;
}

.gallery-preview a:hover img {
	transform: scale(1.04);
}

.hours-list {
	margin-block: 1.75rem 2rem;
}

.hours-list > div {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 1rem;
	padding-block: 0.6rem;
	border-bottom: 1px solid var(--color-line);
}

.hours-list dd {
	font-weight: 750;
}

/* Interior pages */
.page-hero {
	padding-block: clamp(3rem, 6vw, 6rem);
	overflow: hidden;
	background: var(--color-soft);
}

.page-hero__grid {
	display: grid;
	grid-template-columns: minmax(0, 0.8fr) minmax(24rem, 1.2fr);
	gap: clamp(2.5rem, 7vw, 7rem);
	align-items: center;
}

.page-hero__copy {
	position: relative;
	z-index: 1;
}

.page-hero h1 {
	max-width: 11ch;
	margin-bottom: 1.5rem;
	font-size: clamp(3.1rem, 6.2vw, 5.8rem);
	text-wrap: balance;
}

.page-hero__text {
	max-width: 35rem;
	margin-bottom: 0;
	color: var(--color-ink-soft);
	font-size: clamp(1rem, 1.5vw, 1.2rem);
}

.page-hero__media {
	position: relative;
}

.page-hero__media::before {
	position: absolute;
	top: -2rem;
	right: -2rem;
	width: 52%;
	height: 70%;
	border: 1px solid var(--color-gold);
	content: "";
}

.page-hero__media img {
	position: relative;
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	box-shadow: var(--shadow-soft);
}

.split-copy {
	display: grid;
	grid-template-columns: minmax(0, 0.85fr) minmax(18rem, 1.15fr);
	gap: clamp(2rem, 8vw, 8rem);
}

.split-copy h2 {
	max-width: 13ch;
	margin-bottom: 0;
}

.split-copy > div:last-child {
	color: var(--color-ink-soft);
	font-size: clamp(1.05rem, 1.5vw, 1.25rem);
}

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

.three-steps article,
.values-grid article {
	min-height: 18rem;
	padding: clamp(1.5rem, 3vw, 2.5rem);
	border: 1px solid var(--color-line);
	background: var(--color-surface);
}

.three-steps article > span,
.values-grid article > span {
	display: inline-block;
	margin-bottom: 4rem;
	color: var(--color-accent-dark);
	font-family: var(--font-display);
	font-size: 1.15rem;
}

.three-steps h2,
.values-grid h2 {
	margin-bottom: 0.75rem;
	font-size: 2rem;
}

.three-steps p,
.values-grid p {
	color: var(--color-ink-soft);
}

.gallery-grid {
	display: grid;
	grid-auto-flow: dense;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1rem;
}

.gallery-item {
	position: relative;
	margin: 0;
	overflow: hidden;
}

.gallery-item--wide {
	grid-column: span 2;
}

.gallery-item img {
	width: 100%;
	height: 25rem;
	object-fit: cover;
	transition: transform 500ms ease;
}

.gallery-item--wide img {
	height: 32rem;
}

.gallery-item figcaption {
	position: absolute;
	right: 0.75rem;
	bottom: 0.75rem;
	left: 0.75rem;
	padding: 0.8rem 1rem;
	background: rgba(32, 25, 22, 0.86);
	color: #fff;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.gallery-item:hover img {
	transform: scale(1.035);
}

/* Contact and map consent */
.contact-grid {
	display: grid;
	grid-template-columns: minmax(18rem, 0.8fr) minmax(24rem, 1.2fr);
	gap: clamp(3rem, 8vw, 8rem);
}

.contact-details address {
	margin-bottom: 2rem;
	font-size: 1.05rem;
	font-style: normal;
}

.contact-actions {
	padding: 0;
	margin: 0 0 3rem;
	list-style: none;
}

.contact-actions li {
	display: grid;
	grid-template-columns: 7rem minmax(0, 1fr);
	gap: 1rem;
	padding-block: 0.8rem;
	border-bottom: 1px solid var(--color-line);
}

.contact-actions span {
	color: var(--color-ink-soft);
	font-size: 0.73rem;
	font-weight: 750;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.contact-actions a {
	font-weight: 700;
	overflow-wrap: anywhere;
}

.contact-subheading {
	font-size: 2rem;
}

.consent-map {
	display: grid;
	min-height: 35rem;
	overflow: hidden;
	place-items: stretch;
	background: #d9cbc0;
	box-shadow: var(--shadow-soft);
}

.consent-map iframe {
	width: 100%;
	height: 100%;
	min-height: 35rem;
	border: 0;
}

.consent-map__placeholder {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: clamp(2rem, 6vw, 5rem);
	background:
		radial-gradient(circle at 25% 20%, rgba(255, 255, 255, 0.5), transparent 35%),
		linear-gradient(145deg, #e5d9cf, #c9b4a5);
	text-align: center;
}

.consent-map__placeholder h2 {
	margin-bottom: 1rem;
	font-size: 2.25rem;
}

.consent-map__placeholder p {
	max-width: 31rem;
	color: var(--color-ink-soft);
}

.consent-map__placeholder .button {
	margin-block: 0.5rem 1rem;
}

.map-mark {
	position: relative;
	display: grid;
	width: 5.75rem;
	height: 5.75rem;
	place-items: center;
	margin-bottom: 1.5rem;
	border: 1px solid var(--color-accent-dark);
	border-radius: 50%;
	color: var(--color-accent-dark);
	font-family: var(--font-display);
	font-size: 1.5rem;
}

.map-mark::after {
	position: absolute;
	bottom: -0.7rem;
	width: 1px;
	height: 0.7rem;
	background: var(--color-accent-dark);
	content: "";
}

/* CTA */
.appointment-cta {
	padding-block: clamp(3.25rem, 6vw, 5.5rem);
	background: var(--color-rose);
	color: #fff;
}

.appointment-cta__inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 2rem;
	align-items: center;
}

.appointment-cta .eyebrow {
	color: #f2d39f;
}

.appointment-cta h2 {
	margin-bottom: 0.65rem;
	font-size: clamp(2.2rem, 4vw, 3.8rem);
}

.appointment-cta p:not(.eyebrow) {
	margin-bottom: 0;
	color: rgba(255, 255, 255, 0.76);
}

.appointment-cta .button {
	border-color: #fff;
	background: #fff;
	color: var(--color-ink);
}

.appointment-cta .button--outline {
	background: transparent;
	color: #fff;
}

.appointment-cta .button:hover {
	border-color: var(--color-ink);
	background: var(--color-ink);
	color: #fff;
}

/* Generic and legal content */
.site-main > .section:first-child:not(.section--paper):not(.section--soft):not(.section--dark) {
	min-height: 55vh;
}

.site-shell--narrow > article,
.legal-page .site-shell--narrow {
	font-size: 1.04rem;
}

.site-shell--narrow article > h1,
.error-page h1 {
	font-size: clamp(2.8rem, 6vw, 5rem);
}

.site-shell--narrow article > * + * {
	margin-top: 1.25rem;
}

.post-card {
	padding-block: 2rem;
	border-bottom: 1px solid var(--color-line);
}

.post-card h2 {
	margin-bottom: 0.75rem;
	font-size: clamp(1.8rem, 3vw, 2.65rem);
}

.post-card h2 a {
	text-decoration: none;
}

.post-card h2 a:hover {
	color: var(--color-accent-dark);
}

.nav-links {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin-top: 2rem;
}

.nav-links .page-numbers {
	display: grid;
	min-width: 2.7rem;
	height: 2.7rem;
	place-items: center;
	border: 1px solid var(--color-line);
	text-decoration: none;
}

.nav-links .current,
.nav-links a:hover {
	border-color: var(--color-ink);
	background: var(--color-ink);
	color: #fff;
}

.site-shell--narrow article ul,
.site-shell--narrow article ol {
	padding-left: 1.4rem;
}

.editor-notice {
	padding: 1.5rem;
	border-left: 3px solid var(--color-gold);
	background: var(--color-soft);
}

.error-page {
	display: grid;
	min-height: 62vh;
	align-items: center;
}

/* Modern price experience */
.price-experience {
	background: var(--color-soft);
}

.price-intro {
	padding-block: clamp(5rem, 10vw, 8.5rem);
	border-bottom: 1px solid rgba(57, 43, 37, 0.08);
	background:
		radial-gradient(circle at 50% 0%, rgba(183, 144, 86, 0.12), transparent 28rem),
		var(--color-paper);
	text-align: center;
}

.price-intro__inner {
	display: grid;
	justify-items: center;
}

.price-intro .eyebrow {
	justify-content: center;
}

.price-intro h1 {
	max-width: 14ch;
	margin: 0 auto 1.35rem;
	font-size: clamp(3.25rem, 7vw, 6.25rem);
}

.price-intro__lead {
	max-width: 47rem;
	margin-inline: auto;
	color: var(--color-ink-soft);
	font-size: clamp(1.05rem, 1.7vw, 1.2rem);
}

.price-intro__facts {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.65rem 1.5rem;
	padding: 0;
	margin: 1.5rem 0 0;
	color: var(--color-ink);
	font-size: 0.78rem;
	font-weight: 750;
	letter-spacing: 0.06em;
	list-style: none;
	text-transform: uppercase;
}

.price-intro__facts li {
	display: flex;
	gap: 0.55rem;
	align-items: center;
}

.price-intro__facts li::before {
	width: 0.35rem;
	height: 0.35rem;
	border-radius: 50%;
	background: var(--color-gold);
	content: "";
}

.price-menu {
	padding-block: var(--section-space);
	background: var(--color-soft);
}

.price-menu__shell {
	max-width: 76rem;
}

.price-menu__heading {
	max-width: 48rem;
	margin: 0 auto 1.75rem;
	text-align: center;
}

.price-menu__heading .eyebrow {
	justify-content: center;
}

.price-menu__heading h2 {
	margin-bottom: 1rem;
	font-size: clamp(2.5rem, 5vw, 4.5rem);
}

.price-menu__heading > p:last-child {
	max-width: 42rem;
	margin-inline: auto;
	color: var(--color-ink-soft);
}

.price-menu__nav {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.6rem;
	margin-bottom: clamp(2.5rem, 6vw, 4.5rem);
}

.price-menu__nav a {
	padding: 0.7rem 1rem;
	border: 1px solid var(--color-line);
	border-radius: 999px;
	background: var(--color-surface);
	font-size: 0.76rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-decoration: none;
	text-transform: uppercase;
	transition: border-color 180ms ease, background-color 180ms ease, color 180ms ease;
}

.price-menu__nav a:hover,
.price-menu__nav a:focus-visible {
	border-color: var(--color-accent-dark);
	background: var(--color-accent-dark);
	color: #fff;
}

.price-menu__categories {
	display: grid;
	gap: clamp(1.5rem, 4vw, 2.5rem);
}

.price-menu__category {
	scroll-margin-top: 8rem;
	overflow: hidden;
	border: 1px solid rgba(57, 43, 37, 0.1);
	border-radius: 1.5rem;
	background: var(--color-surface);
	box-shadow: 0 1.5rem 4rem rgba(57, 43, 37, 0.07);
}

.price-menu__category-header {
	display: flex;
	justify-content: space-between;
	gap: 1.5rem;
	align-items: center;
	padding: clamp(1.5rem, 4vw, 2.5rem);
	border-bottom: 1px solid var(--color-line);
	background: linear-gradient(135deg, rgba(183, 144, 86, 0.1), rgba(255, 255, 255, 0));
}

.price-menu__category-title {
	display: flex;
	gap: 1rem;
	align-items: flex-start;
}

.price-menu__index {
	display: grid;
	flex: 0 0 auto;
	width: 2.4rem;
	height: 2.4rem;
	place-items: center;
	border-radius: 50%;
	background: var(--color-accent-dark);
	color: #fff;
	font-size: 0.68rem;
	font-weight: 800;
	letter-spacing: 0.08em;
}

.price-menu__category-header h3 {
	margin-bottom: 0.35rem;
	color: var(--color-accent-dark);
	font-size: clamp(2rem, 4vw, 3rem);
}

.price-menu__category-header p {
	margin: 0;
	color: var(--color-ink-soft);
	font-size: 0.86rem;
}

.price-menu__count {
	flex: 0 0 auto;
	padding: 0.45rem 0.75rem;
	border-radius: 999px;
	background: rgba(151, 80, 59, 0.08);
	color: var(--color-accent-dark);
	font-size: 0.72rem;
	font-weight: 750;
	letter-spacing: 0.04em;
}

.price-menu__list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	margin: 0;
}

.price-menu__row {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 1rem;
	align-items: center;
	min-height: 4.4rem;
	padding: 0.9rem clamp(1.25rem, 3vw, 2rem);
	border-bottom: 1px solid var(--color-line);
}

.price-menu__row:nth-child(odd) {
	border-right: 1px solid var(--color-line);
}

.price-menu__row dt {
	color: var(--color-ink);
	font-size: 0.92rem;
	line-height: 1.45;
}

.price-menu__row dd {
	margin: 0;
	white-space: nowrap;
}

.price-menu__amount {
	display: inline-flex;
	padding: 0.42rem 0.7rem;
	border-radius: 999px;
	background: rgba(151, 80, 59, 0.09);
	color: var(--color-accent-dark);
	font-size: 0.82rem;
	font-weight: 800;
}

.price-menu__footnote {
	max-width: 50rem;
	margin: 2rem auto 0;
	color: var(--color-ink-soft);
	font-size: 0.86rem;
	text-align: center;
}

.price-disclaimer--modern {
	max-width: 50rem;
	margin: 2rem auto clamp(3rem, 6vw, 5rem);
	color: var(--color-ink-soft);
	font-size: 0.82rem;
	text-align: center;
}

/* Elementor starter widgets */
.haarstudio-elementor-root,
.haarstudio-elementor-root.e-con {
	max-width: none;
	padding: 0;
	gap: 0;
}

.haarstudio-elementor-root > .e-con-inner {
	max-width: none;
	padding: 0;
	gap: 0;
}

.haarstudio-elementor-root > .elementor-widget,
.haarstudio-elementor-root > .elementor-widget > .elementor-widget-container {
	width: 100%;
	margin: 0;
}

.hb-elementor-page {
	background: var(--color-paper);
}

.hb-elementor-hero {
	position: relative;
	padding-block: clamp(4rem, 8vw, 7rem);
	background: var(--color-surface);
}

.hb-elementor-hero__grid,
.hb-editorial-section__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: clamp(2rem, 7vw, 6rem);
	align-items: center;
}

.hb-elementor-hero__copy h1 {
	margin-bottom: 1.5rem;
	font-size: clamp(3.2rem, 6vw, 6rem);
}

.hb-elementor-hero__actions {
	margin-top: 2rem;
}

.hb-elementor-hero__lead {
	max-width: 39rem;
	color: var(--color-ink-soft);
	font-size: 1.12rem;
}

.hb-elementor-hero__image {
	margin: 0;
}

.hb-elementor-hero__image img {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	box-shadow: var(--shadow-soft);
}

.hb-elementor-page--home .hb-elementor-hero {
	display: grid;
	min-height: clamp(43rem, 82vh, 56rem);
	align-items: center;
	padding-block: 0;
	overflow: hidden;
	background: #18110e;
	color: #fff;
}

.hb-elementor-page--home .hb-elementor-hero__grid {
	display: grid;
	grid-template-columns: minmax(0, 48rem);
	min-height: inherit;
	align-items: center;
	padding-block: clamp(5rem, 10vw, 8rem);
}

.hb-elementor-page--home .hb-elementor-hero__copy {
	position: relative;
	z-index: 2;
}

.hb-elementor-page--home .hb-elementor-hero__copy h1 {
	max-width: 11ch;
	color: #fff;
	font-size: clamp(3.7rem, 7vw, 7rem);
	text-wrap: balance;
}

.hb-elementor-page--home .hb-elementor-hero__copy .eyebrow,
.hb-elementor-page--home .hb-elementor-hero__lead {
	color: rgba(255, 255, 255, 0.82);
}

.hb-elementor-page--home .hb-elementor-hero__lead {
	max-width: 40rem;
	font-size: clamp(1.05rem, 1.7vw, 1.3rem);
}

.hb-elementor-page--home .hb-elementor-hero__image {
	position: absolute;
	inset: 0;
	margin: 0;
}

.hb-elementor-page--home .hb-elementor-hero__image::after {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(90deg, rgba(20, 13, 10, 0.94) 0%, rgba(20, 13, 10, 0.82) 34%, rgba(20, 13, 10, 0.28) 68%, rgba(20, 13, 10, 0.08) 100%),
		linear-gradient(0deg, rgba(20, 13, 10, 0.36), transparent 52%);
	content: "";
}

.hb-elementor-page--home .hb-elementor-hero__image img {
	height: 100%;
	aspect-ratio: auto;
	object-fit: cover;
	object-position: center;
	box-shadow: none;
}

.hb-elementor-page--home .hb-elementor-hero .button--outline {
	border-color: rgba(255, 255, 255, 0.72);
	color: #fff;
}

.hb-elementor-page--home .hb-elementor-hero .button--outline:hover,
.hb-elementor-page--home .hb-elementor-hero .button--outline:focus-visible {
	border-color: #fff;
	background: #fff;
	color: var(--color-ink);
}

.hb-editorial-section,
.hb-elementor-long-text,
.hb-elementor-gallery {
	padding-block: var(--section-space);
	background: var(--color-surface);
}

.hb-editorial-section--soft {
	background: var(--color-soft);
}

.hb-editorial-section__content {
	color: var(--color-ink-soft);
	font-size: 1.05rem;
}

.hb-editorial-section__copy h2 {
	margin-bottom: 1.25rem;
}

.hb-editorial-section__image {
	margin: 0;
}

.hb-editorial-section__image img {
	width: 100%;
	min-height: 31rem;
	aspect-ratio: 5 / 4;
	object-fit: cover;
	box-shadow: var(--shadow-soft);
}

.hb-editorial-cards {
	padding-block: clamp(3.5rem, 7vw, 6rem);
	background: var(--color-ink);
	color: #fff;
}

.hb-editorial-cards__grid {
	display: grid;
	grid-template-columns: repeat(12, minmax(0, 1fr));
	gap: clamp(0.8rem, 1.6vw, 1.25rem);
}

.hb-editorial-card {
	position: relative;
	grid-column: span 6;
	display: block;
	min-height: clamp(20rem, 31vw, 27rem);
	padding: clamp(1.5rem, 3vw, 2.4rem);
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.16);
	background: var(--color-ink);
	color: #fff;
	isolation: isolate;
	text-decoration: none;
	transition: border-color 220ms ease, transform 220ms ease;
}

.hb-editorial-card:nth-child(4n + 1),
.hb-editorial-card:nth-child(4n + 4) {
	grid-column: span 7;
}

.hb-editorial-card:nth-child(4n + 2),
.hb-editorial-card:nth-child(4n + 3) {
	grid-column: span 5;
}

.hb-editorial-card:hover {
	border-color: rgba(242, 211, 159, 0.72);
	transform: translateY(-4px);
}

.hb-editorial-card__content {
	position: relative;
	z-index: 2;
}

.hb-editorial-card h2 {
	margin-bottom: 0.65rem;
	font-size: clamp(2rem, 3.5vw, 3.1rem);
}

.hb-editorial-card p {
	max-width: 32rem;
	margin-bottom: 0;
	color: rgba(255, 255, 255, 0.7);
	font-size: 0.95rem;
}

.hb-editorial-card--media {
	display: flex;
	align-items: stretch;
	padding: 0;
}

.hb-editorial-card--media > img,
.hb-editorial-card__shade {
	position: absolute;
	inset: 0;
}

.hb-editorial-card--media > img {
	width: 100%;
	height: 100% !important;
	max-width: none;
	object-fit: cover;
	transition: transform 550ms cubic-bezier(0.2, 0.65, 0.25, 1);
}

.hb-editorial-card__shade {
	background: linear-gradient(180deg, rgba(18, 12, 10, 0.06) 22%, rgba(18, 12, 10, 0.95) 100%);
}

.hb-editorial-card--media .hb-editorial-card__content {
	display: flex;
	flex: 1;
	flex-direction: column;
	justify-content: flex-end;
	width: 100%;
	padding: clamp(1.6rem, 3vw, 2.5rem);
}

.hb-editorial-card__arrow {
	position: absolute;
	z-index: 3;
	top: 1.35rem;
	right: 1.35rem;
	display: grid;
	width: 2.75rem;
	height: 2.75rem;
	place-items: center;
	border: 1px solid rgba(255, 255, 255, 0.64);
	border-radius: 50%;
	color: #fff;
	font-size: 1.15rem;
}

.hb-editorial-card--media:hover > img,
.hb-editorial-card--media:focus-visible > img {
	transform: scale(1.045);
}

.hb-editorial-card--media:focus-visible {
	outline: 3px solid var(--color-gold);
	outline-offset: -3px;
}

.hb-elementor-gallery {
	background: var(--color-soft);
}

.hb-elementor-gallery__heading {
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(18rem, 0.85fr);
	gap: 1rem clamp(2rem, 7vw, 6rem);
	align-items: end;
	margin-bottom: clamp(2rem, 5vw, 3.75rem);
}

.hb-elementor-gallery__heading .eyebrow {
	grid-column: 1 / -1;
	margin-bottom: 0;
}

.hb-elementor-gallery__heading h2,
.hb-elementor-gallery__heading > p:last-child {
	margin-bottom: 0;
}

.hb-elementor-gallery__heading > p:last-child {
	color: var(--color-ink-soft);
}

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

.hb-elementor-gallery figure {
	margin: 0;
}

.hb-elementor-gallery img {
	width: 100%;
	aspect-ratio: 4 / 5;
	object-fit: cover;
}

.hb-elementor-gallery figcaption {
	padding-top: 0.65rem;
	color: var(--color-ink-soft);
	font-size: 0.82rem;
}

.hb-elementor-page--home .hb-elementor-gallery__grid {
	grid-template-columns: minmax(0, 1.25fr) repeat(2, minmax(0, 0.875fr));
	gap: clamp(0.65rem, 1.5vw, 1.25rem);
}

.hb-elementor-page--home .hb-elementor-gallery figure {
	display: grid;
	grid-template-rows: 1fr auto;
}

.hb-elementor-page--home .hb-elementor-gallery img {
	height: 100%;
	min-height: 26rem;
	aspect-ratio: 4 / 5;
}

/* Privacy-gated Instagram profile */
.instagram-profile {
	padding-block: var(--section-space);
	background: #191310;
	color: #fff;
}

.instagram-profile__inner {
	display: grid;
	grid-template-columns: minmax(0, 0.8fr) minmax(22rem, 1.2fr);
	gap: clamp(2rem, 7vw, 6rem);
	align-items: center;
}

.instagram-profile__copy {
	max-width: 32rem;
}

.instagram-profile__copy h2 {
	margin-bottom: 1.25rem;
	color: #fff;
}

.instagram-profile__copy > p:not(.eyebrow) {
	color: rgba(255, 255, 255, 0.72);
}

.instagram-profile__copy .text-link {
	margin-top: 1.25rem;
	color: #fff;
}

.instagram-consent {
	display: grid;
	min-height: 34rem;
	place-items: center;
	padding: clamp(1.25rem, 4vw, 2.5rem);
	border: 1px solid rgba(255, 255, 255, 0.18);
	background:
		linear-gradient(rgba(25, 19, 16, 0.54), rgba(25, 19, 16, 0.76)),
		url("../images/team-salon.jpg") center / cover;
	box-shadow: var(--shadow-soft);
}

.instagram-consent__placeholder {
	max-width: 30rem;
	padding: clamp(1.75rem, 4vw, 3rem);
	border: 1px solid rgba(255, 255, 255, 0.2);
	background: rgba(25, 19, 16, 0.86);
	text-align: center;
	backdrop-filter: blur(8px);
}

.instagram-consent__mark {
	display: grid;
	width: 4rem;
	height: 4rem;
	margin: 0 auto 1.25rem;
	place-items: center;
	border: 1px solid rgba(255, 255, 255, 0.56);
	border-radius: 50%;
	font-family: var(--font-display);
	font-size: 2rem;
}

.instagram-consent__placeholder p {
	margin-bottom: 1.5rem;
	color: rgba(255, 255, 255, 0.76);
}

.instagram-consent iframe {
	width: 100%;
	min-height: 34rem;
	border: 0;
	background: #fff;
}

.hb-elementor-long-text .entry-content > * + * {
	margin-top: 1.25rem;
}

.hb-elementor-long-text .entry-content > h2 {
	margin-top: 2.5rem;
	font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.hb-elementor-cta {
	padding-block: clamp(3.5rem, 7vw, 6rem);
	background: var(--color-accent-dark);
	color: #fff;
}

.hb-elementor-cta__inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 2rem;
	align-items: center;
}

.hb-elementor-cta h2 {
	max-width: 18ch;
	margin-bottom: 0.65rem;
	font-size: clamp(2.2rem, 4vw, 3.8rem);
}

.hb-elementor-cta p:not(.eyebrow) {
	margin-bottom: 0;
	color: rgba(255, 255, 255, 0.78);
}

.hb-elementor-cta .button {
	border-color: #fff;
	background: #fff;
	color: var(--color-ink);
}

/* Footer */
.site-footer {
	padding-top: clamp(4rem, 7vw, 6rem);
	background: #191310;
	color: rgba(255, 253, 249, 0.72);
}

.footer-grid {
	display: grid;
	grid-template-columns: minmax(15rem, 1.7fr) repeat(3, minmax(9rem, 1fr));
	gap: clamp(2rem, 5vw, 5rem);
	padding-bottom: 4rem;
}

.footer-brand {
	max-width: 23rem;
}

.footer-brand__name {
	margin-bottom: 1.1rem;
	color: #fff;
	font-family: var(--font-display);
	font-size: 2rem;
	line-height: 1;
}

.footer-heading {
	margin-bottom: 1.2rem;
	color: #fff;
	font-family: var(--font-body);
	font-size: 0.73rem;
	font-weight: 750;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.footer-links {
	display: grid;
	gap: 0.65rem;
	padding: 0;
	margin: 0;
	font-size: 0.88rem;
	list-style: none;
}

.footer-links a,
.social-links a {
	color: inherit;
	text-decoration: none;
}

.footer-links a:hover,
.social-links a:hover {
	color: #fff;
}

.footer-bottom {
	display: flex;
	min-height: 4.75rem;
	align-items: center;
	justify-content: space-between;
	gap: 2rem;
	border-top: 1px solid rgba(255, 255, 255, 0.14);
	font-size: 0.72rem;
	letter-spacing: 0.04em;
}

.social-links {
	display: flex;
	gap: 1.5rem;
}

.floating-actions {
	position: fixed;
	right: max(1rem, env(safe-area-inset-right));
	bottom: max(1rem, env(safe-area-inset-bottom));
	z-index: 90;
	display: grid;
	gap: 0.6rem;
}

.floating-action {
	display: grid;
	width: 3.2rem;
	height: 3.2rem;
	place-items: center;
	border-radius: 50%;
	background: var(--color-accent-dark);
	color: #fff;
	font-size: 0.82rem;
	font-weight: 800;
	text-decoration: none;
	box-shadow: 0 0.75rem 2rem rgba(32, 25, 22, 0.25);
	transition: transform 180ms ease, background-color 180ms ease;
}

.floating-action:hover {
	background: var(--color-ink);
	transform: translateY(-2px);
}

.floating-action--whatsapp {
	background: #176c44;
}

@media (max-width: 68rem) {
	.hb-editorial-cards__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.hb-editorial-card,
	.hb-editorial-card:nth-child(4n + 1),
	.hb-editorial-card:nth-child(4n + 2),
	.hb-editorial-card:nth-child(4n + 3),
	.hb-editorial-card:nth-child(4n + 4) {
		grid-column: auto;
	}

	.header-main {
		grid-template-columns: auto 1fr auto;
	}

	.menu-toggle {
		position: relative;
		z-index: 2;
		display: inline-flex;
		justify-self: end;
	}

	.site-branding {
		position: relative;
		z-index: 2;
	}

	.header-call {
		display: none;
	}

	.primary-navigation {
		position: fixed;
		top: 0;
		right: 0;
		bottom: 0;
		z-index: 1;
		display: flex;
		width: min(28rem, 90vw);
		align-items: center;
		padding: 8rem 2rem 3rem;
		background: var(--color-surface);
		box-shadow: var(--shadow-soft);
		opacity: 0;
		visibility: hidden;
		transform: translateX(100%);
		transition: opacity 220ms ease, visibility 220ms ease, transform 220ms ease;
	}

	.primary-navigation.is-open {
		opacity: 1;
		visibility: visible;
		transform: translateX(0);
	}

	.primary-menu,
	.primary-navigation ul {
		display: grid;
		width: 100%;
		gap: 0;
	}

	.primary-navigation a {
		padding-block: 0.8rem;
		font-family: var(--font-display);
		font-size: 1.75rem;
		font-weight: 400;
		letter-spacing: -0.02em;
		text-transform: none;
	}

	.primary-navigation a::after {
		display: none;
	}

	.primary-navigation .sub-menu {
		position: static;
		display: grid;
		width: auto;
		padding: 0 0 0 1rem;
		box-shadow: none;
	}

	.primary-navigation .sub-menu a {
		font-family: var(--font-body);
		font-size: 0.9rem;
	}

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

	.service-card {
		min-height: 31rem;
	}

	.footer-grid {
		grid-template-columns: 1.5fr repeat(3, 1fr);
		gap: 2rem;
	}
}

@media (max-width: 52rem) {
	:root {
		--section-space: clamp(4rem, 11vw, 6rem);
	}

	.contact-strip__inner span,
	.contact-strip__inner a:last-child {
		display: none;
	}

	.section-heading,
	.split-layout,
	.page-hero__grid,
	.split-copy,
	.proof-grid,
	.contact-grid,
	.appointment-cta__inner,
	.hb-elementor-hero__grid,
	.hb-editorial-section__grid,
	.hb-elementor-cta__inner {
		grid-template-columns: 1fr;
	}

	.price-menu__list {
		grid-template-columns: 1fr;
	}

	.price-menu__row:nth-child(odd) {
		border-right: 0;
	}

	.hb-elementor-cta__inner {
		align-items: start;
	}

	.instagram-profile__inner {
		grid-template-columns: 1fr;
	}

	.hb-elementor-gallery__heading {
		grid-template-columns: 1fr;
		align-items: start;
	}

	.hb-elementor-page--home .hb-elementor-gallery__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.hb-elementor-page--home .hb-elementor-gallery figure:first-child {
		grid-column: 1 / -1;
	}

	.hb-elementor-page--home .hb-elementor-gallery figure:first-child img {
		max-height: 34rem;
		aspect-ratio: 16 / 9;
	}

	.section-heading {
		gap: 1rem;
	}

	.split-layout--reverse > :first-child {
		order: 0;
	}

	.editorial-image img,
	.location-art {
		min-height: 27rem;
	}

	.page-hero__copy {
		padding-top: 1rem;
	}

	.page-hero__media {
		width: calc(100% - 1.5rem);
	}

	.price-columns {
		gap: 3.5rem;
	}

	.appointment-cta__inner {
		gap: 1.5rem;
	}

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

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

	.footer-brand {
		grid-column: 1 / -1;
	}
}

@media (max-width: 38rem) {
	:root {
		--gutter: 1.15rem;
	}

	h1 {
		font-size: clamp(2.75rem, 14vw, 4.1rem);
	}

	h2 {
		font-size: clamp(2rem, 10vw, 3rem);
	}

	.header-main {
		min-height: 4.9rem;
	}

	.wordmark__tagline {
		letter-spacing: 0.1em;
	}

	.home-hero {
		min-height: 42rem;
		align-items: end;
	}

	.home-hero__media img {
		object-position: 61% center;
	}

	.home-hero__overlay {
		background: linear-gradient(0deg, rgba(24, 17, 14, 0.96) 0%, rgba(24, 17, 14, 0.82) 56%, rgba(24, 17, 14, 0.2) 100%);
	}

	.home-hero__inner {
		padding-block: 7rem 3.25rem;
	}

	.home-hero .button-row,
	.home-hero .button {
		width: 100%;
	}

	.hb-elementor-page--home .hb-elementor-hero {
		min-height: 43rem;
		align-items: end;
	}

	.hb-elementor-page--home .hb-elementor-hero__grid {
		align-items: end;
		padding-block: 7rem 3.25rem;
	}

	.hb-elementor-page--home .hb-elementor-hero__copy h1 {
		font-size: clamp(3rem, 14vw, 4.5rem);
	}

	.hb-elementor-page--home .hb-elementor-hero__image::after {
		background: linear-gradient(0deg, rgba(20, 13, 10, 0.97) 0%, rgba(20, 13, 10, 0.82) 58%, rgba(20, 13, 10, 0.18) 100%);
	}

	.hb-elementor-page--home .hb-elementor-hero__image img {
		object-position: 66% center;
	}

	.hb-elementor-page--home .hb-elementor-hero__actions {
		align-items: stretch;
		flex-direction: column;
	}

	.hb-elementor-page--home .hb-elementor-hero__actions .button {
		width: 100%;
	}

	.trust-list {
		display: grid;
	}

	.service-grid,
	.price-columns,
	.three-steps,
	.values-grid,
	.gallery-grid,
	.hb-editorial-cards__grid,
	.hb-elementor-gallery__grid {
		grid-template-columns: 1fr;
	}

	.hb-elementor-page--home .hb-elementor-gallery__grid {
		grid-template-columns: 1fr;
	}

	.hb-elementor-page--home .hb-elementor-gallery figure:first-child {
		grid-column: auto;
	}

	.hb-elementor-page--home .hb-elementor-gallery img,
	.hb-elementor-page--home .hb-elementor-gallery figure:first-child img {
		min-height: 24rem;
		max-height: none;
		aspect-ratio: 4 / 5;
	}

	.price-intro {
		padding-block: 4rem;
	}

	.price-intro h1 {
		max-width: 100%;
		font-size: clamp(2.8rem, 13vw, 4.15rem);
	}

	.price-intro__facts {
		display: grid;
		justify-items: start;
		text-align: left;
	}

	.price-menu__category {
		border-radius: 1rem;
	}

	.price-menu__category-header {
		align-items: flex-start;
		flex-direction: column;
	}

	.price-menu__row {
		gap: 0.7rem;
		padding-inline: 1.15rem;
	}

	.price-menu__row dt {
		font-size: 0.88rem;
	}

	.price-menu__amount {
		font-size: 0.76rem;
	}

	.service-card {
		min-height: 28rem;
	}

	.editorial-image > p {
		right: 0;
		bottom: 1rem;
	}

	.gallery-preview {
		grid-template-rows: repeat(2, 10rem);
	}

	.page-hero h1 {
		font-size: clamp(2.8rem, 13vw, 4rem);
	}

	.page-hero__media::before {
		top: -1rem;
		right: -1rem;
	}

	.price-row {
		gap: 0.75rem;
	}

	.price-row dt {
		font-size: 0.92rem;
	}

	.gallery-item--wide {
		grid-column: auto;
	}

	.gallery-item img,
	.gallery-item--wide img {
		height: 25rem;
	}

	.contact-actions li {
		grid-template-columns: 1fr;
		gap: 0.15rem;
	}

	.consent-map,
	.consent-map iframe {
		min-height: 31rem;
	}

	.instagram-consent,
	.instagram-consent iframe {
		min-height: 29rem;
	}

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

	.footer-brand {
		grid-column: auto;
	}

	.footer-bottom {
		align-items: flex-start;
		flex-direction: column;
		justify-content: center;
		padding-block: 1.5rem;
	}

	.floating-actions {
		right: 0.75rem;
		bottom: 0.75rem;
	}
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	*,
	*::before,
	*::after {
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
	}
}

@media print {
	.contact-strip,
	.menu-toggle,
	.primary-navigation,
	.header-call,
	.floating-actions,
	.appointment-cta,
	.site-footer {
		display: none !important;
	}

	body {
		background: #fff;
		color: #000;
	}

	.section,
	.page-hero {
		padding-block: 2rem;
	}
}
