/* =========================================================================
   Жіночий лікар — theme styles
   Palette pinned by the brief: cream #FAF9F6, terracotta #8C4A2A,
   forest-green closing band, near-black footer. Display = Lora (serif),
   body/UI = Inter. Editorial, calm, trustworthy — tuned for a women's
   health practice rather than a generic terracotta template.
   ========================================================================= */

/* ---- Design tokens ---------------------------------------------------- */
:root {
	--cream:          #FAF9F6;
	--cream-deep:     #F3EDE4;   /* hero media / soft surfaces */
	--surface:        #FFFFFF;
	--terracotta:     #8C4A2A;
	--terracotta-dk:  #6F3820;
	--terracotta-tint:#F0E4DB;
	--forest:         #2E3B33;   /* closing CTA band */
	--forest-dk:      #26312A;
	--ink:            #1E1B18;   /* footer / darkest text */
	--text:           #34302B;
	--muted:          #6E665D;
	--border:         #E8E1D6;
	--border-strong:  #D8CFC1;

	--font-display: 'Lora', Georgia, 'Times New Roman', serif;
	--font-body:    'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;

	--maxw: 1120px;
	--maxw-narrow: 760px;
	--radius-sm: 8px;
	--radius: 14px;
	--radius-lg: 20px;
	--shadow-sm: 0 1px 2px rgba(30, 27, 24, .06);
	--shadow: 0 10px 30px -12px rgba(30, 27, 24, .18);
	--shadow-header: 0 6px 24px -14px rgba(30, 27, 24, .35);

	--space: clamp(3.5rem, 8vw, 6rem);   /* vertical rhythm between sections */
	--ease: cubic-bezier(.22, .61, .36, 1);
}

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

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

body {
	margin: 0;
	background: var(--cream);
	color: var(--text);
	font-family: var(--font-body);
	font-size: 1rem;
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

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

a { color: var(--terracotta); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--terracotta-dk); }

h1, h2, h3, h4 {
	font-family: var(--font-display);
	font-weight: 600;
	line-height: 1.12;
	color: var(--ink);
	margin: 0 0 .5em;
	letter-spacing: -.01em;
}

p { margin: 0 0 1rem; }
ul { margin: 0; padding: 0; }

address { font-style: normal; }

:focus-visible {
	outline: 3px solid var(--terracotta);
	outline-offset: 2px;
	border-radius: 4px;
}

/* Accessibility helpers */
.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;
}
.skip-link {
	position: absolute; left: 8px; top: -60px;
	background: var(--terracotta); color: #fff;
	padding: .6rem 1rem; border-radius: var(--radius-sm);
	z-index: 1000; transition: top .2s var(--ease);
}
.skip-link:focus { top: 8px; color: #fff; }

/* ---- Layout ----------------------------------------------------------- */
.container {
	width: 100%;
	max-width: var(--maxw);
	margin-inline: auto;
	padding-inline: clamp(1.1rem, 4vw, 2rem);
}
.container--narrow { max-width: var(--maxw-narrow); }

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

.section__head { text-align: center; max-width: 640px; margin: 0 auto clamp(2rem, 5vw, 3rem); }
.section__title { font-size: clamp(1.9rem, 4vw, 2.9rem); margin: 0; }
.section__foot { text-align: center; margin-top: clamp(2rem, 5vw, 3rem); }
.section__empty { text-align: center; color: var(--muted); }

.eyebrow {
	font-family: var(--font-body);
	text-transform: uppercase;
	letter-spacing: .22em;
	font-size: .72rem;
	font-weight: 600;
	color: var(--terracotta);
	margin: 0 0 .9rem;
}

.grid { display: grid; gap: clamp(1rem, 2.5vw, 1.5rem); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }

/* ---- Buttons ---------------------------------------------------------- */
.btn {
	display: inline-flex; align-items: center; justify-content: center;
	gap: .5rem;
	font-family: var(--font-body);
	font-weight: 600; font-size: .95rem;
	line-height: 1;
	padding: .95rem 1.6rem;
	border-radius: var(--radius-sm);
	border: 1px solid transparent;
	cursor: pointer;
	transition: background .2s var(--ease), color .2s var(--ease),
	            border-color .2s var(--ease), transform .1s var(--ease);
}
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--terracotta); color: #fff; }
.btn--primary:hover { background: var(--terracotta-dk); color: #fff; }
.btn--ghost {
	background: transparent; color: var(--terracotta);
	border-color: var(--border-strong);
}
.btn--ghost:hover { background: var(--terracotta-tint); color: var(--terracotta-dk); border-color: var(--terracotta); }
.btn--on-dark { background: var(--surface); color: var(--ink); }
.btn--on-dark:hover { background: var(--cream-deep); color: var(--ink); }
.btn--sm { padding: .7rem 1.15rem; font-size: .88rem; }
.btn--block { width: 100%; }

/* =========================================================================
   Header
   ========================================================================= */
.site-header {
	position: sticky; top: 0; z-index: 100;
	background: var(--cream);
	background: color-mix(in srgb, var(--cream) 88%, transparent);
	-webkit-backdrop-filter: saturate(140%) blur(8px);
	backdrop-filter: saturate(140%) blur(8px);
	border-bottom: 1px solid transparent;
	transition: box-shadow .25s var(--ease), border-color .25s var(--ease), background .25s var(--ease);
}
.site-header.is-stuck {
	box-shadow: var(--shadow-header);
	border-bottom-color: var(--border);
	background: var(--cream);
	background: color-mix(in srgb, var(--cream) 96%, transparent);
}
.site-header__inner {
	display: flex; align-items: center; gap: 1.5rem;
	min-height: 74px;
}

.brand { display: inline-flex; align-items: center; gap: .55rem; color: var(--ink); }
.brand__mark {
	display: grid; place-items: center;
	width: 38px; height: 38px;
	border-radius: 50%;
	background: var(--terracotta-tint);
	color: var(--terracotta);
}
.brand__text { font-family: var(--font-display); font-weight: 600; font-size: 1.18rem; letter-spacing: -.01em; }
.custom-logo { max-height: 46px; width: auto; }

.site-nav { margin-inline-start: .5rem; }
.nav-menu { display: flex; align-items: center; gap: .35rem; list-style: none; }
.nav-menu a {
	display: inline-block;
	color: var(--text);
	font-weight: 500; font-size: .95rem;
	padding: .55rem .8rem;
	border-radius: var(--radius-sm);
	transition: background .2s var(--ease), color .2s var(--ease);
}
.nav-menu a:hover,
.nav-menu .current-menu-item > a,
.nav-menu .current_page_item > a {
	color: var(--terracotta);
	background: var(--terracotta-tint);
}

.site-header__actions { display: flex; align-items: center; gap: .65rem; margin-inline-start: auto; }
.icon-btn {
	display: grid; place-items: center;
	width: 42px; height: 42px;
	border: 1px solid var(--border);
	background: var(--surface);
	color: var(--text);
	border-radius: 50%;
	cursor: pointer;
	transition: border-color .2s var(--ease), color .2s var(--ease), background .2s var(--ease);
}
.icon-btn:hover { color: var(--terracotta); border-color: var(--terracotta); }
.header-phone {
	display: inline-flex; align-items: center; gap: .45rem;
	color: var(--text); font-weight: 600; font-size: .92rem;
	white-space: nowrap;
}
.header-phone svg { color: var(--terracotta); }
.header-phone:hover { color: var(--terracotta); }

/* Hamburger (hidden on desktop) */
.hamburger {
	display: none;
	width: 44px; height: 44px;
	background: transparent; border: 0; cursor: pointer;
	padding: 0;
}
.hamburger__box { display: block; position: relative; width: 24px; height: 16px; margin: 0 auto; }
.hamburger__inner, .hamburger__inner::before, .hamburger__inner::after {
	position: absolute; left: 0; width: 24px; height: 2px;
	background: var(--ink); border-radius: 2px;
	transition: transform .25s var(--ease), top .25s var(--ease), opacity .2s var(--ease);
}
.hamburger__inner { top: 50%; margin-top: -1px; }
.hamburger__inner::before { content: ""; top: -7px; }
.hamburger__inner::after  { content: ""; top: 7px; }
[aria-expanded="true"] .hamburger__inner { background: transparent; }
[aria-expanded="true"] .hamburger__inner::before { top: 0; transform: rotate(45deg); background: var(--terracotta); }
[aria-expanded="true"] .hamburger__inner::after  { top: 0; transform: rotate(-45deg); background: var(--terracotta); }

/* =========================================================================
   Hero
   ========================================================================= */
.hero { padding-block: clamp(2.5rem, 6vw, 4.5rem) clamp(3rem, 7vw, 5rem); }
.hero__grid {
	display: grid;
	grid-template-columns: 1.05fr .95fr;
	gap: clamp(2rem, 5vw, 4rem);
	align-items: center;
}
.hero__content { max-width: 34rem; }
.hero__title {
	font-size: clamp(2.6rem, 6vw, 4.2rem);
	line-height: 1.04;
	margin: 0 0 1.2rem;
}
.hero__text { color: var(--muted); font-size: 1.05rem; margin-bottom: 1.8rem; }
.hero__media {
	background: var(--cream-deep);
	border-radius: var(--radius-lg);
	overflow: hidden;
	aspect-ratio: 4 / 5;
	box-shadow: var(--shadow);
}
.hero__img { width: 100%; height: 100%; object-fit: cover; }
.hero__placeholder,
.address__map-placeholder {
	width: 100%; height: 100%;
	display: grid; place-items: center;
	color: var(--muted); font-size: .9rem; text-align: center;
	padding: 1.5rem;
	background:
		repeating-linear-gradient(45deg, transparent 0 14px, rgba(140,74,42,.03) 14px 28px),
		var(--cream-deep);
}

/* Page hero (interior pages) */
.page-hero { padding-block: clamp(2.5rem, 6vw, 4.5rem) clamp(1.5rem, 4vw, 2.5rem); }
.page-hero__center { text-align: center; }
.page-hero__title { font-size: clamp(2.2rem, 5vw, 3.4rem); margin: 0 0 1rem; }
.page-hero__lead { color: var(--muted); font-size: 1.08rem; }
.page-hero--split .page-hero__grid {
	display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center;
}
.page-hero__media { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 4/5; background: var(--cream-deep); }
.page-hero__img { width: 100%; height: 100%; object-fit: cover; }
.page-hero__actions { margin-top: 1.5rem; }

/* =========================================================================
   Cards
   ========================================================================= */
.card {
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 1.6rem;
	transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--border-strong); }
.card__title { font-size: 1.28rem; margin: 0 0 .55rem; }
.card__title a { color: var(--ink); }
.card__title a:hover { color: var(--terracotta); }
.card__excerpt { color: var(--muted); font-size: .96rem; margin-bottom: 1rem; }
.card__excerpt p:last-child { margin-bottom: 0; }
.card__meta { color: var(--muted); font-size: .82rem; text-transform: uppercase; letter-spacing: .08em; margin-bottom: .4rem; }
.card__link {
	display: inline-flex; align-items: center; gap: .4rem;
	font-weight: 600; font-size: .92rem; color: var(--terracotta);
}
.card__link svg { transition: transform .2s var(--ease); }
.card__link:hover svg { transform: translateX(4px); }

/* Cards with media */
.card--case, .card--post { padding: 0; overflow: hidden; }
.card--case .card__body, .card--post .card__body { padding: 1.5rem; }
.card__media { display: block; aspect-ratio: 3 / 2; overflow: hidden; background: var(--cream-deep); }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s var(--ease); }
.card:hover .card__media img { transform: scale(1.04); }

/* =========================================================================
   Testimonials slider
   ========================================================================= */
.section--testimonials { background: var(--cream-deep); }
.slider { position: relative; display: flex; align-items: center; gap: .5rem; }
.slider__track {
	display: grid;
	grid-auto-flow: column;
	grid-auto-columns: minmax(0, calc(50% - .75rem));
	gap: 1.5rem;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	padding: .5rem;
	scrollbar-width: none;
	flex: 1;
}
.slider__track::-webkit-scrollbar { display: none; }
.slide { scroll-snap-align: center; }
.testimonial {
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 2rem;
	margin: 0;
	position: relative;
}
.testimonial__quote-mark {
	font-family: var(--font-display);
	font-size: 3rem; line-height: 1; color: var(--terracotta);
	display: block; margin-bottom: .4rem;
}
.testimonial__text { margin: 0 0 1.4rem; font-style: italic; color: var(--text); }
.testimonial__text p:last-child { margin-bottom: 0; }
.testimonial__author { display: flex; align-items: center; gap: .8rem; }
.testimonial__avatar {
	display: grid; place-items: center;
	width: 44px; height: 44px; border-radius: 50%;
	background: var(--terracotta-tint); color: var(--terracotta);
	font-weight: 600; font-size: .8rem; text-transform: uppercase;
}
.testimonial__name { font-weight: 600; color: var(--ink); }
.slider__nav {
	flex: 0 0 auto;
	width: 44px; height: 44px; border-radius: 50%;
	border: 1px solid var(--border-strong); background: var(--surface);
	color: var(--ink); font-size: 1.4rem; line-height: 1; cursor: pointer;
	transition: background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
}
.slider__nav:hover { background: var(--terracotta); color: #fff; border-color: var(--terracotta); }

/* =========================================================================
   Address
   ========================================================================= */
.address__grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 1.5rem; }
.address__map { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); min-height: 320px; background: var(--cream-deep); }
.address__map iframe { width: 100%; height: 100%; min-height: 320px; border: 0; display: block; }
.address__card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: clamp(1.6rem, 4vw, 2.4rem); }
.address__city { font-size: 1.5rem; margin: 0 0 .1rem; }
.address__region { color: var(--muted); margin: 0 0 1.4rem; }

.contact-list { list-style: none; display: grid; gap: .7rem; }
.contact-list a { color: var(--text); }
.contact-list a:hover { color: var(--terracotta); }
.contact-list--lg { gap: 1rem; }
.contact-list__item { display: flex; align-items: flex-start; gap: .7rem; }
.contact-list__ico { flex: 0 0 auto; }

/* =========================================================================
   Closing CTA band (forest green)
   ========================================================================= */
.cta-band {
	background: linear-gradient(160deg, var(--forest) 0%, var(--forest-dk) 100%);
	color: #fff;
	padding-block: clamp(3.5rem, 8vw, 6rem);
	text-align: center;
}
.cta-band--compact { padding-block: clamp(2.5rem, 6vw, 4rem); margin-top: var(--space); }
.cta-band__inner { max-width: 620px; margin-inline: auto; }
.cta-band__title { color: #fff; font-size: clamp(2rem, 5vw, 3rem); margin: 0 0 .8rem; }
.cta-band__text { color: rgba(255,255,255,.82); margin-bottom: 1.8rem; }

/* =========================================================================
   Content typography (entry-content)
   ========================================================================= */
.entry-content { font-size: 1.05rem; }
.entry-content > * + * { margin-top: 1.1rem; }
.entry-content h2 { font-size: 1.8rem; margin-top: 2.2rem; }
.entry-content h3 { font-size: 1.4rem; margin-top: 1.8rem; }
.entry-content ul, .entry-content ol { padding-inline-start: 1.3rem; }
.entry-content li { margin-bottom: .4rem; }
.entry-content img { border-radius: var(--radius); margin-block: 1.5rem; }
.entry-content blockquote {
	border-left: 3px solid var(--terracotta);
	padding-left: 1.2rem; margin-inline: 0; color: var(--muted); font-style: italic;
}
.entry-content a { text-decoration: underline; text-underline-offset: 3px; }
.single__media { margin: 0 0 2rem; border-radius: var(--radius); overflow: hidden; }
.catalogue__group { font-size: 1.6rem; margin: 2.5rem 0 1.2rem; }
.catalogue__group:first-child { margin-top: 0; }

/* Search results */
.search-results { list-style: none; display: grid; gap: 1.5rem; }
.search-result { border-bottom: 1px solid var(--border); padding-bottom: 1.5rem; }
.search-result__title { font-size: 1.35rem; margin: 0 0 .3rem; }
.search-result__excerpt { color: var(--muted); margin: 0; }

/* Pagination */
.pagination { margin-top: 3rem; display: flex; justify-content: center; }
.pagination .nav-links { display: flex; gap: .4rem; flex-wrap: wrap; }
.pagination .page-numbers {
	display: grid; place-items: center; min-width: 42px; height: 42px; padding: 0 .5rem;
	border: 1px solid var(--border); border-radius: var(--radius-sm);
	color: var(--text); background: var(--surface);
}
.pagination .page-numbers.current { background: var(--terracotta); color: #fff; border-color: var(--terracotta); }
.pagination .page-numbers:hover:not(.current) { border-color: var(--terracotta); color: var(--terracotta); }

/* =========================================================================
   Forms
   ========================================================================= */
.search-form__row { display: flex; gap: .6rem; }
.search-form__field {
	flex: 1;
	font: inherit;
	padding: .85rem 1rem;
	border: 1px solid var(--border-strong);
	border-radius: var(--radius-sm);
	background: var(--surface); color: var(--text);
}
.search-form__field:focus-visible { outline-offset: 0; border-color: var(--terracotta); }

/* =========================================================================
   Modals (search + booking)
   ========================================================================= */
.modal {
	position: fixed; inset: 0; z-index: 200;
	display: grid; place-items: start center;
	padding: clamp(1rem, 6vh, 5rem) 1rem;
}
.modal[hidden] { display: none; }
.modal__overlay { position: absolute; inset: 0; background: rgba(30,27,24,.55); -webkit-backdrop-filter: blur(2px); backdrop-filter: blur(2px); animation: fade .2s var(--ease); }
.modal__panel {
	position: relative; z-index: 1;
	width: 100%; max-width: 520px;
	background: var(--cream); border-radius: var(--radius-lg);
	box-shadow: var(--shadow); padding: clamp(1.6rem, 4vw, 2.4rem);
	animation: pop .25s var(--ease);
}
.modal__title { font-size: 1.5rem; margin: 0 0 1.2rem; }
.modal__lead { color: var(--muted); }
.modal__close {
	position: absolute; top: .8rem; right: .8rem;
	width: 40px; height: 40px; border-radius: 50%;
	border: 0; background: transparent; color: var(--muted);
	font-size: 1.6rem; line-height: 1; cursor: pointer;
	transition: background .2s var(--ease), color .2s var(--ease);
}
.modal__close:hover { background: var(--terracotta-tint); color: var(--terracotta); }
.modal__contact { display: grid; gap: .7rem; margin-top: 1rem; }
.modal__hint { font-size: .82rem; color: var(--muted); margin-top: 1.2rem; margin-bottom: 0; }
@keyframes fade { from { opacity: 0; } }
@keyframes pop { from { opacity: 0; transform: translateY(12px); } }

/* =========================================================================
   Footer
   ========================================================================= */
.site-footer { background: var(--ink); color: rgba(255,255,255,.72); margin-top: 0; }
.site-footer__grid {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr;
	gap: 2.5rem;
	padding-block: clamp(3rem, 6vw, 4.5rem);
}
.site-footer .brand__text, .site-footer .custom-logo-link { color: #fff; }
.site-footer__eyebrow { color: rgba(255,255,255,.55); font-size: .78rem; text-transform: uppercase; letter-spacing: .16em; margin: 1rem 0 .6rem; }
.site-footer__desc { color: rgba(255,255,255,.6); font-size: .95rem; max-width: 30ch; }
.site-footer__heading { color: #fff; font-family: var(--font-body); font-size: .8rem; text-transform: uppercase; letter-spacing: .14em; margin: 0 0 1.1rem; }
.footer-menu, .site-footer__contacts .contact-list { list-style: none; display: grid; gap: .7rem; }
.footer-menu a, .site-footer__contacts a { color: rgba(255,255,255,.72); }
.footer-menu a:hover, .site-footer__contacts a:hover { color: #fff; }
.site-footer__contacts address { color: rgba(255,255,255,.72); }
.site-footer__bar { border-top: 1px solid rgba(255,255,255,.1); }
.site-footer__bar-inner { display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding-block: 1.4rem; flex-wrap: wrap; }
.site-footer__copy { margin: 0; font-size: .85rem; color: rgba(255,255,255,.55); }
.site-footer__legal { margin: 0; display: flex; gap: 1.2rem; font-size: .85rem; }
.site-footer__legal a { color: rgba(255,255,255,.55); }
.site-footer__legal a:hover { color: #fff; }

/* =========================================================================
   About page — education block
   ========================================================================= */
.about-approach .entry-content { font-size: 1.08rem; }
.about-approach .entry-content h2 { font-size: clamp(1.7rem, 3.5vw, 2.3rem); }

.section--edu { background: var(--cream-deep); }
.edu__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(2rem, 5vw, 4rem);
	align-items: center;
}
.section__title--left { text-align: left; }
.edu__content .eyebrow { margin-bottom: .7rem; }
.edu__content .section__title { margin-bottom: 1.2rem; }
.edu__text { color: var(--muted); font-size: 1.02rem; }
.edu__text p { margin-bottom: 1rem; }
.edu__text p:last-child { margin-bottom: 0; }

.edu__logos {
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	padding: clamp(1.6rem, 4vw, 2.6rem);
	box-shadow: var(--shadow-sm);
}
.edu__logo-list {
	list-style: none; margin: 0; padding: 0;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: clamp(1.2rem, 3vw, 2rem);
	align-items: center;
}
.edu__logo {
	display: grid; place-items: center;
	min-height: 64px;
}
.edu__logo img {
	max-height: 60px; width: auto; margin: 0 auto;
	object-fit: contain;
}
.edu__logo-text {
	font-family: var(--font-display);
	font-weight: 600; font-size: 1rem;
	color: var(--ink); text-align: center;
}

@media (max-width: 860px) {
	.edu__grid { grid-template-columns: 1fr; }
	.edu__logos { max-width: 520px; }
}
@media (max-width: 420px) {
	.edu__logo-list { grid-template-columns: 1fr; }
}

/* =========================================================================
   Price list (Прайс) — category panels
   ========================================================================= */
.price-page { max-width: 880px; margin-inline: auto; }

.price-cat {
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	padding: clamp(1.3rem, 3vw, 2rem) clamp(1.2rem, 3vw, 2.1rem);
	box-shadow: var(--shadow-sm);
	margin-bottom: 1.5rem;
}
.price-cat:last-of-type { margin-bottom: 0; }

.price-cat__head {
	display: flex; align-items: center; gap: .9rem;
	padding-bottom: 1rem; margin-bottom: .35rem;
	border-bottom: 1px solid var(--border);
}
.price-cat__icon {
	display: grid; place-items: center;
	width: 46px; height: 46px; flex: 0 0 auto;
	border-radius: 50%;
	background: var(--terracotta-tint);
	color: var(--terracotta);
}
.price-cat__title { margin: 0; font-size: clamp(1.3rem, 2.5vw, 1.65rem); }
.price-cat__count {
	margin-left: auto; flex: 0 0 auto;
	font-family: var(--font-body);
	font-size: .72rem; font-weight: 600;
	text-transform: uppercase; letter-spacing: .12em;
	color: var(--muted);
}

.price-list { list-style: none; margin: 0; padding: 0; }
.price-item {
	display: flex; align-items: baseline; gap: 1rem;
	padding: .9rem .5rem;
	border-radius: var(--radius-sm);
	transition: background .18s var(--ease);
}
.price-item + .price-item { border-top: 1px solid var(--border); }
.price-item:hover { background: var(--cream-deep); }
.price-item__main { display: flex; flex-direction: column; min-width: 0; }
.price-item__name { font-weight: 600; color: var(--ink); font-size: 1.02rem; }
.price-item__desc { font-size: .85rem; color: var(--muted); margin-top: .15rem; }

/* Dotted leader linking name to price */
.price-item__dots {
	flex: 1; align-self: end;
	margin-bottom: .42rem; min-width: 1.2rem;
	border-bottom: 2px dotted var(--border-strong);
}
.price-item__value {
	flex: 0 0 auto; text-align: right; white-space: nowrap;
	font-family: var(--font-display); font-weight: 600;
	font-size: 1.3rem; color: var(--terracotta); line-height: 1.15;
}
.price-item__cur {
	font-family: var(--font-body); font-weight: 600;
	font-size: .68rem; text-transform: uppercase; letter-spacing: .08em;
	color: var(--muted); margin-left: .28rem;
}
.price-item__note {
	display: block; margin-top: .1rem;
	font-family: var(--font-body); font-weight: 500;
	font-size: .72rem; text-transform: uppercase; letter-spacing: .05em;
	color: var(--muted);
}

/* Note callout */
.price-note {
	display: flex; align-items: flex-start; gap: .7rem;
	max-width: 880px; margin: 1.8rem auto 0;
	background: var(--cream-deep);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 1rem 1.2rem;
	font-size: .92rem; color: var(--muted); font-style: italic;
}
.price-note__ico { color: var(--terracotta); flex: 0 0 auto; margin-top: .1rem; }

@media (max-width: 480px) {
	.price-item__dots { display: none; }
	.price-item { gap: .9rem; padding: .8rem .25rem; }
	.price-item__value { font-size: 1.15rem; }
}

/* =========================================================================
   Responsive
   ========================================================================= */
@media (max-width: 960px) {
	.grid--3 { grid-template-columns: repeat(2, 1fr); }
	.hero__grid, .page-hero--split .page-hero__grid { grid-template-columns: 1fr; }
	.hero__media, .page-hero__media { max-width: 460px; margin-inline: auto; }
	.address__grid { grid-template-columns: 1fr; }
	.slider__track { grid-auto-columns: minmax(0, 85%); }
	.site-footer__grid { grid-template-columns: 1fr 1fr; }
	.site-footer__brand { grid-column: 1 / -1; }
}

/* Mobile nav breakpoint */
@media (max-width: 820px) {
	.hamburger { display: block; }
	.header-phone { display: none; }
	.site-nav {
		position: fixed; inset: 74px 0 auto 0;
		background: var(--cream);
		border-bottom: 1px solid var(--border);
		box-shadow: var(--shadow);
		padding: 1rem clamp(1.1rem, 4vw, 2rem) 1.4rem;
		transform: translateY(-8px);
		opacity: 0; visibility: hidden; pointer-events: none;
		transition: opacity .22s var(--ease), transform .22s var(--ease), visibility .22s;
		margin: 0;
	}
	.site-nav.is-open { opacity: 1; visibility: visible; transform: none; pointer-events: auto; }
	.nav-menu { flex-direction: column; align-items: stretch; gap: .1rem; }
	.nav-menu a { display: block; padding: .85rem 1rem; font-size: 1.02rem; }
	.header-cta { display: none; }        /* CTA moves into the open menu context via phone/booking modal */
	.site-header__actions { gap: .4rem; }
}

@media (max-width: 560px) {
	.grid--3 { grid-template-columns: 1fr; }
	.slider__track { grid-auto-columns: minmax(0, 100%); }
	.slider__nav { display: none; }         /* swipe on touch */
	.site-footer__grid { grid-template-columns: 1fr; }
	.site-footer__bar-inner { flex-direction: column; align-items: flex-start; }
}

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

/* Lock body scroll when a modal / mobile nav is open */
body.no-scroll { overflow: hidden; }
