/*
Theme Name: Paprika Beauty Studio
Theme URI: https://example.com/
Author: Paprika Studio
Author URI: https://example.com/
Description: Современная, адаптивная тема WordPress для студии красоты Paprika. Тёплая палитра, точечный фон, анимации при прокрутке и всплывающие блоки записи — на основе фирменного стиля студии.
Version: 1.0.0
Requires at least: 6.0
Requires PHP: 7.4
Tested up to: 6.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: paprika
*/

/* -------------------------------------------------- */
/* 1. Variables & reset                                */
/* -------------------------------------------------- */
:root {
	--ink: #3d2a1d;
	--brown: #6a4630;
	--brown-soft: #8a6a52;
	--accent: #bd7a4f;
	--accent-dark: #a05f37;
	--cream: #fdfbf6;
	--cream-deep: #f8f2e8;
	--card: #fbead2;
	--card-deep: #f6e0bf;
	--dot-color: rgba(178, 129, 96, 0.4);
	--green-bg: #dcead2;
	--green-bg-deep: #cfe3c4;
	--green-text: #3f6b46;
	--green-border: #aecda0;
	--shadow-lg: 0 30px 70px -30px rgba(61, 42, 29, 0.35);
	--shadow-md: 0 16px 40px -18px rgba(61, 42, 29, 0.3);
	--radius-xl: 32px;
	--radius-lg: 24px;
	--radius-md: 16px;
	--font-display: "Playfair Display", "Georgia", serif;
	--font-body: "PT Serif", "Georgia", serif;
	--ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--cream);
	color: var(--ink);
	font-family: var(--font-body);
	font-size: 17px;
	line-height: 1.6;
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
}

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

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

ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

h1, h2, h3, h4 {
	font-family: var(--font-display);
	color: var(--ink);
	margin: 0 0 0.5em;
	font-weight: 600;
	line-height: 1.15;
}

p {
	margin: 0 0 1em;
}

.container {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 24px;
}

.dots-bg {
	background-image: radial-gradient(var(--dot-color) 1.6px, transparent 1.7px);
	background-size: 26px 26px;
}

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

.eyebrow {
	display: inline-block;
	text-transform: uppercase;
	letter-spacing: 0.14em;
	font-size: 13px;
	color: var(--accent-dark);
	font-family: var(--font-body);
	font-weight: 700;
	margin-bottom: 14px;
}

.section {
	position: relative;
	padding: 72px 0;
}

.section--tight {
	padding: 48px 0;
}

.section-title {
	font-size: clamp(28px, 4.5vw, 44px);
	text-align: center;
	margin-bottom: 12px;
}

.section-sub {
	text-align: center;
	max-width: 640px;
	margin: 0 auto 40px;
	color: var(--brown-soft);
	font-size: 18px;
}

/* -------------------------------------------------- */
/* 2. Buttons                                          */
/* -------------------------------------------------- */
.btn {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 16px 30px;
	border-radius: 14px;
	font-family: var(--font-display);
	font-weight: 600;
	font-size: 16px;
	letter-spacing: 0.03em;
	text-transform: uppercase;
	border: 1.5px solid transparent;
	cursor: pointer;
	transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.3s ease;
	overflow: hidden;
	isolation: isolate;
}

.btn::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.55) 50%, transparent 70%);
	transform: translateX(-120%);
	transition: transform 0.7s ease;
	z-index: -1;
}

.btn:hover::after {
	transform: translateX(120%);
}

.btn:hover {
	transform: translateY(-3px);
}

.btn-primary {
	background: var(--green-bg);
	border-color: var(--green-border);
	color: var(--green-text);
	box-shadow: var(--shadow-md);
}

.btn-primary:hover {
	background: var(--green-bg-deep);
	box-shadow: 0 20px 40px -18px rgba(63, 107, 70, 0.45);
}

.btn-outline {
	background: transparent;
	border-color: var(--brown);
	color: var(--brown);
}

.btn-outline:hover {
	background: var(--brown);
	color: var(--cream);
}

.btn-block {
	width: 100%;
}

/* -------------------------------------------------- */
/* 3. Header                                           */
/* -------------------------------------------------- */
.site-header {
	position: sticky;
	top: 0;
	z-index: 60;
	background: rgba(253, 251, 246, 0.85);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid transparent;
	transition: box-shadow 0.4s ease, border-color 0.4s ease, padding 0.4s ease;
}

.site-header.is-scrolled {
	box-shadow: 0 10px 30px -20px rgba(61, 42, 29, 0.4);
	border-color: rgba(178, 129, 96, 0.2);
}

.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 18px 0;
	transition: padding 0.4s ease;
}

.site-header.is-scrolled .site-header__inner {
	padding: 12px 0;
}

.logo {
	display: flex;
	flex-direction: column;
	line-height: 1;
}

.logo__name {
	font-family: var(--font-display);
	font-style: italic;
	font-weight: 700;
	font-size: 30px;
	color: var(--ink);
}

.logo__sub {
	font-family: var(--font-body);
	font-size: 11px;
	letter-spacing: 0.35em;
	text-transform: uppercase;
	color: var(--brown-soft);
	margin-top: 4px;
}

.nav-menu {
	display: none;
	align-items: center;
	gap: 34px;
	font-size: 15px;
	color: var(--brown);
}

.nav-menu a {
	position: relative;
	padding: 4px 0;
}

.nav-menu a::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -2px;
	width: 0;
	height: 1.5px;
	background: var(--accent);
	transition: width 0.3s var(--ease);
}

.nav-menu a:hover::after,
.nav-menu a.is-active::after {
	width: 100%;
}

.header-actions {
	display: flex;
	align-items: center;
	gap: 16px;
}

.header-actions .btn {
	padding: 12px 22px;
	font-size: 13px;
	display: none;
}

.burger {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 42px;
	height: 42px;
	border-radius: 12px;
	border: 1.5px solid var(--card-deep);
	background: var(--cream-deep);
	cursor: pointer;
}

.burger span {
	display: block;
	height: 2px;
	margin: 0 9px;
	background: var(--ink);
	border-radius: 2px;
	transition: transform 0.35s var(--ease), opacity 0.35s var(--ease);
}

.burger.is-active span:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}

.burger.is-active span:nth-child(2) {
	opacity: 0;
}

.burger.is-active span:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.45s var(--ease);
	background: var(--cream-deep);
	border-bottom: 1px solid var(--card-deep);
}

.mobile-menu.is-open {
	max-height: 420px;
}

.mobile-menu__inner {
	padding: 10px 24px 26px;
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.mobile-nav-menu {
	display: flex;
	flex-direction: column;
}

.mobile-menu a {
	padding: 12px 4px;
	font-size: 17px;
	border-bottom: 1px solid rgba(178, 129, 96, 0.15);
	font-family: var(--font-display);
}

.mobile-menu .btn {
	margin-top: 16px;
}

/* -------------------------------------------------- */
/* 4. Hero                                             */
/* -------------------------------------------------- */
.hero {
	position: relative;
	padding: 56px 0 40px;
	overflow: hidden;
}

.hero__grid {
	display: grid;
	gap: 40px;
	align-items: center;
}

.hero__text h1 {
	font-size: clamp(32px, 6vw, 52px);
	margin-bottom: 18px;
}

.hero__lede {
	font-size: 19px;
	color: var(--brown);
	max-width: 460px;
	margin-bottom: 22px;
}

.hero__gift {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 10px 18px;
	border-radius: 999px;
	background: var(--card);
	border: 1px dashed var(--accent);
	color: var(--accent-dark);
	font-size: 14px;
	margin-bottom: 26px;
}

.hero__actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 18px;
	margin-bottom: 10px;
}

.hero__hint {
	font-size: 13px;
	color: var(--brown-soft);
}

.hero__image-wrap {
	position: relative;
}

.hero__image {
	position: relative;
	border-radius: var(--radius-xl);
	overflow: hidden;
	box-shadow: var(--shadow-lg);
	aspect-ratio: 4 / 4.1;
}

.hero__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 8s var(--ease);
}

.hero__image:hover img {
	transform: scale(1.08);
}

.hero__floating {
	position: absolute;
	bottom: -22px;
	left: -18px;
	background: var(--cream);
	border-radius: var(--radius-md);
	box-shadow: var(--shadow-md);
	padding: 16px 20px;
	display: flex;
	align-items: center;
	gap: 12px;
	animation: float 5s ease-in-out infinite;
}

.hero__floating strong {
	display: block;
	font-family: var(--font-display);
	font-size: 20px;
	color: var(--accent-dark);
}

.hero__floating span {
	font-size: 12px;
	color: var(--brown-soft);
}

.hero__dot-deco {
	position: absolute;
	inset: 0;
	pointer-events: none;
	z-index: -1;
}

@keyframes float {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-10px); }
}

/* -------------------------------------------------- */
/* 5. Compare "Знакомо?"                               */
/* -------------------------------------------------- */
.compare-intro {
	display: grid;
	gap: 28px;
	align-items: center;
	margin-bottom: 56px;
}

.compare-intro img {
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-md);
}

.compare-intro__title {
	font-size: 15px;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--accent-dark);
	margin-bottom: 10px;
}

.compare-intro h3 {
	font-size: clamp(24px, 3.6vw, 32px);
}

.compare {
	position: relative;
	display: grid;
	gap: 30px;
	text-align: center;
	align-items: center;
}

.compare::before {
	content: "vs";
	display: none;
}

.compare__side {
	position: relative;
}

.compare__side img {
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-md);
	aspect-ratio: 3/3.4;
	object-fit: cover;
	width: 100%;
	transition: transform 0.6s var(--ease);
}

.compare__side:hover img {
	transform: rotate(-1.5deg) scale(1.03);
}

.compare__side h4 {
	margin-top: 16px;
	font-size: 22px;
}

.compare__divider {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	color: var(--accent);
}

.compare__divider .line {
	width: 1px;
	height: 60px;
	background: linear-gradient(var(--accent), transparent);
}

/* -------------------------------------------------- */
/* 6. Quote banners                                    */
/* -------------------------------------------------- */
.banner-quote {
	background: linear-gradient(120deg, var(--card), var(--card-deep));
	border-radius: var(--radius-lg);
	padding: 40px 32px;
	text-align: center;
	font-family: var(--font-display);
	font-size: clamp(20px, 3vw, 30px);
	color: var(--brown);
	position: relative;
	overflow: hidden;
}

.banner-quote::before,
.banner-quote::after {
	content: "";
	position: absolute;
	top: 50%;
	width: 18%;
	height: 1px;
	background: var(--accent);
	opacity: 0.5;
	display: none;
}

.banner-quote::before { left: 32px; }
.banner-quote::after { right: 32px; }

.banner-quote em {
	font-style: italic;
	color: var(--accent-dark);
}

/* -------------------------------------------------- */
/* 7. Services grid + checklist                        */
/* -------------------------------------------------- */
.services-wrap {
	display: grid;
	gap: 40px;
	align-items: center;
}

.services-photo-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 14px;
}

.services-photo-grid img {
	border-radius: var(--radius-md);
	object-fit: cover;
	width: 100%;
	height: 100%;
	aspect-ratio: 1/1;
	box-shadow: var(--shadow-md);
	transition: transform 0.5s var(--ease);
}

.services-photo-grid a:nth-child(odd) img {
	margin-top: 22px;
}

.services-photo-grid img:hover {
	transform: translateY(-6px) scale(1.03);
}

.checklist {
	display: flex;
	flex-direction: column;
	gap: 14px;
	margin: 26px 0 32px;
}

.checklist li {
	display: flex;
	align-items: center;
	gap: 14px;
	font-size: 17px;
	color: var(--brown);
	opacity: 0;
	transform: translateX(-14px);
	transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}

.is-revealed .checklist li {
	opacity: 1;
	transform: translateX(0);
}

.checklist li:nth-child(1) { transition-delay: 0.05s; }
.checklist li:nth-child(2) { transition-delay: 0.12s; }
.checklist li:nth-child(3) { transition-delay: 0.19s; }
.checklist li:nth-child(4) { transition-delay: 0.26s; }
.checklist li:nth-child(5) { transition-delay: 0.33s; }
.checklist li:nth-child(6) { transition-delay: 0.4s; }
.checklist li:nth-child(7) { transition-delay: 0.47s; }

.tick {
	flex: none;
	width: 26px;
	height: 26px;
	border-radius: 50%;
	background: var(--green-bg);
	color: var(--green-text);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
}

/* -------------------------------------------------- */
/* 8. Ticket coupon                                    */
/* -------------------------------------------------- */
.ticket-section {
	text-align: center;
}

.ticket {
	position: relative;
	max-width: 640px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 74px;
	background: linear-gradient(135deg, var(--card), var(--card-deep));
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-lg);
	border: 1px solid rgba(160, 95, 55, 0.25);
	overflow: hidden;
}

.ticket__main {
	padding: 34px 30px;
	text-align: left;
	position: relative;
}

.ticket__amount {
	font-family: var(--font-display);
	font-size: clamp(34px, 6vw, 50px);
	color: var(--accent-dark);
	border-bottom: 1px solid rgba(160, 95, 55, 0.35);
	padding-bottom: 14px;
	margin-bottom: 14px;
	display: inline-block;
}

.ticket__note {
	color: var(--brown);
	font-size: 15px;
}

.ticket__stub {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	border-left: 2px dashed rgba(160, 95, 55, 0.4);
}

.ticket__stub span {
	writing-mode: vertical-rl;
	transform: rotate(180deg);
	font-family: var(--font-display);
	font-style: italic;
	font-weight: 700;
	font-size: 20px;
	color: var(--accent-dark);
	letter-spacing: 0.05em;
}

.ticket__stub::before,
.ticket__stub::after {
	content: "";
	position: absolute;
	left: -13px;
	width: 26px;
	height: 26px;
	background: var(--cream);
	border-radius: 50%;
}

.ticket__stub::before { top: -13px; }
.ticket__stub::after { bottom: -13px; }

.ticket::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(115deg, transparent 40%, rgba(255, 255, 255, 0.5) 50%, transparent 60%);
	transform: translateX(-140%);
	animation: shine 5s ease-in-out infinite;
	pointer-events: none;
}

@keyframes shine {
	0%, 60%, 100% { transform: translateX(-140%); }
	80% { transform: translateX(140%); }
}

.ticket-section .btn {
	margin-top: 30px;
}

/* -------------------------------------------------- */
/* 9. Service detail cards                             */
/* -------------------------------------------------- */
.service-card {
	display: grid;
	gap: 28px;
	align-items: center;
	background: linear-gradient(160deg, var(--card), var(--card-deep));
	border-radius: var(--radius-xl);
	padding: 26px;
	margin-bottom: 26px;
	box-shadow: var(--shadow-md);
}

.service-card__image {
	border-radius: var(--radius-lg);
	overflow: hidden;
	aspect-ratio: 4/3.3;
}

.service-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s var(--ease);
}

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

.service-card h3 {
	font-size: clamp(24px, 3.4vw, 32px);
	margin-bottom: 10px;
}

.service-card__lede {
	color: var(--brown);
	font-size: 17px;
	margin-bottom: 14px;
}

.service-card__list {
	display: flex;
	flex-direction: column;
	gap: 6px;
	margin-bottom: 16px;
	color: var(--brown);
}

.service-card__footnote {
	font-style: italic;
	color: var(--accent-dark);
	margin-bottom: 20px;
}

/* -------------------------------------------------- */
/* 10. Lifestyle gallery                               */
/* -------------------------------------------------- */
.gallery {
	display: grid;
	gap: 18px;
}

.gallery figure {
	position: relative;
	margin: 0;
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow-md);
	cursor: zoom-in;
}

.gallery img {
	width: 100%;
	height: 100%;
	aspect-ratio: 3/3.6;
	object-fit: cover;
	transition: transform 0.6s var(--ease);
}

.gallery figure:hover img {
	transform: scale(1.08);
}

.gallery figcaption {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 22px 20px;
	background: linear-gradient(0deg, rgba(61, 42, 29, 0.75), transparent);
	color: #fff;
	font-family: var(--font-display);
	font-style: italic;
	font-size: 20px;
}

/* -------------------------------------------------- */
/* 11. About / stats                                   */
/* -------------------------------------------------- */
.about {
	display: grid;
	gap: 40px;
	align-items: center;
}

.about img {
	border-radius: var(--radius-xl);
	box-shadow: var(--shadow-lg);
	aspect-ratio: 4/3.4;
	object-fit: cover;
	width: 100%;
}

.about-stats {
	display: flex;
	flex-direction: column;
	gap: 22px;
	margin: 26px 0 30px;
}

.about-stats li {
	display: flex;
	align-items: baseline;
	gap: 16px;
}

.about-stats .num {
	font-family: var(--font-display);
	font-size: 40px;
	color: var(--accent-dark);
	min-width: 88px;
}

.about-stats .label {
	color: var(--brown);
	font-size: 16px;
	max-width: 320px;
}

.about-quote {
	text-align: center;
	margin-top: 60px;
}

.about-quote h3 {
	font-size: clamp(22px, 3.4vw, 30px);
}

/* -------------------------------------------------- */
/* 12. Final CTA                                       */
/* -------------------------------------------------- */
.final-cta {
	text-align: center;
}

.final-cta h2 {
	font-size: clamp(24px, 4vw, 36px);
}

.final-cta em {
	display: block;
	color: var(--accent-dark);
	font-style: italic;
	margin-bottom: 30px;
}

/* -------------------------------------------------- */
/* 13. Contacts / map                                  */
/* -------------------------------------------------- */
.contacts {
	background: linear-gradient(160deg, var(--card), var(--card-deep));
	border-radius: var(--radius-xl);
	padding: 40px;
	overflow: hidden;
}

.contacts h2 {
	font-size: clamp(26px, 4vw, 36px);
	margin-bottom: 4px;
}

.contacts__addr {
	color: var(--brown);
	margin-bottom: 24px;
	font-size: 18px;
}

.contacts__map {
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow-md);
	line-height: 0;
}

.contacts__map iframe {
	width: 100%;
	height: 360px;
	border: 0;
	filter: saturate(0.85);
}

.contacts__bar {
	margin-top: 20px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	background: var(--cream);
	border: 1px solid rgba(160, 95, 55, 0.25);
	border-radius: var(--radius-md);
	padding: 18px 22px;
}

.contacts__bar span {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 17px;
	color: var(--ink);
}

/* -------------------------------------------------- */
/* 14. Footer                                          */
/* -------------------------------------------------- */
.site-footer {
	background: var(--cream-deep);
	padding: 56px 0 30px;
	text-align: center;
}

.site-footer h2 {
	font-size: clamp(22px, 3.4vw, 30px);
}

.site-footer .section-sub {
	margin-bottom: 30px;
}

.social-row {
	display: flex;
	justify-content: center;
	gap: 18px;
	margin-bottom: 34px;
}

.social-row a {
	width: 54px;
	height: 54px;
	border-radius: 50%;
	border: 1.5px solid var(--brown);
	color: var(--brown);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.35s var(--ease);
}

.social-row a:hover {
	background: var(--brown);
	color: var(--cream);
	transform: translateY(-4px) rotate(-6deg);
}

.social-row svg {
	width: 22px;
	height: 22px;
}

.site-footer__credit {
	font-size: 13px;
	color: var(--brown-soft);
	border-top: 1px solid rgba(178, 129, 96, 0.25);
	padding-top: 22px;
}

/* -------------------------------------------------- */
/* 15. Reveal-on-scroll                                */
/* -------------------------------------------------- */
.reveal {
	opacity: 0;
	transform: translateY(36px);
	transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.is-revealed {
	opacity: 1;
	transform: translateY(0);
}

.reveal-stagger > * {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal-stagger.is-revealed > *:nth-child(1) { transition-delay: 0.05s; }
.reveal-stagger.is-revealed > *:nth-child(2) { transition-delay: 0.15s; }
.reveal-stagger.is-revealed > *:nth-child(3) { transition-delay: 0.25s; }
.reveal-stagger.is-revealed > *:nth-child(4) { transition-delay: 0.35s; }
.reveal-stagger.is-revealed > *:nth-child(5) { transition-delay: 0.45s; }

.reveal-stagger.is-revealed > * {
	opacity: 1;
	transform: translateY(0);
}

/* -------------------------------------------------- */
/* 16. Booking modal                                   */
/* -------------------------------------------------- */
.modal {
	position: fixed;
	inset: 0;
	z-index: 200;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
	visibility: hidden;
	opacity: 0;
	transition: opacity 0.4s var(--ease), visibility 0.4s;
}

.modal.is-open {
	visibility: visible;
	opacity: 1;
}

.modal__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(61, 42, 29, 0.55);
	backdrop-filter: blur(4px);
}

.modal__panel {
	position: relative;
	background: var(--cream);
	border-radius: var(--radius-lg);
	max-width: 420px;
	width: 100%;
	padding: 36px 30px 30px;
	text-align: center;
	box-shadow: var(--shadow-lg);
	transform: scale(0.9) translateY(20px);
	transition: transform 0.45s var(--ease);
}

.modal.is-open .modal__panel {
	transform: scale(1) translateY(0);
}

.modal__close {
	position: absolute;
	top: 14px;
	right: 14px;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	border: none;
	background: var(--cream-deep);
	color: var(--brown);
	font-size: 18px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: transform 0.3s var(--ease);
}

.modal__close:hover {
	transform: rotate(90deg);
	background: var(--card-deep);
}

.modal__panel .logo {
	align-items: center;
	margin-bottom: 12px;
}

.modal__panel h3 {
	font-size: 24px;
	margin-bottom: 10px;
}

.modal__panel p {
	color: var(--brown);
	font-size: 15px;
}

.modal__gift {
	display: inline-block;
	background: var(--card);
	border: 1px dashed var(--accent);
	color: var(--accent-dark);
	border-radius: 999px;
	padding: 8px 16px;
	font-size: 13px;
	margin-bottom: 18px;
}

/* -------------------------------------------------- */
/* 17. Mobile sticky CTA + back to top                 */
/* -------------------------------------------------- */
.mobile-cta-bar {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 90;
	padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
	background: rgba(253, 251, 246, 0.92);
	backdrop-filter: blur(10px);
	border-top: 1px solid rgba(178, 129, 96, 0.25);
	transform: translateY(120%);
	transition: transform 0.4s var(--ease);
}

.mobile-cta-bar.is-visible {
	transform: translateY(0);
}

.back-to-top {
	position: fixed;
	right: 18px;
	bottom: 90px;
	z-index: 89;
	width: 46px;
	height: 46px;
	border-radius: 50%;
	background: var(--brown);
	color: var(--cream);
	border: none;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	transform: translateY(10px);
	transition: all 0.35s var(--ease);
	cursor: pointer;
	box-shadow: var(--shadow-md);
}

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

/* -------------------------------------------------- */
/* 18. Lightbox                                        */
/* -------------------------------------------------- */
.lightbox {
	position: fixed;
	inset: 0;
	z-index: 210;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 30px;
	background: rgba(30, 20, 14, 0.88);
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.4s ease, visibility 0.4s;
}

.lightbox.is-open {
	opacity: 1;
	visibility: visible;
}

.lightbox img {
	max-width: 100%;
	max-height: 86vh;
	border-radius: var(--radius-md);
	box-shadow: var(--shadow-lg);
	transform: scale(0.94);
	transition: transform 0.4s var(--ease);
}

.lightbox.is-open img {
	transform: scale(1);
}

.lightbox__close {
	position: absolute;
	top: 24px;
	right: 24px;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	border: 1px solid rgba(255, 255, 255, 0.4);
	background: transparent;
	color: #fff;
	font-size: 20px;
	cursor: pointer;
}

/* -------------------------------------------------- */
/* 19. Responsive                                      */
/* -------------------------------------------------- */
@media (min-width: 641px) {
	.compare {
		grid-template-columns: 1fr auto 1fr;
	}

	.compare__divider .line {
		display: block;
	}

	.about-stats {
		flex-direction: row;
		flex-wrap: wrap;
	}
}

@media (min-width: 768px) {
	.nav-menu {
		display: flex;
	}

	.header-actions .btn {
		display: inline-flex;
	}

	.burger {
		display: none;
	}

	.hero__grid {
		grid-template-columns: 1.05fr 1fr;
	}

	.services-wrap {
		grid-template-columns: 1fr 1fr;
	}

	.service-card {
		grid-template-columns: 1fr 1fr;
		padding: 34px;
	}

	.service-card--reverse .service-card__image {
		order: 2;
	}

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

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

	.banner-quote::before,
	.banner-quote::after {
		display: block;
	}

	.mobile-cta-bar {
		display: none;
	}

	.compare-intro {
		grid-template-columns: 1fr 1.1fr;
	}
}

@media (min-width: 1024px) {
	.section {
		padding: 100px 0;
	}

	.hero {
		padding: 80px 0 60px;
	}
}

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