/*
Theme Name: Sakura Noir
Theme URI: https://example.com/sakura-noir
Author: Sakura
Author URI: https://example.com
Description: A modern, minimalist and elegant black theme for a private companionship agency. Child theme of BlankSlate. Includes hardcoded marketing pages, ACF-powered category intros and floating Telegram / WhatsApp enquiry buttons controlled from a Theme Options page.
Template: blankslate
Version: 1.0.0
Requires at least: 6.2
Requires PHP: 7.4
License: GNU General Public License v3 or Later
License URI: https://www.gnu.org/licenses/gpl.html
Text Domain: sakura-noir
Tags: one-column, custom-menu, featured-images, translation-ready
*/

/* ==========================================================================
   1. Design tokens
   ========================================================================== */

:root {
	--bg:            #08080a;
	--bg-alt:        #0d0d10;
	--surface:       #121216;
	--surface-2:     #17171c;
	--line:          rgba(255, 255, 255, .09);
	--line-strong:   rgba(255, 255, 255, .18);

	--text:          #f3f1ef;
	--text-dim:      #a7a5ad;
	--text-faint:    #6d6b75;

	--accent:        #e8b4c8;
	--accent-deep:   #c98da4;
	--accent-soft:   rgba(232, 180, 200, .12);
	--accent-line:   rgba(232, 180, 200, .32);

	--wa:            #25d366;
	--tg:            #2aabee;

	--serif:  "Cormorant Garamond", "Times New Roman", serif;
	--sans:   "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

	--shell:  1240px;
	--gut:    clamp(20px, 5vw, 48px);
	--radius: 2px;

	--ease:   cubic-bezier(.22, 1, .36, 1);
	--speed:  .5s;
}

/* ==========================================================================
   2. Base
   ========================================================================== */

html {
	-webkit-text-size-adjust: 100%;
}

body {
	background: var(--bg);
	color: var(--text);
	font-family: var(--sans);
	font-size: 16px;
	line-height: 1.75;
	font-weight: 300;
	letter-spacing: .01em;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	overflow-x: hidden;
}

body.nav-open {
	overflow: hidden;
}

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

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

a:hover {
	color: var(--text);
}

strong,
b {
	font-weight: 600;
}

em,
i {
	font-style: italic;
}

::selection {
	background: var(--accent);
	color: #0a0a0a;
}

:focus-visible {
	outline: 1px solid var(--accent);
	outline-offset: 3px;
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--serif);
	font-weight: 300;
	line-height: 1.08;
	letter-spacing: -.015em;
	color: var(--text);
}

h1 { font-size: clamp(2.6rem, 6.2vw, 5.2rem); }
h2 { font-size: clamp(2rem, 4.4vw, 3.4rem); }
h3 { font-size: clamp(1.35rem, 2.2vw, 1.75rem); }
h4 { font-size: 1.2rem; }

p {
	margin: 0 0 1.15em;
}

p:last-child {
	margin-bottom: 0;
}

/* ==========================================================================
   3. Layout primitives
   ========================================================================== */

.shell {
	width: 100%;
	max-width: var(--shell);
	margin-inline: auto;
	padding-inline: var(--gut);
}

.shell--narrow {
	max-width: 820px;
}

.section {
	padding-block: clamp(72px, 11vw, 140px);
	position: relative;
}

.section--tight {
	padding-block: clamp(56px, 7vw, 90px);
}

.section--alt {
	background: var(--bg-alt);
}

.section--line {
	border-top: 1px solid var(--line);
}

.grid {
	display: grid;
	gap: clamp(20px, 3vw, 36px);
}

.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.split {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(32px, 6vw, 88px);
	align-items: center;
}

/* ==========================================================================
   4. Shared components
   ========================================================================== */

.eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	font-family: var(--sans);
	font-size: .7rem;
	font-weight: 500;
	letter-spacing: .28em;
	text-transform: uppercase;
	color: var(--accent);
	margin-bottom: 22px;
}

.eyebrow::before {
	content: "";
	width: 28px;
	height: 1px;
	background: var(--accent-line);
}

.eyebrow--center::after {
	content: "";
	width: 28px;
	height: 1px;
	background: var(--accent-line);
}

.lede {
	font-size: clamp(1rem, 1.4vw, 1.125rem);
	color: var(--text-dim);
	max-width: 58ch;
}

.section-head {
	margin-bottom: clamp(40px, 6vw, 72px);
}

.section-head--center {
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.section-head--center .lede {
	margin-inline: auto;
}

.section-head h2 {
	margin-bottom: 20px;
}

.accent {
	color: var(--accent);
	font-style: italic;
}

/* Buttons ---------------------------------------------------------------- */

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 15px 34px;
	font-family: var(--sans);
	font-size: .78rem;
	font-weight: 500;
	letter-spacing: .16em;
	text-transform: uppercase;
	border: 1px solid transparent;
	border-radius: var(--radius);
	cursor: pointer;
	position: relative;
	overflow: hidden;
	transition: color .4s var(--ease), border-color .4s var(--ease), background-color .4s var(--ease);
}

.btn--primary {
	background: var(--accent);
	color: #0a0a0a;
}

.btn--primary:hover {
	background: var(--text);
	color: #0a0a0a;
}

.btn--ghost {
	border-color: var(--line-strong);
	color: var(--text);
}

.btn--ghost:hover {
	border-color: var(--accent);
	color: var(--accent);
}

.btn--sm {
	padding: 11px 22px;
	font-size: .68rem;
}

.btn-row {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 38px;
}

.link-arrow {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-size: .74rem;
	font-weight: 500;
	letter-spacing: .18em;
	text-transform: uppercase;
	color: var(--text);
}

.link-arrow::after {
	content: "";
	width: 22px;
	height: 1px;
	background: currentColor;
	transition: width .4s var(--ease);
}

.link-arrow:hover {
	color: var(--accent);
}

.link-arrow:hover::after {
	width: 38px;
}

/* Media placeholder (no bundled imagery) --------------------------------- */

.media {
	position: relative;
	overflow: hidden;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background:
		radial-gradient(120% 90% at 15% 10%, rgba(232, 180, 200, .16), transparent 58%),
		radial-gradient(100% 80% at 85% 90%, rgba(120, 130, 200, .12), transparent 60%),
		linear-gradient(160deg, #151519, #0b0b0e);
}

.media::after {
	content: "";
	position: absolute;
	inset: 0;
	background-image:
		repeating-linear-gradient(45deg, rgba(255, 255, 255, .022) 0 2px, transparent 2px 7px);
	pointer-events: none;
}

.media--tall   { aspect-ratio: 3 / 4; }
.media--square { aspect-ratio: 1 / 1; }
.media--wide   { aspect-ratio: 1 / 1; }

.media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: relative;
	z-index: 1;
}

/* Cards ------------------------------------------------------------------ */

.card {
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: clamp(26px, 3vw, 38px);
	transition: border-color .45s var(--ease), background-color .45s var(--ease), transform .45s var(--ease);
}

.card:hover {
	border-color: var(--accent-line);
	background: var(--surface-2);
	transform: translateY(-4px);
}

.card__num {
	font-family: var(--serif);
	font-size: 2.4rem;
	color: var(--accent);
	line-height: 1;
	display: block;
	margin-bottom: 20px;
	opacity: .85;
}

.card h3 {
	margin-bottom: 12px;
}

.card p {
	color: var(--text-dim);
	font-size: .95rem;
}

/* Reveal on scroll ------------------------------------------------------- */

.reveal {
	opacity: 0;
	transform: translateY(26px);
	transition: opacity .9s var(--ease), transform .9s var(--ease);
}

.reveal.is-in {
	opacity: 1;
	transform: none;
}

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

	html { scroll-behavior: auto; }
}

/* ==========================================================================
   5. Header
   ========================================================================== */

#header {
	position: fixed;
	inset: 0 0 auto;
	z-index: 900;
	padding-block: 22px;
	transition: padding .45s var(--ease), background-color .45s var(--ease), border-color .45s var(--ease);
	border-bottom: 1px solid transparent;
}

#header.is-stuck {
	padding-block: 12px;
	background: rgba(8, 8, 10, .82);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	border-bottom-color: var(--line);
}

.masthead {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 28px;
}

.brand {
	display: inline-flex;
	align-items: baseline;
	gap: 9px;
	font-family: var(--serif);
	font-size: 1.5rem;
	letter-spacing: .04em;
	color: var(--text);
}

.brand:hover {
	color: var(--text);
}

.brand__dot {
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: var(--accent);
	flex: none;
}

.brand__tag {
	display: block;
	font-family: var(--sans);
	font-size: .58rem;
	letter-spacing: .3em;
	text-transform: uppercase;
	color: var(--text-faint);
	margin-top: 2px;
}

.masthead__nav {
	margin-left: auto;
}

.masthead__nav ul {
	display: flex;
	align-items: center;
	gap: clamp(18px, 2.4vw, 34px);
}

.masthead__nav li {
	position: relative;
}

.masthead__nav a {
	font-size: .74rem;
	font-weight: 400;
	letter-spacing: .16em;
	text-transform: uppercase;
	color: var(--text-dim);
	padding-block: 6px;
	display: inline-block;
}

.masthead__nav a:hover,
.masthead__nav .current-menu-item > a,
.masthead__nav .current_page_item > a {
	color: var(--text);
}

.masthead__nav .current-menu-item > a::after,
.masthead__nav .current_page_item > a::after {
	content: "";
	display: block;
	height: 1px;
	background: var(--accent);
	margin-top: 4px;
}

/* Dropdowns */
.masthead__nav .sub-menu {
	position: absolute;
	top: 100%;
	left: -18px;
	min-width: 210px;
	display: block;
	flex-direction: column;
	gap: 0;
	background: var(--surface);
	border: 1px solid var(--line);
	padding: 10px 0;
	opacity: 0;
	visibility: hidden;
	transform: translateY(8px);
	transition: all .35s var(--ease);
}

.masthead__nav li:hover > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: none;
}

.masthead__nav .sub-menu a {
	display: block;
	padding: 8px 20px;
	letter-spacing: .1em;
}

.masthead__cta {
	display: inline-flex;
}

/* Burger */
.burger {
	display: none;
	width: 42px;
	height: 42px;
	background: none;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	position: relative;
	cursor: pointer;
}

.burger span {
	position: absolute;
	left: 12px;
	width: 18px;
	height: 1px;
	background: var(--text);
	transition: transform .4s var(--ease), opacity .3s var(--ease);
}

.burger span:nth-child(1) { top: 16px; }
.burger span:nth-child(2) { top: 21px; }
.burger span:nth-child(3) { top: 26px; }

body.nav-open .burger span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
body.nav-open .burger span:nth-child(2) { opacity: 0; }
body.nav-open .burger span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }

/* Off-canvas */
.drawer {
	position: fixed;
	inset: 0;
	z-index: 890;
	background: var(--bg);
	padding: 120px var(--gut) 60px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	overflow-y: auto;
	overscroll-behavior: contain;
	opacity: 0;
	visibility: hidden;
	transition: opacity .45s var(--ease), visibility .45s var(--ease);
}

body.nav-open .drawer {
	opacity: 1;
	visibility: visible;
}

.drawer ul {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.drawer a {
	font-family: var(--serif);
	font-size: clamp(2rem, 9vw, 2.8rem);
	color: var(--text);
	display: block;
	padding-block: 8px;
	border-bottom: 1px solid var(--line);
}

.drawer a:hover {
	color: var(--accent);
}

.drawer .sub-menu a {
	font-size: 1.2rem;
	padding-left: 18px;
	color: var(--text-dim);
}

.drawer__foot {
	margin-top: 40px;
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

/* Every template opens with a hero that carries its own top padding, so the
   container itself needs none. Templates without one add .no-hero. */
#container {
	padding-top: 0;
}

body.no-hero #container {
	padding-top: clamp(96px, 12vw, 130px);
}

/* ==========================================================================
   6. Hero
   ========================================================================== */

.hero {
	position: relative;
	min-height: 100svh;
	display: flex;
	align-items: center;
	padding-block: 140px 90px;
	overflow: hidden;
}

.hero__glow {
	position: absolute;
	inset: 0;
	pointer-events: none;
	background:
		radial-gradient(60% 55% at 75% 20%, rgba(232, 180, 200, .13), transparent 62%),
		radial-gradient(55% 50% at 12% 85%, rgba(110, 120, 190, .10), transparent 65%);
}

.hero__grid {
	position: absolute;
	inset: 0;
	pointer-events: none;
	opacity: .5;
	background-image:
		linear-gradient(to right, var(--line) 1px, transparent 1px);
	background-size: calc(100% / 4) 100%;
	mask-image: linear-gradient(to bottom, transparent, #000 25%, #000 70%, transparent);
	-webkit-mask-image: linear-gradient(to bottom, transparent, #000 25%, #000 70%, transparent);
}

.hero__inner {
	position: relative;
	z-index: 2;
	max-width: 900px;
}

.hero h1 {
	margin-bottom: 28px;
}

.hero h1 .line {
	display: block;
	overflow: hidden;
}

.hero .lede {
	font-size: clamp(1.02rem, 1.5vw, 1.18rem);
	max-width: 52ch;
}

.hero__meta {
	display: flex;
	flex-wrap: wrap;
	gap: clamp(28px, 5vw, 64px);
	margin-top: clamp(48px, 7vw, 86px);
	padding-top: 30px;
	border-top: 1px solid var(--line);
	position: relative;
	z-index: 2;
}

.hero__meta div {
	min-width: 120px;
}

.hero__meta dt {
	font-size: .66rem;
	letter-spacing: .24em;
	text-transform: uppercase;
	color: var(--text-faint);
	margin-bottom: 8px;
}

.hero__meta dd {
	font-family: var(--serif);
	font-size: 1.9rem;
	color: var(--text);
	line-height: 1;
}

.scroll-cue {
	position: absolute;
	bottom: 34px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 3;
	font-size: .6rem;
	letter-spacing: .3em;
	text-transform: uppercase;
	color: var(--text-faint);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
}

.scroll-cue::after {
	content: "";
	width: 1px;
	height: 46px;
	background: linear-gradient(to bottom, var(--accent-line), transparent);
}

/* Page hero (inner pages) ------------------------------------------------ */

.page-hero {
	position: relative;
	padding-block: clamp(140px, 18vw, 210px) clamp(50px, 7vw, 84px);
	border-bottom: 1px solid var(--line);
	overflow: hidden;
}

.page-hero__glow {
	position: absolute;
	inset: 0;
	pointer-events: none;
	background: radial-gradient(65% 130% at 80% 0%, rgba(232, 180, 200, .11), transparent 60%);
}

.page-hero__inner {
	position: relative;
	z-index: 2;
	max-width: 780px;
}

.page-hero h1 {
	font-size: clamp(2.4rem, 5.4vw, 4.2rem);
	margin-bottom: 22px;
}

.crumbs {
	font-size: .68rem;
	letter-spacing: .2em;
	text-transform: uppercase;
	color: var(--text-faint);
	margin-bottom: 26px;
}

.crumbs a {
	color: var(--text-faint);
}

.crumbs a:hover {
	color: var(--accent);
}

.crumbs span + span::before {
	content: "/";
	margin: 0 10px;
	color: var(--line-strong);
}

/* ==========================================================================
   7. Home sections
   ========================================================================== */

/* Marquee */
.marquee {
	border-block: 1px solid var(--line);
	padding-block: 20px;
	overflow: hidden;
	background: var(--bg-alt);
}

.marquee__track {
	display: flex;
	gap: 56px;
	width: max-content;
	animation: marquee 38s linear infinite;
}

.marquee span {
	font-family: var(--serif);
	font-size: 1.25rem;
	letter-spacing: .06em;
	color: var(--text-faint);
	white-space: nowrap;
	display: inline-flex;
	align-items: center;
	gap: 56px;
}

.marquee span::after {
	content: "✦";
	font-size: .7rem;
	color: var(--accent);
}

@keyframes marquee {
	to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
	.marquee__track { animation: none; }
}

/* Stats */
.stat {
	border-left: 1px solid var(--line);
	padding-left: 24px;
}

.stat__val {
	font-family: var(--serif);
	font-size: clamp(2.4rem, 4vw, 3.2rem);
	line-height: 1;
	color: var(--text);
	display: block;
	margin-bottom: 10px;
}

.stat__lbl {
	font-size: .68rem;
	letter-spacing: .22em;
	text-transform: uppercase;
	color: var(--text-faint);
}

/* Service list */
.svc {
	display: grid;
	grid-template-columns: 90px 1fr auto;
	gap: clamp(18px, 3vw, 40px);
	align-items: center;
	padding-block: clamp(24px, 3vw, 36px);
	border-top: 1px solid var(--line);
	transition: padding-inline .5s var(--ease), background-color .5s var(--ease);
}

.svc:last-of-type {
	border-bottom: 1px solid var(--line);
}

.svc:hover {
	background: linear-gradient(90deg, var(--accent-soft), transparent 70%);
	padding-inline: 18px;
}

.svc__idx {
	font-size: .68rem;
	letter-spacing: .2em;
	color: var(--text-faint);
}

.svc h3 {
	margin-bottom: 6px;
}

.svc p {
	color: var(--text-dim);
	font-size: .92rem;
	max-width: 62ch;
	margin: 0;
}

.svc__go {
	width: 44px;
	height: 44px;
	border: 1px solid var(--line);
	border-radius: 50%;
	display: grid;
	place-items: center;
	color: var(--text-dim);
	flex: none;
	transition: all .45s var(--ease);
}

.svc:hover .svc__go {
	border-color: var(--accent);
	color: var(--accent);
	transform: rotate(-45deg);
}

/* Gallery strip */
.strip {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 14px;
}

.strip .media:nth-child(even) {
	margin-top: 34px;
}

/* Testimonials */
.quote {
	background: var(--surface);
	border: 1px solid var(--line);
	padding: clamp(28px, 3.4vw, 40px);
	border-radius: var(--radius);
	display: flex;
	flex-direction: column;
	gap: 22px;
	height: 100%;
}

.quote__mark {
	font-family: var(--serif);
	font-size: 3rem;
	line-height: .6;
	color: var(--accent);
	opacity: .5;
}

.quote p {
	font-family: var(--serif);
	font-size: 1.28rem;
	line-height: 1.5;
	color: var(--text);
	margin: 0;
	flex: 1;
}

.quote footer {
	font-size: .72rem;
	letter-spacing: .18em;
	text-transform: uppercase;
	color: var(--text-faint);
	padding-top: 18px;
	border-top: 1px solid var(--line);
}

.quote footer b {
	color: var(--text);
	display: block;
	margin-bottom: 4px;
	letter-spacing: .12em;
}

/* Pricing */
.price {
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: clamp(30px, 3.4vw, 44px);
	display: flex;
	flex-direction: column;
	position: relative;
	transition: border-color .45s var(--ease), transform .45s var(--ease);
}

.price:hover {
	border-color: var(--line-strong);
	transform: translateY(-5px);
}

.price--feature {
	border-color: var(--accent-line);
	background: linear-gradient(180deg, rgba(232, 180, 200, .07), var(--surface) 45%);
}

.price__flag {
	position: absolute;
	top: -1px;
	right: 24px;
	background: var(--accent);
	color: #0a0a0a;
	font-size: .6rem;
	font-weight: 600;
	letter-spacing: .2em;
	text-transform: uppercase;
	padding: 6px 14px;
}

.price__name {
	font-family: var(--sans);
	font-size: .72rem;
	font-weight: 500;
	letter-spacing: .24em;
	text-transform: uppercase;
	color: var(--accent);
	margin-bottom: 20px;
}

.price__fig {
	font-family: var(--serif);
	font-size: clamp(2.8rem, 4.4vw, 3.6rem);
	line-height: 1;
	color: var(--text);
	display: flex;
	align-items: baseline;
	gap: 6px;
	margin-bottom: 8px;
}

.price__fig sup {
	font-size: 1.1rem;
	color: var(--text-dim);
	vertical-align: super;
}

.price__per {
	font-family: var(--sans);
	font-size: .74rem;
	letter-spacing: .1em;
	color: var(--text-faint);
	text-transform: none;
}

.price__desc {
	color: var(--text-dim);
	font-size: .92rem;
	padding-bottom: 26px;
	margin-bottom: 26px;
	border-bottom: 1px solid var(--line);
}

.price ul {
	display: flex;
	flex-direction: column;
	gap: 13px;
	margin-bottom: 34px;
	flex: 1;
}

/* Rate cards with no feature list — the description carries the height */
.price--simple .price__desc {
	border-bottom: 0;
	padding-bottom: 0;
	margin-bottom: 32px;
	flex: 1;
}

/* Coverage grid */
.area {
	border-top: 1px solid var(--line);
	padding-top: 22px;
}

.area h3 {
	font-size: 1.3rem;
	margin-bottom: 14px;
}

.area ul {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.area li {
	font-size: .78rem;
	letter-spacing: .06em;
	color: var(--text-dim);
	border: 1px solid var(--line);
	border-radius: 100px;
	padding: 5px 13px;
}

/* Rate sheet rows */
.sheet {
	border-top: 1px solid var(--line);
}

.sheet__row {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	gap: 16px;
	padding-block: 20px;
	border-bottom: 1px solid var(--line);
}

.sheet__dur {
	font-family: var(--serif);
	font-size: 1.4rem;
	color: var(--text);
	min-width: 190px;
}

.sheet__note {
	color: var(--text-dim);
	font-size: .92rem;
	flex: 1;
	min-width: 200px;
}

.sheet__fig {
	font-family: var(--serif);
	font-size: 1.6rem;
	color: var(--accent);
	white-space: nowrap;
	margin-left: auto;
}

@media (max-width: 640px) {
	.sheet__dur { min-width: 0; width: 100%; }
	.sheet__fig { margin-left: 0; }
}

.price li {
	font-size: .92rem;
	color: var(--text-dim);
	display: flex;
	gap: 12px;
	align-items: flex-start;
	line-height: 1.55;
}

.price li::before {
	content: "";
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: var(--accent);
	flex: none;
	margin-top: 9px;
}

.price li.is-off {
	color: var(--text-faint);
	opacity: .55;
}

.price li.is-off::before {
	background: var(--text-faint);
}

.price .btn {
	width: 100%;
}

/* Steps */
.step {
	position: relative;
	padding-top: 30px;
	border-top: 1px solid var(--line);
}

.step__n {
	font-size: .66rem;
	letter-spacing: .24em;
	text-transform: uppercase;
	color: var(--accent);
	display: block;
	margin-bottom: 16px;
}

.step h3 {
	margin-bottom: 12px;
}

.step p {
	color: var(--text-dim);
	font-size: .93rem;
	margin: 0;
}

/* FAQ */
.faq {
	border-top: 1px solid var(--line);
}

.faq__item {
	border-bottom: 1px solid var(--line);
}

.faq__q {
	width: 100%;
	background: none;
	border: 0;
	color: var(--text);
	font-family: var(--serif);
	font-size: clamp(1.15rem, 2vw, 1.45rem);
	text-align: left;
	padding: 26px 48px 26px 0;
	cursor: pointer;
	position: relative;
	transition: color .3s var(--ease);
}

.faq__q:hover {
	color: var(--accent);
}

.faq__q::after,
.faq__q::before {
	content: "";
	position: absolute;
	right: 6px;
	top: 50%;
	background: currentColor;
	transition: transform .4s var(--ease), opacity .3s var(--ease);
}

.faq__q::before {
	width: 14px;
	height: 1px;
	transform: translateY(-50%);
}

.faq__q::after {
	width: 1px;
	height: 14px;
	right: 12px;
	transform: translateY(-50%);
}

.faq__q[aria-expanded="true"]::after {
	transform: translateY(-50%) rotate(90deg);
	opacity: 0;
}

.faq__a {
	display: none;
	padding: 0 60px 28px 0;
	color: var(--text-dim);
	font-size: .96rem;
}

.faq__q[aria-expanded="true"] + .faq__a {
	display: block;
}

/* CTA band */
.cta-band {
	position: relative;
	text-align: center;
	overflow: hidden;
	background: var(--bg-alt);
	border-block: 1px solid var(--line);
}

.cta-band__glow {
	position: absolute;
	inset: 0;
	pointer-events: none;
	background: radial-gradient(50% 70% at 50% 100%, rgba(232, 180, 200, .14), transparent 65%);
}

.cta-band .shell {
	position: relative;
	z-index: 2;
}

.cta-band h2 {
	margin-bottom: 22px;
}

.cta-band .btn-row {
	justify-content: center;
}

/* ==========================================================================
   8. Editorial / archive / single
   ========================================================================== */

.entry-content,
.term-copy {
	color: var(--text-dim);
	font-size: 1.03rem;
	line-height: 1.85;
}

.entry-content > * + *,
.term-copy > * + * {
	margin-top: 1.2em;
}

.entry-content h2,
.term-copy h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); margin-top: 1.8em; }

.entry-content h3,
.term-copy h3 { margin-top: 1.6em; }

.entry-content h2,
.entry-content h3,
.entry-content h4,
.term-copy h2,
.term-copy h3,
.term-copy h4 {
	color: var(--text);
}

.entry-content ul,
.entry-content ol,
.term-copy ul,
.term-copy ol {
	padding-left: 22px;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.entry-content ul li,
.term-copy ul li {
	list-style: none;
	position: relative;
}

.entry-content ul li::before,
.term-copy ul li::before {
	content: "";
	position: absolute;
	left: -20px;
	top: 13px;
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: var(--accent);
}

.entry-content ol,
.term-copy ol {
	list-style: decimal;
}

.entry-content ol li::marker,
.term-copy ol li::marker {
	color: var(--accent);
}

.entry-content blockquote,
.term-copy blockquote {
	border-left: 1px solid var(--accent);
	padding: 6px 0 6px 26px;
	font-family: var(--serif);
	font-size: 1.35rem;
	line-height: 1.5;
	color: var(--text);
}

.entry-content img,
.term-copy img {
	border-radius: var(--radius);
	border: 1px solid var(--line);
}

.entry-content a,
.term-copy a {
	color: var(--accent);
	border-bottom: 1px solid var(--accent-line);
}

.entry-content a:hover,
.term-copy a:hover {
	color: var(--text);
	border-color: var(--text);
}

.entry-content code,
.term-copy code {
	font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
	font-size: .86em;
	background: var(--surface-2);
	border: 1px solid var(--line);
	padding: 2px 6px;
}

.entry-content pre {
	background: var(--surface);
	border: 1px solid var(--line);
	padding: 22px;
	overflow-x: auto;
}

.entry-content table,
.term-copy table {
	width: 100%;
	border: 1px solid var(--line);
}

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

.entry-content th,
.term-copy th {
	background: var(--surface);
	color: var(--text);
	font-weight: 500;
}

/* Term intro/outro blocks */
.term-block {
	max-width: 780px;
}

.term-block--bot {
	margin-top: clamp(48px, 6vw, 80px);
	padding-top: clamp(36px, 4vw, 56px);
	border-top: 1px solid var(--line);
}

/* Post grid */
.posts {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: clamp(24px, 3vw, 40px);
}

.post-card {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.post-card .media {
	transition: border-color .45s var(--ease);
}

.post-card:hover .media {
	border-color: var(--accent-line);
}

.post-card__meta {
	font-size: .66rem;
	letter-spacing: .2em;
	text-transform: uppercase;
	color: var(--text-faint);
	display: flex;
	gap: 14px;
	flex-wrap: wrap;
}

.post-card__meta a {
	color: var(--accent);
}

.post-card h2,
.post-card h3 {
	font-size: clamp(1.25rem, 1.8vw, 1.5rem);
	line-height: 1.25;
}

.post-card h2 a,
.post-card h3 a {
	color: var(--text);
}

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

.post-card p {
	color: var(--text-dim);
	font-size: .93rem;
	margin: 0;
}

/* Single */
.single-hero {
	padding-block: clamp(130px, 16vw, 190px) clamp(36px, 5vw, 60px);
}

.entry-meta,
.post-meta {
	font-size: .68rem;
	letter-spacing: .2em;
	text-transform: uppercase;
	color: var(--text-faint);
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	margin-bottom: 24px;
}

.entry-meta a,
.post-meta a {
	color: var(--accent);
}

.entry-footer {
	margin-top: 48px;
	padding-top: 26px;
	border-top: 1px solid var(--line);
	font-size: .78rem;
	color: var(--text-faint);
	letter-spacing: .08em;
}

.entry-footer a {
	color: var(--text-dim);
}

/* Pagination */
.navigation.pagination,
.navigation.posts-navigation,
.navigation.post-navigation {
	margin-top: clamp(48px, 6vw, 80px);
	padding-top: 30px;
	border-top: 1px solid var(--line);
}

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

.nav-links .page-numbers,
.nav-links a {
	min-width: 42px;
	height: 42px;
	padding-inline: 14px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--line);
	color: var(--text-dim);
	font-size: .78rem;
	letter-spacing: .1em;
	transition: all .35s var(--ease);
}

.nav-links a:hover {
	border-color: var(--accent);
	color: var(--accent);
}

.nav-links .current {
	background: var(--accent);
	border-color: var(--accent);
	color: #0a0a0a;
}

.post-navigation .nav-links {
	justify-content: space-between;
}

.post-navigation .nav-links a {
	border: 0;
	height: auto;
	padding: 0;
	font-family: var(--serif);
	font-size: 1.2rem;
	text-transform: none;
	letter-spacing: 0;
	color: var(--text);
}

/* Comments */
#comments {
	margin-top: clamp(56px, 7vw, 90px);
	padding-top: 40px;
	border-top: 1px solid var(--line);
}

#comments h2,
#comments h3 {
	margin-bottom: 26px;
}

/* The parent theme renders comments as a bare <ul> inside .comments */
#comments .comments > ul {
	display: flex;
	flex-direction: column;
	gap: 26px;
	margin-bottom: 44px;
}

#comments .comments li {
	background: var(--surface);
	border: 1px solid var(--line);
	padding: 24px;
	color: var(--text-dim);
	font-size: .95rem;
}

#comments .children {
	margin-top: 20px;
	padding-left: 20px;
	border-left: 1px solid var(--line);
	display: flex;
	flex-direction: column;
	gap: 20px;
}

#comments .comment-author {
	color: var(--text);
	font-size: .8rem;
	letter-spacing: .1em;
	text-transform: uppercase;
	margin-bottom: 12px;
	display: block;
}

#comments .comment-author img {
	border-radius: 50%;
	display: inline-block;
	vertical-align: middle;
	margin-right: 10px;
}

#comments .comment-meta,
#comments .reply {
	font-size: .7rem;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: var(--text-faint);
}

#comments .reply {
	margin-top: 14px;
}

.comment-respond {
	background: var(--surface);
	border: 1px solid var(--line);
	padding: clamp(24px, 3vw, 36px);
}

.comment-respond .comment-form-comment,
.comment-respond p {
	margin-bottom: 18px;
}

.comment-notes,
.comment-form-cookies-consent label {
	font-size: .8rem;
	letter-spacing: 0;
	text-transform: none;
	color: var(--text-faint);
	display: inline;
}

/* ==========================================================================
   9. Forms
   ========================================================================== */

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="url"],
input[type="search"],
input[type="password"],
input[type="date"],
input[type="number"],
select,
textarea {
	width: 100%;
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	color: var(--text);
	font-family: var(--sans);
	font-size: .95rem;
	font-weight: 300;
	padding: 14px 16px;
	transition: border-color .35s var(--ease), background-color .35s var(--ease);
}

textarea {
	min-height: 150px;
	resize: vertical;
}

select {
	appearance: none;
	background-image: linear-gradient(45deg, transparent 50%, var(--text-dim) 50%), linear-gradient(135deg, var(--text-dim) 50%, transparent 50%);
	background-position: calc(100% - 20px) 22px, calc(100% - 14px) 22px;
	background-size: 6px 6px, 6px 6px;
	background-repeat: no-repeat;
}

input::placeholder,
textarea::placeholder {
	color: var(--text-faint);
}

input:focus,
select:focus,
textarea:focus {
	border-color: var(--accent-line);
	background: var(--surface-2);
	outline: none;
}

label {
	display: block;
	font-size: .68rem;
	letter-spacing: .2em;
	text-transform: uppercase;
	color: var(--text-faint);
	margin-bottom: 9px;
}

button,
input[type="submit"] {
	font-family: var(--sans);
	cursor: pointer;
}

input[type="submit"] {
	width: auto;
	background: var(--accent);
	border-color: var(--accent);
	color: #0a0a0a;
	font-size: .78rem;
	font-weight: 500;
	letter-spacing: .16em;
	text-transform: uppercase;
	padding: 15px 34px;
}

input[type="submit"]:hover {
	background: var(--text);
	border-color: var(--text);
}

.form-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}

.form-grid .is-full {
	grid-column: 1 / -1;
}

.form-note {
	font-size: .8rem;
	color: var(--text-faint);
	margin-top: 16px;
}

/* Search form */
#search form,
.search-form {
	display: flex;
	gap: 10px;
}

.search-form label {
	flex: 1;
	margin: 0;
}

/* ==========================================================================
   10. Footer
   ========================================================================== */

#footer {
	border-top: 1px solid var(--line);
	background: var(--bg-alt);
	padding-block: clamp(56px, 7vw, 88px) 0;
}

.foot-grid {
	display: grid;
	grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
	gap: clamp(28px, 4vw, 56px);
	padding-bottom: clamp(40px, 5vw, 64px);
}

.foot-grid h4 {
	font-family: var(--sans);
	font-size: .68rem;
	font-weight: 500;
	letter-spacing: .24em;
	text-transform: uppercase;
	color: var(--text-faint);
	margin-bottom: 20px;
}

.foot-grid p,
.foot-grid li {
	color: var(--text-dim);
	font-size: .92rem;
}

.foot-grid ul {
	display: flex;
	flex-direction: column;
	gap: 11px;
}

.foot-grid a {
	color: var(--text-dim);
}

/* The coverage column carries one entry per location category — split it so a
   long list does not stretch the footer. */
.foot-areas ul {
	columns: 2;
	column-gap: 24px;
}

.foot-areas li {
	break-inside: avoid;
}

@media (max-width: 1080px) {
	.foot-areas ul { columns: 3; }
}

@media (max-width: 640px) {
	.foot-areas ul { columns: 2; }
}

.foot-grid a:hover {
	color: var(--accent);
}

.foot-brand .brand {
	margin-bottom: 18px;
}

.foot-social {
	display: flex;
	gap: 10px;
	margin-top: 22px;
}

.foot-social a {
	width: 38px;
	height: 38px;
	border: 1px solid var(--line);
	border-radius: 50%;
	display: grid;
	place-items: center;
	color: var(--text-dim);
	transition: all .4s var(--ease);
}

.foot-social a:hover {
	border-color: var(--accent);
	color: var(--accent);
	transform: translateY(-3px);
}

.foot-social svg {
	width: 16px;
	height: 16px;
	fill: currentColor;
}

#copyright {
	border-top: 1px solid var(--line);
	padding-block: 26px;
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	justify-content: space-between;
	align-items: center;
	font-size: .78rem;
	color: var(--text-faint);
	letter-spacing: .04em;
}

#copyright a {
	color: var(--text-faint);
}

#copyright a:hover {
	color: var(--accent);
}

/* ==========================================================================
   11. Floating booking buttons
   ========================================================================== */

.sk-fab {
	position: fixed;
	right: clamp(16px, 3vw, 30px);
	bottom: clamp(16px, 3vw, 30px);
	z-index: 950;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 12px;
}

.sk-fab__list {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 12px;
}

.sk-fab__item {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	opacity: 0;
	visibility: hidden;
	transform: translateY(14px) scale(.9);
	transition: opacity .4s var(--ease), transform .4s var(--ease), visibility .4s var(--ease);
}

.sk-fab.is-open .sk-fab__item {
	opacity: 1;
	visibility: visible;
	transform: none;
}

.sk-fab.is-open .sk-fab__item:nth-child(1) { transition-delay: .06s; }
.sk-fab.is-open .sk-fab__item:nth-child(2) { transition-delay: .12s; }

.sk-fab__label {
	background: rgba(18, 18, 22, .94);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border: 1px solid var(--line);
	border-radius: 100px;
	padding: 9px 18px;
	font-size: .74rem;
	font-weight: 400;
	letter-spacing: .1em;
	color: var(--text);
	white-space: nowrap;
	box-shadow: 0 10px 30px rgba(0, 0, 0, .5);
}

.sk-fab__btn {
	width: 52px;
	height: 52px;
	border-radius: 50%;
	display: grid;
	place-items: center;
	color: #fff;
	flex: none;
	box-shadow: 0 10px 26px rgba(0, 0, 0, .45);
	transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}

.sk-fab__item:hover .sk-fab__btn {
	transform: scale(1.08);
}

.sk-fab__btn svg {
	width: 26px;
	height: 26px;
	fill: currentColor;
}

.sk-fab__btn--wa { background: var(--wa); }
.sk-fab__btn--tg { background: var(--tg); }

.sk-fab__toggle {
	width: 58px;
	height: 58px;
	border-radius: 50%;
	border: 1px solid rgba(255, 255, 255, .14);
	background: var(--accent);
	color: #0a0a0a;
	display: grid;
	place-items: center;
	cursor: pointer;
	position: relative;
	box-shadow: 0 12px 34px rgba(232, 180, 200, .26);
	transition: transform .45s var(--ease), background-color .4s var(--ease);
}

.sk-fab__toggle:hover {
	transform: scale(1.06);
}

.sk-fab.is-open .sk-fab__toggle {
	background: var(--surface-2);
	color: var(--text);
	border-color: var(--line-strong);
	transform: rotate(90deg);
}

.sk-fab__toggle span {
	display: grid;
	place-items: center;
	transition: opacity .3s var(--ease), transform .3s var(--ease);
}

.sk-fab__toggle svg {
	width: 25px;
	height: 25px;
	fill: currentColor;
}

.sk-fab__toggle .ico-close {
	position: absolute;
	inset: 0;
	opacity: 0;
	transform: scale(.6);
}

.sk-fab.is-open .sk-fab__toggle .ico-chat {
	opacity: 0;
	transform: scale(.6);
}

.sk-fab.is-open .sk-fab__toggle .ico-close {
	opacity: 1;
	transform: none;
}

/* Attention ping on the toggle */
.sk-fab__toggle::before {
	content: "";
	position: absolute;
	inset: -1px;
	border-radius: 50%;
	border: 1px solid var(--accent);
	animation: ping 2.6s var(--ease) infinite;
}

.sk-fab.is-open .sk-fab__toggle::before {
	animation: none;
	opacity: 0;
}

@keyframes ping {
	0%        { transform: scale(1);    opacity: .7; }
	70%, 100% { transform: scale(1.55); opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
	.sk-fab__toggle::before { animation: none; opacity: 0; }
}

/* Without JS the buttons must still be reachable */
.no-js .sk-fab__item {
	opacity: 1;
	visibility: visible;
	transform: none;
}

.no-js .sk-fab__toggle {
	display: none;
}

/* ==========================================================================
   12. Utilities & responsive
   ========================================================================== */

.text-center { text-align: center; }
.mt-0  { margin-top: 0; }
.mt-l  { margin-top: clamp(32px, 5vw, 56px); }
.hide  { display: none !important; }

.alignleft   { float: left;  margin: 0 26px 20px 0; }
.alignright  { float: right; margin: 0 0 20px 26px; }
.aligncenter { display: block; margin-inline: auto; }

.wp-caption-text,
.gallery-caption {
	font-size: .78rem;
	color: var(--text-faint);
	margin-top: 10px;
	text-align: center;
}

@media (max-width: 1080px) {
	.foot-grid { grid-template-columns: 1fr 1fr; }
	.grid--4   { grid-template-columns: repeat(2, 1fr); }
	.posts     { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
	.masthead__nav,
	.masthead__cta { display: none; }

	.burger { display: block; }

	.grid--3 { grid-template-columns: 1fr; }
	.split   { grid-template-columns: 1fr; }
	.strip   { grid-template-columns: repeat(2, 1fr); }

	.svc {
		grid-template-columns: 1fr auto;
		align-items: start;
	}

	.svc__idx { display: none; }
}

@media (max-width: 640px) {
	.grid--2,
	.grid--4,
	.posts,
	.form-grid { grid-template-columns: 1fr; }

	.hero__meta { gap: 26px 34px; }
	.hero__meta dd { font-size: 1.5rem; }

	.strip .media:nth-child(even) { margin-top: 0; }

	.sk-fab__label { display: none; }

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

	#copyright { justify-content: center; text-align: center; }
}
