/* Natural Skin Café Luxury Theme */
:root {
	--nsc-accent: #6b554e;
	--nsc-accent-2: #8b746d;
	--nsc-dark: #2f2426;
	--nsc-soft: #eee4e2;
	--nsc-cream: #f8f3f1;
	--nsc-text: #302527;
	--nsc-muted: #786b68;
	--nsc-border: rgba(84, 65, 62, .18);
	--nsc-radius: 18px;
	--nsc-shadow: 0 24px 65px rgba(54, 40, 40, .14);
	--nsc-serif: Georgia, "Times New Roman", Times, serif;
	--nsc-sans: "Montserrat", "Avenir Next", "Segoe UI", system-ui, sans-serif;
	--nsc-script: "Brush Script MT", "Segoe Script", cursive;
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--nsc-cream);
	color: var(--nsc-text);
	font-family: var(--nsc-sans);
	font-size: 16px;
	line-height: 1.72;
	letter-spacing: .015em;
}

body::before {
	content: "";
	position: fixed;
	inset: 0;
	z-index: -2;
	background: url("../images/soft-marble-texture.jpg") center/cover repeat;
	opacity: .75;
}

a {
	color: var(--nsc-accent);
	text-decoration: none;
	transition: opacity .22s ease, transform .22s ease, color .22s ease, background .22s ease;
}

a:hover,
a:focus {
	color: var(--nsc-dark);
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--nsc-serif);
	font-weight: 400;
	line-height: 1.08;
	color: var(--nsc-text);
	margin: 0 0 1rem;
	letter-spacing: -.035em;
}

h1 {
	font-size: clamp(2.8rem, 7vw, 5.7rem);
}

h2 {
	font-size: clamp(2.1rem, 4.5vw, 3.6rem);
}

h3 {
	font-size: clamp(1.35rem, 2.5vw, 1.8rem);
}

p {
	margin: 0 0 1.1rem;
}

.nsc-container {
	width: min(1160px, calc(100% - 36px));
	margin-inline: auto;
}

.narrow-container {
	width: min(850px, calc(100% - 36px));
}

.nsc-section {
	padding: 86px 0;
}

.centered {
	text-align: center;
}

.soft-bg {
	position: relative;
	background:
		linear-gradient(rgba(248,243,241,.84), rgba(248,243,241,.88)),
		url("../images/soft-marble-texture.jpg") center/cover repeat;
}

.screen-reader-text,
.skip-link {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
	word-wrap: normal !important;
}

.skip-link:focus {
	clip: auto;
	clip-path: none;
	display: block;
	height: auto;
	left: 16px;
	top: 16px;
	width: auto;
	z-index: 99999;
	background: var(--nsc-dark);
	color: #fff;
	padding: 12px 16px;
	border-radius: 999px;
}

.nsc-btn,
button,
input[type="button"],
input[type="submit"],
.wp-block-button__link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-height: 48px;
	padding: 12px 30px;
	border-radius: 999px;
	border: 1px solid rgba(255,255,255,.38);
	background: linear-gradient(180deg, #7b7069, #514841);
	color: #fff !important;
	font-family: var(--nsc-sans);
	font-weight: 600;
	letter-spacing: .03em;
	text-decoration: none !important;
	cursor: pointer;
	box-shadow: 0 12px 28px rgba(40, 30, 31, .20), inset 0 1px 0 rgba(255,255,255,.35);
	transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
}

.nsc-btn:hover,
button:hover,
input[type="submit"]:hover {
	transform: translateY(-2px);
	box-shadow: 0 18px 36px rgba(40, 30, 31, .26), inset 0 1px 0 rgba(255,255,255,.35);
	color: #fff !important;
}

.nsc-btn-outline {
	background: rgba(115, 105, 96, .62);
	border-color: rgba(255,255,255,.58);
}

.nsc-btn-brown {
	background: linear-gradient(180deg, #80675d, #55433f);
}

.nsc-card {
	background: rgba(255, 255, 255, .48);
	border: 1px solid var(--nsc-border);
	border-radius: var(--nsc-radius);
	box-shadow: var(--nsc-shadow);
	backdrop-filter: blur(6px);
	padding: 30px;
}

.text-link {
	font-weight: 700;
	border-bottom: 1px solid currentColor;
}

.script-label {
	font-family: var(--nsc-script);
	font-size: clamp(1.7rem, 3.2vw, 2.6rem);
	line-height: 1;
	color: #6e5450;
	letter-spacing: .01em;
	margin-bottom: .55rem;
}

.script-label span {
	font-family: var(--nsc-serif);
	font-size: .88em;
	color: #fff;
}

/* Header */
.site-header {
	position: sticky;
	top: 0;
	z-index: 1000;
	background: var(--nsc-dark);
	color: #fff;
	box-shadow: 0 10px 35px rgba(20, 14, 15, .24);
}

.site-header::before {
	content: "";
	position: absolute;
	inset: 0;
	background: url("../images/dark-luxury-texture.jpg") center/cover;
	opacity: .82;
	z-index: -1;
}

.nsc-topbar {
	border-bottom: 1px solid rgba(255,255,255,.10);
	background: rgba(255,255,255,.06);
}

.nsc-topbar-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 22px;
	padding: 16px 0;
	font-size: .92rem;
	color: rgba(255,255,255,.86);
}

.nsc-topbar p {
	margin: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	align-items: center;
}

.nsc-topbar .nsc-btn {
	min-height: 42px;
	padding: 9px 22px;
	font-size: .88rem;
}

.nsc-mainnav {
	background: rgba(23, 17, 19, .38);
}

.nsc-nav-inner {
	display: grid;
	grid-template-columns: 185px minmax(0, 1fr) auto;
	align-items: center;
	gap: 22px;
	min-height: 92px;
}

.custom-logo-link img {
	max-height: 78px;
	width: auto;
}

.nsc-logo-text {
	width: 145px;
	height: 78px;
	border: 1px solid rgba(255,255,255,.25);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	color: #fff;
	transform: rotate(-3deg);
}

.nsc-logo-text span {
	font-family: var(--nsc-script);
	font-size: 2.8rem;
	line-height: .75;
}

.nsc-logo-text small {
	font-family: var(--nsc-sans);
	font-size: .58rem;
	letter-spacing: .22em;
	text-transform: uppercase;
	margin-top: 4px;
}

.primary-navigation ul {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	flex-wrap: wrap;
	gap: 6px;
	list-style: none;
	padding: 0;
	margin: 0;
}

.primary-navigation a {
	display: block;
	color: #fff;
	font-size: .98rem;
	padding: 12px 10px;
	border-radius: 999px;
}

.primary-navigation a:hover,
.primary-navigation .current-menu-item > a {
	background: rgba(255,255,255,.10);
	color: #fff;
}

.menu-toggle {
	display: none;
	width: 46px;
	height: 46px;
	padding: 0;
	border-radius: 999px;
	background: rgba(255,255,255,.12);
	box-shadow: none;
}

.menu-toggle span:not(.screen-reader-text) {
	display: block;
	width: 20px;
	height: 2px;
	background: #fff;
	margin: 3px auto;
	border-radius: 2px;
}

/* Home */
.hero-luxury {
	min-height: 630px;
	background-position: center;
	background-size: cover;
	display: grid;
	place-items: center;
	text-align: center;
	color: #fff;
	padding: 110px 0;
	position: relative;
}

.hero-luxury h1 {
	color: #fff;
	max-width: 930px;
	margin-inline: auto;
	text-shadow: 0 3px 18px rgba(0,0,0,.45);
}

.hero-luxury p {
	max-width: 760px;
	margin-inline: auto;
	font-size: clamp(1rem, 2vw, 1.18rem);
	color: rgba(255,255,255,.92);
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 18px;
	align-items: center;
	justify-content: center;
	margin-top: 28px;
}

.hero-brands {
	margin-top: 60px;
	display: grid;
	gap: 18px;
	color: rgba(255,255,255,.86);
	letter-spacing: .09em;
}

.hero-brands div {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: clamp(28px, 7vw, 72px);
	align-items: center;
}

.hero-brands strong {
	font-size: clamp(1.8rem, 4vw, 3rem);
	font-weight: 500;
	color: #fff;
	letter-spacing: -.03em;
}

.section-heading {
	max-width: 760px;
	margin: 0 auto 38px;
}

.section-heading p {
	color: var(--nsc-muted);
}

.signature-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 18px;
}

.signature-card {
	min-height: 320px;
	background-position: center;
	background-size: cover;
	border-radius: 16px;
	overflow: hidden;
	color: #fff;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	text-align: center;
	padding: 26px 18px;
	box-shadow: 0 18px 38px rgba(49, 36, 36, .18);
	border: 1px solid rgba(255,255,255,.38);
}

.signature-card:hover {
	transform: translateY(-5px);
	color: #fff;
}

.signature-card h3 {
	color: #fff;
	font-size: clamp(1.55rem, 2.2vw, 2.1rem);
	margin-bottom: .35rem;
	text-shadow: 0 3px 15px rgba(0,0,0,.38);
}

.signature-card p {
	margin: 0;
	color: rgba(255,255,255,.92);
	font-size: .9rem;
	line-height: 1.45;
}

.section-button {
	margin-top: 34px;
}

.split-promo {
	background: var(--nsc-cream);
}

.split-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: stretch;
	box-shadow: var(--nsc-shadow);
}

.split-image img,
.science-panel {
	width: 100%;
	height: 100%;
	min-height: 430px;
	object-fit: cover;
}

.split-copy {
	background:
		linear-gradient(rgba(248,243,241,.82), rgba(248,243,241,.88)),
		url("../images/soft-marble-texture.jpg") center/cover;
	padding: clamp(34px, 5vw, 60px);
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.science-panel {
	grid-column: 2;
	background:
		linear-gradient(rgba(53,39,40,.62), rgba(53,39,40,.70)),
		url("../images/dark-luxury-texture.jpg") center/cover;
	color: #fff;
	padding: clamp(34px, 5vw, 60px);
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.science-panel h2,
.science-panel p {
	color: #fff;
}

.science-panel span {
	font-family: var(--nsc-serif);
	font-size: 1.5rem;
	color: rgba(255,255,255,.88);
}

/* Treatment pages */
.page-hero {
	padding: 78px 0 48px;
}

.page-hero h1 span {
	font-family: var(--nsc-script);
	font-size: 1.05em;
	color: #714e4d;
}

.page-hero p,
.subheading {
	font-size: clamp(1.05rem, 2vw, 1.28rem);
	color: #5d4f4d;
	max-width: 880px;
	margin-inline: auto;
}

.subheading {
	text-transform: uppercase;
	letter-spacing: .28em;
	font-size: 1rem;
}

.treatment-feature-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.45fr) minmax(320px, .85fr);
	gap: 40px;
	align-items: start;
}

.treatment-list-panel,
.treatment-side-card,
.contact-card,
.special-card,
.beauty-card,
.treatment-line-card {
	background: rgba(255,255,255,.48);
	border: 1px solid var(--nsc-border);
	border-radius: var(--nsc-radius);
	box-shadow: 0 18px 48px rgba(54, 40, 40, .10);
	backdrop-filter: blur(4px);
}

.treatment-list-panel {
	padding: clamp(22px, 4vw, 36px);
}

.price-row {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 24px;
	padding: 22px 0;
	border-bottom: 1px solid rgba(80, 60, 58, .15);
}

.price-row:first-child {
	padding-top: 0;
}

.price-row:last-child {
	border-bottom: 0;
	padding-bottom: 0;
}

.price-row h3 {
	margin-bottom: 6px;
}

.price-row p {
	margin: 0;
	color: var(--nsc-muted);
}

.price-row strong {
	font-family: var(--nsc-serif);
	font-size: 1.35rem;
	font-weight: 400;
	white-space: nowrap;
	color: var(--nsc-text);
}

.treatment-side-card {
	padding: 22px;
	position: sticky;
	top: 145px;
}

.treatment-side-card img,
.wide-treatment-image {
	border-radius: 15px;
	width: 100%;
	object-fit: cover;
	margin-bottom: 24px;
}

.treatment-side-card img {
	height: 420px;
}

.wide-treatment-image {
	height: 360px;
}

.dark-feature {
	background:
		linear-gradient(rgba(50,37,39,.72), rgba(50,37,39,.78)),
		url("../images/dark-luxury-texture.jpg") center/cover;
	color: #fff;
	padding: 74px 0;
}

.dark-feature h2,
.dark-feature p {
	color: #fff;
}

.dark-feature .script-label {
	color: #e6d2ce;
}

.dark-feature-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 46px;
	align-items: center;
}

.check-columns {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 15px 24px;
	color: rgba(255,255,255,.9);
}

.check-columns li::before,
.tick-list li::before {
	content: "✓";
	margin-right: 10px;
	color: var(--nsc-accent-2);
}

.beauty-grid,
.treatment-preview-grid,
.specials-grid,
.contact-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 18px;
}

.beauty-card,
.treatment-line-card,
.special-card,
.contact-card {
	padding: 26px;
}

.beauty-card div {
	display: flex;
	justify-content: space-between;
	gap: 18px;
}

.beauty-card strong,
.treatment-line-card span,
.special-card strong {
	font-family: var(--nsc-serif);
	font-size: 1.35rem;
	font-weight: 400;
	color: var(--nsc-text);
}

.script-note {
	font-family: var(--nsc-script);
	font-size: 1.9rem;
	color: #6e5450;
	margin-top: 22px;
}

/* About */
.about-grid {
	display: grid;
	grid-template-columns: .9fr 1.1fr;
	gap: 58px;
	align-items: center;
}

.portrait-card img {
	border-radius: var(--nsc-radius);
	box-shadow: var(--nsc-shadow);
	width: 100%;
	min-height: 620px;
	object-fit: cover;
}

.about-copy h2 {
	font-size: clamp(1.9rem, 3vw, 2.8rem);
}

.tick-list {
	list-style: none;
	margin: 0 0 28px;
	padding: 0;
	display: grid;
	gap: 12px;
}

/* Interior */
.interior-hero {
	min-height: 430px;
	background-position: center;
	background-size: cover;
	display: grid;
	place-items: center;
	color: #fff;
	padding: 90px 0;
}

.interior-hero h1,
.interior-hero p {
	color: #fff;
}

.interior-hero p {
	max-width: 800px;
	margin-inline: auto;
	font-size: 1.18rem;
}

.specials-grid {
	grid-template-columns: 1.2fr .8fr .8fr;
	align-items: stretch;
}

.special-card.featured {
	background:
		linear-gradient(rgba(255,255,255,.50), rgba(255,255,255,.58)),
		url("../images/soft-marble-texture.jpg") center/cover;
}

.gallery-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 18px;
}

.gallery-item {
	display: block;
	border-radius: var(--nsc-radius);
	overflow: hidden;
	box-shadow: var(--nsc-shadow);
}

.gallery-item img {
	width: 100%;
	height: 320px;
	object-fit: cover;
	transition: transform .28s ease;
}

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

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

/* Blog / content */
.layout-with-sidebar {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 320px;
	gap: 34px;
	align-items: start;
}

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

.post-card {
	margin-bottom: 26px;
}

.post-thumbnail {
	display: block;
	margin: -30px -30px 24px;
	border-radius: var(--nsc-radius) var(--nsc-radius) 0 0;
	overflow: hidden;
}

.entry-meta {
	color: var(--nsc-muted);
	font-size: .92rem;
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
	margin-bottom: 20px;
}

.entry-content {
	color: #514544;
}

.entry-content a {
	text-decoration: underline;
	text-underline-offset: 4px;
}

.entry-content table {
	width: 100%;
	border-collapse: collapse;
	margin: 1.5rem 0;
}

.entry-content th,
.entry-content td {
	border: 1px solid var(--nsc-border);
	padding: 12px;
	text-align: left;
}

.widget-area {
	display: grid;
	gap: 18px;
}

.page-featured-image {
	margin-bottom: 24px;
}

.page-featured-image img {
	border-radius: var(--nsc-radius);
	width: 100%;
}

/* Footer */
.site-footer {
	background:
		linear-gradient(rgba(42,31,33,.87), rgba(42,31,33,.92)),
		url("../images/dark-luxury-texture.jpg") center/cover;
	color: rgba(255,255,255,.78);
}

.brand-strip {
	text-align: center;
	padding: 48px 0 38px;
	border-bottom: 1px solid rgba(255,255,255,.12);
}

.brand-strip .script-label {
	color: #f0dfdc;
	margin-bottom: 20px;
}

.brand-strip .script-label span {
	color: #fff;
}

.brand-logos {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	gap: clamp(30px, 7vw, 86px);
	color: #fff;
}

.brand-logos span {
	font-size: clamp(1.8rem, 3vw, 3rem);
	font-weight: 500;
	letter-spacing: -.05em;
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.25fr 1fr 1fr 1fr;
	gap: 34px;
	padding: 58px 0 36px;
}

.site-footer h3 {
	color: #fff;
}

.site-footer a {
	color: rgba(255,255,255,.85);
}

.site-footer a:hover {
	color: #fff;
}

.footer-column ul,
.footer-bottom ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 8px;
}

.footer-bottom {
	border-top: 1px solid rgba(255,255,255,.12);
	padding: 24px 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
}

.footer-bottom p {
	margin: 0;
}

.footer-bottom ul {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
}

.back-to-top {
	position: fixed;
	right: 18px;
	bottom: 18px;
	width: 46px;
	height: 46px;
	padding: 0;
	min-height: 46px;
	border-radius: 999px;
	opacity: 0;
	pointer-events: none;
	transform: translateY(8px);
	z-index: 900;
}

.back-to-top.is-visible {
	opacity: 1;
	pointer-events: auto;
	transform: translateY(0);
}

/* Forms */
input,
textarea,
select {
	font: inherit;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="tel"],
textarea,
select {
	width: 100%;
	border: 1px solid var(--nsc-border);
	border-radius: 12px;
	background: rgba(255,255,255,.66);
	padding: 12px 14px;
	color: var(--nsc-text);
}

/* Responsive */
@media (max-width: 1020px) {
	.nsc-nav-inner {
		grid-template-columns: 160px 1fr auto;
	}

	.primary-navigation {
		display: none;
		grid-column: 1 / -1;
		padding-bottom: 18px;
	}

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

	.primary-navigation ul {
		display: grid;
		justify-content: stretch;
		gap: 4px;
	}

	.primary-navigation a {
		padding: 12px 14px;
		background: rgba(255,255,255,.06);
	}

	.menu-toggle {
		display: inline-flex;
		flex-direction: column;
		justify-content: center;
	}

	.signature-grid,
	.treatment-preview-grid,
	.beauty-grid,
	.gallery-grid,
	.footer-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.treatment-feature-grid,
	.about-grid,
	.layout-with-sidebar,
	.dark-feature-grid,
	.contact-grid,
	.specials-grid {
		grid-template-columns: 1fr;
	}

	.treatment-side-card {
		position: static;
	}

	.science-panel {
		grid-column: auto;
	}

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

@media (max-width: 720px) {
	body {
		font-size: 15px;
	}

	.nsc-container,
	.narrow-container {
		width: min(100% - 24px, 1160px);
	}

	.nsc-section {
		padding: 58px 0;
	}

	.nsc-topbar-inner,
	.footer-bottom {
		display: grid;
		text-align: center;
		justify-items: center;
	}

	.nsc-topbar p {
		justify-content: center;
	}

	.nsc-nav-inner {
		min-height: 78px;
		grid-template-columns: 1fr auto;
	}

	.nsc-logo-text {
		width: 125px;
		height: 64px;
	}

	.nsc-logo-text span {
		font-size: 2.2rem;
	}

	.hero-luxury {
		min-height: 540px;
		padding: 80px 0;
	}

	.hero-actions,
	.hero-brands div,
	.brand-logos {
		flex-direction: column;
	}

	.nsc-btn,
	button,
	input[type="submit"] {
		width: 100%;
	}

	.signature-grid,
	.treatment-preview-grid,
	.beauty-grid,
	.gallery-grid,
	.footer-grid,
	.check-columns {
		grid-template-columns: 1fr;
	}

	.signature-card {
		min-height: 250px;
	}

	.price-row,
	.beauty-card div {
		grid-template-columns: 1fr;
		display: grid;
		gap: 8px;
	}

	.price-row strong {
		white-space: normal;
	}

	.wide-treatment-image {
		height: 250px;
	}

	.portrait-card img {
		min-height: 390px;
	}

	.gallery-item img {
		height: 240px;
	}
}
