/* =========================================================
   Toto Grooming — design system
   ========================================================= */

:root {
	--ink: #12181b;
	--ink-soft: #202b2f;
	--forest: #14332a;
	--forest-light: #1f4b3c;
	--cream: #fffaf1;
	--cream-deep: #fff1da;
	--paper: #ffffff;
	--amber: #f8b93b;
	--amber-deep: #f0930a;
	--coral: #ff7a59;
	--muted: #6b7573;
	--muted-soft: #8f9793;
	--border: #ece2d0;
	--shadow-sm: 0 2px 10px rgba(18, 24, 27, .06);
	--shadow-md: 0 12px 30px rgba(18, 24, 27, .10);
	--shadow-lg: 0 24px 60px rgba(18, 24, 27, .18);
	--radius-sm: 12px;
	--radius-md: 20px;
	--radius-lg: 32px;
	--radius-pill: 999px;
	--ease: cubic-bezier(.22, 1, .36, 1);
	--ease-soft: cubic-bezier(.4, 0, .2, 1);
	--font-display: 'Fredoka', 'Manrope', sans-serif;
	--font-body: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

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

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

p {
	margin: 0 0 1em;
}

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

.screen-reader-text {
	position: absolute !important;
	width: 1px; height: 1px;
	overflow: hidden;
	clip: rect(1px,1px,1px,1px);
}

.skip-link {
	position: fixed;
	top: -60px;
	left: 12px;
	background: var(--ink);
	color: #fff;
	padding: 10px 18px;
	border-radius: var(--radius-sm);
	z-index: 9999;
	transition: top .25s var(--ease);
}
.skip-link:focus {
	top: 12px;
}

/* ---------- Loader ---------- */
.site-loader {
	position: fixed;
	inset: 0;
	background: var(--cream);
	z-index: 9998;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: opacity .5s var(--ease), visibility .5s var(--ease);
}
.site-loader__paw {
	font-size: 42px;
	animation: pawPulse 1s ease-in-out infinite;
}
.site-loader.is-hidden {
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}
@keyframes pawPulse {
	0%, 100% { transform: scale(1) rotate(0deg); }
	50% { transform: scale(1.25) rotate(-8deg); }
}

/* ---------- Buttons ---------- */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 14px 28px;
	border-radius: var(--radius-pill);
	font-weight: 700;
	font-size: 15px;
	border: 2px solid transparent;
	transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .3s var(--ease), color .3s var(--ease);
	white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; flex: none; }
.btn--primary {
	background: linear-gradient(135deg, var(--amber) 0%, var(--amber-deep) 100%);
	color: var(--ink);
	box-shadow: 0 10px 24px rgba(240, 147, 10, .35);
}
.btn--primary:hover {
	transform: translateY(-3px) scale(1.03);
	box-shadow: 0 16px 32px rgba(240, 147, 10, .45);
}
/* Default ghost button is tuned for LIGHT backgrounds (reviews, contacts,
   about) — dark text on a transparent/dark-bordered pill. */
.btn--ghost {
	background: transparent;
	border-color: var(--ink);
	color: var(--ink);
}
.btn--ghost:hover {
	background: var(--ink);
	color: #fff;
	transform: translateY(-3px);
}
/* Hero sits on a dark photo background, so its ghost buttons need the
   inverse (light) treatment to stay visible. */
.hero .btn--ghost {
	background: rgba(255, 255, 255, .1);
	border-color: rgba(255, 255, 255, .4);
	color: #fff;
	backdrop-filter: blur(6px);
}
.hero .btn--ghost:hover {
	background: #fff;
	color: var(--ink);
}
.btn--sm { padding: 9px 18px; font-size: 13px; }
.btn--lg { padding: 17px 34px; font-size: 16px; }

.magnetic { will-change: transform; }

/* ---------- Badges / eyebrows ---------- */
.badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: rgba(255, 255, 255, .12);
	border: 1px solid rgba(255, 255, 255, .3);
	color: #fff;
	padding: 8px 16px 8px 8px;
	border-radius: var(--radius-pill);
	font-size: 13px;
	font-weight: 600;
	backdrop-filter: blur(8px);
	margin-bottom: 24px;
}
.badge__logo { border-radius: 50%; background: #fff; padding: 2px; }

.eyebrow {
	display: inline-block;
	font-size: 13px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: .12em;
	color: var(--amber-deep);
	margin-bottom: 10px;
}

.section-head { max-width: 640px; margin: 0 auto 48px; text-align: center; }
.section-head h2 { font-size: clamp(28px, 4vw, 42px); }
.section-subhead {
	font-size: clamp(20px, 2.6vw, 26px);
	margin: 56px 0 24px;
}

/* ---------- Header ---------- */
.site-header {
	position: fixed;
	top: 0; left: 0; right: 0;
	z-index: 500;
	padding: 18px 0;
	transition: background .4s var(--ease), padding .4s var(--ease), box-shadow .4s var(--ease);
}
.site-header__inner {
	display: flex;
	align-items: center;
	gap: 24px;
}
.site-header.is-scrolled {
	background: rgba(255, 250, 241, .88);
	backdrop-filter: blur(14px);
	box-shadow: var(--shadow-sm);
	padding: 10px 0;
}
.site-logo img { height: 52px; width: auto; transition: height .35s var(--ease); }
.site-header.is-scrolled .site-logo img { height: 42px; }

.nav-menu {
	display: flex;
	gap: 30px;
	margin-left: auto;
}
.nav-menu a {
	font-weight: 600;
	font-size: 15px;
	color: #fff;
	position: relative;
	padding: 6px 0;
	transition: color .3s;
}
.site-header.is-scrolled .nav-menu a { color: var(--ink); }
.nav-menu a::after {
	content: '';
	position: absolute;
	left: 0; right: 100%;
	bottom: 0;
	height: 2px;
	background: var(--amber-deep);
	transition: right .3s var(--ease);
}
.nav-menu a:hover::after { right: 0; }
.nav-menu a:hover { color: var(--amber-deep); }

.site-header__actions {
	display: flex;
	align-items: center;
	gap: 18px;
}
.header-phone {
	display: flex;
	align-items: center;
	gap: 8px;
	font-weight: 700;
	font-size: 14px;
	color: #fff;
	transition: color .3s;
}
.site-header.is-scrolled .header-phone { color: var(--ink); }
.header-phone svg { width: 18px; height: 18px; }

.menu-toggle {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 42px; height: 42px;
	margin-left: auto;
	background: transparent;
	border: none;
}
.menu-toggle span {
	display: block;
	height: 2px;
	width: 24px;
	background: #fff;
	transition: transform .35s var(--ease), opacity .3s, background .3s;
}
.site-header.is-scrolled .menu-toggle span { background: var(--ink); }
.menu-toggle.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.is-active span:nth-child(2) { opacity: 0; }
.menu-toggle.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Only the front page has a dark hero under the header; every other
   template (pages, single posts/services, 404) has a light background from
   the very top, so the header must render solid/dark-text immediately —
   without waiting for the scroll-triggered .is-scrolled class from JS.
   WordPress adds body class "home" for is_front_page(), not "front-page". */
body:not(.home) .site-header {
	background: rgba(255, 250, 241, .92);
	backdrop-filter: blur(14px);
	box-shadow: var(--shadow-sm);
	padding: 10px 0;
}
body:not(.home) .nav-menu a,
body:not(.home) .header-phone {
	color: var(--ink);
}
body:not(.home) .menu-toggle span {
	background: var(--ink);
}
body:not(.home) .site-logo img {
	height: 42px;
}

.mobile-menu {
	position: fixed;
	inset: 0;
	top: 0;
	background: var(--ink);
	z-index: 400;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 40px;
	transform: translateY(-100%);
	opacity: 0;
	visibility: hidden;
	transition: transform .5s var(--ease), opacity .4s, visibility .5s;
}
.mobile-menu.is-open {
	transform: translateY(0);
	opacity: 1;
	visibility: visible;
}
.mobile-menu .nav-menu--mobile {
	flex-direction: column;
	align-items: center;
	gap: 28px;
}
.mobile-menu .nav-menu--mobile a { color: #fff; font-size: 22px; }
.mobile-menu__actions { display: flex; flex-direction: column; align-items: center; gap: 18px; }
.mobile-menu .header-phone { color: #fff; font-size: 20px; }

/* ---------- Hero ---------- */
.hero {
	position: relative;
	min-height: 100vh;
	min-height: 100svh;
	display: flex;
	align-items: center;
	overflow: hidden;
	background: var(--forest);
	color: #fff;
	padding: 100px 0 60px;
}
.hero__bg {
	position: absolute;
	inset: -6%;
	background-size: cover;
	background-position: center;
	filter: saturate(1.1) brightness(.75);
	transform: scale(1.05);
	will-change: transform;
}
.hero__gradient {
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at 15% 20%, rgba(248, 185, 59, .35), transparent 45%),
		radial-gradient(circle at 85% 80%, rgba(255, 122, 89, .3), transparent 50%),
		linear-gradient(180deg, rgba(18, 24, 27, .55) 0%, rgba(18, 51, 43, .85) 100%);
}
.hero__floaters {
	position: absolute;
	inset: 0;
	pointer-events: none;
}
.floater {
	position: absolute;
	font-size: 34px;
	opacity: .5;
	animation: floatY 7s ease-in-out infinite;
	filter: drop-shadow(0 8px 16px rgba(0, 0, 0, .3));
}
.floater--1 { top: 18%; left: 8%; animation-delay: 0s; }
.floater--2 { top: 68%; left: 12%; font-size: 44px; animation-delay: 1.2s; }
.floater--3 { top: 22%; right: 10%; font-size: 40px; animation-delay: 2.1s; }
.floater--4 { top: 78%; right: 16%; animation-delay: .6s; }
.floater--5 { top: 46%; left: 4%; font-size: 26px; animation-delay: 1.8s; }
.floater--6 { top: 12%; right: 28%; font-size: 28px; animation-delay: 2.6s; }
@keyframes floatY {
	0%, 100% { transform: translateY(0) rotate(0deg); }
	50% { transform: translateY(-26px) rotate(8deg); }
}

.hero__inner {
	position: relative;
	z-index: 2;
	text-align: center;
	max-width: 780px;
	margin: 0 auto;
}
.hero__title {
	font-size: clamp(42px, 8vw, 84px);
	margin-bottom: .15em;
	text-shadow: 0 10px 40px rgba(0, 0, 0, .3);
}
.hero__subtitle {
	font-size: clamp(16px, 2.4vw, 20px);
	color: var(--cream-deep);
	font-weight: 600;
	margin-bottom: 20px;
}
.hero__quote {
	font-family: var(--font-display);
	font-size: clamp(18px, 2.6vw, 24px);
	color: var(--amber);
	margin-bottom: 16px;
}
.hero__text {
	max-width: 600px;
	margin: 0 auto 28px;
	color: rgba(255, 255, 255, .85);
	font-size: 16px;
}
.hero__rating {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: rgba(255, 255, 255, .1);
	border: 1px solid rgba(255, 255, 255, .25);
	backdrop-filter: blur(8px);
	padding: 10px 20px;
	border-radius: var(--radius-pill);
	margin-bottom: 36px;
	flex-wrap: wrap;
	justify-content: center;
}
.hero__rating-num { font-family: var(--font-display); font-weight: 700; font-size: 20px; color: var(--amber); }
.hero__rating-count { font-size: 13px; color: rgba(255, 255, 255, .75); }
.stars { display: inline-flex; gap: 2px; }
.star { width: 16px; height: 16px; color: var(--amber); }
.star--off { color: rgba(255, 255, 255, .25); }

.hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	justify-content: center;
}

.hero__scroll {
	position: absolute;
	bottom: 32px;
	left: 50%;
	transform: translateX(-50%);
	width: 28px; height: 44px;
	border: 2px solid rgba(255, 255, 255, .5);
	border-radius: 20px;
	z-index: 2;
}
.hero__scroll span {
	position: absolute;
	top: 8px; left: 50%;
	width: 4px; height: 8px;
	background: var(--amber);
	border-radius: 2px;
	transform: translateX(-50%);
	animation: scrollDot 1.6s ease-in-out infinite;
}
@keyframes scrollDot {
	0% { top: 8px; opacity: 1; }
	80% { top: 24px; opacity: 0; }
	100% { top: 24px; opacity: 0; }
}

/* ---------- Reveal / fade animations ---------- */
.fade-up {
	opacity: 0;
	transform: translateY(24px);
	animation: fadeUp .8s var(--ease) forwards;
	animation-delay: var(--d, 0s);
}
@keyframes fadeUp {
	to { opacity: 1; transform: translateY(0); }
}

.reveal {
	opacity: 0;
	transform: translateY(36px);
	transition: opacity .75s var(--ease), transform .75s var(--ease);
	transition-delay: var(--d, 0s);
}
.reveal.in-view {
	opacity: 1;
	transform: translateY(0);
}

/* ---------- About ---------- */
.about { padding: 110px 0 80px; }
.about__grid {
	display: grid;
	grid-template-columns: 1.1fr .9fr;
	gap: 48px;
	align-items: start;
	margin-bottom: 40px;
}
.about__lead { font-size: 20px; font-weight: 700; color: var(--forest); }
.about__stats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
}
.stat-card {
	background: var(--paper);
	border: 1px solid var(--border);
	border-radius: var(--radius-md);
	padding: 24px 18px;
	text-align: center;
	box-shadow: var(--shadow-sm);
	transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.stat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.stat-card__num, .stat-card__suffix {
	font-family: var(--font-display);
	font-size: 34px;
	font-weight: 700;
	color: var(--amber-deep);
}
.stat-card__label {
	display: block;
	font-size: 13px;
	color: var(--muted);
	margin-top: 6px;
}

.team-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
	gap: 24px;
	margin-bottom: 40px;
}
.team-card {
	background: var(--paper);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	padding: 28px 24px;
	text-align: center;
	box-shadow: var(--shadow-sm);
	transition: transform .45s var(--ease), box-shadow .45s var(--ease), border-color .3s;
}
.team-card:hover {
	transform: translateY(-8px) rotate(-.5deg);
	box-shadow: var(--shadow-md);
	border-color: var(--amber);
}
.team-card__avatar {
	width: 92px; height: 92px;
	border-radius: 50%;
	margin: 0 auto 16px;
	background: linear-gradient(135deg, var(--amber), var(--coral));
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	font-family: var(--font-display);
	font-size: 28px;
	font-weight: 700;
	color: #fff;
	box-shadow: 0 8px 20px rgba(240, 147, 10, .3);
}
.team-card__avatar img { width: 100%; height: 100%; object-fit: cover; }
.team-card h4 { font-size: 19px; margin-bottom: 4px; }
.team-card__exp { color: var(--amber-deep); font-weight: 700; font-size: 13px; margin-bottom: 12px; }
.team-card__bio { font-size: 14px; color: var(--muted); text-align: left; }
.team-card__bio p:last-child { margin-bottom: 0; }

.offer-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	gap: 16px;
	margin-bottom: 20px;
}
.offer-item {
	display: flex;
	align-items: center;
	gap: 12px;
	background: var(--cream-deep);
	border-radius: var(--radius-md);
	padding: 18px 20px;
	font-weight: 700;
	transition: transform .35s var(--ease), background .35s var(--ease);
}
.offer-item:hover {
	transform: translateY(-4px) scale(1.02);
	background: var(--amber);
}
.offer-item__icon { font-size: 22px; }
.offer__note {
	background: var(--forest);
	color: #fff;
	border-radius: var(--radius-md);
	padding: 18px 22px;
	font-size: 15px;
}

/* ---------- Promo ---------- */
.promo { padding: 40px 0 90px; }
.promo-card {
	display: grid;
	grid-template-columns: .8fr 1.2fr;
	background: linear-gradient(135deg, var(--ink) 0%, var(--forest) 100%);
	color: #fff;
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow-lg);
}
.promo-card__media { position: relative; }
.promo-card__media img { width: 100%; height: 100%; object-fit: cover; min-height: 220px; }
.promo-card__ribbon {
	position: absolute;
	top: 20px; left: -34px;
	background: var(--coral);
	color: #fff;
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 20px;
	padding: 8px 44px;
	transform: rotate(-40deg);
	box-shadow: 0 6px 14px rgba(0, 0, 0, .25);
}
.promo-card__body { padding: 40px; display: flex; flex-direction: column; justify-content: center; }
.promo-card__body h2 { font-size: clamp(24px, 3vw, 34px); color: #fff; }
.promo-card__body p { color: rgba(255, 255, 255, .8); }
.promo-card__dates { font-size: 13px; color: var(--amber); font-weight: 700; text-transform: uppercase; letter-spacing: .05em; }
.promo-card .btn { align-self: flex-start; }

/* ---------- Catalog ---------- */
.catalog { padding: 20px 0 100px; }
.catalog-filters {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: center;
	margin-bottom: 36px;
}
.filter-pill {
	background: var(--paper);
	border: 1.5px solid var(--border);
	border-radius: var(--radius-pill);
	padding: 10px 20px;
	font-weight: 700;
	font-size: 14px;
	color: var(--ink);
	transition: all .3s var(--ease);
}
.filter-pill:hover { border-color: var(--amber); }
.filter-pill.is-active {
	background: var(--ink);
	border-color: var(--ink);
	color: #fff;
}

.catalog-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
	gap: 22px;
}
.service-card {
	background: var(--paper);
	border: 1px solid var(--border);
	border-radius: var(--radius-md);
	overflow: hidden;
	box-shadow: var(--shadow-sm);
	transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.service-card.is-hidden { display: none; }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.service-card__media {
	aspect-ratio: 4 / 3;
	overflow: hidden;
	background: var(--cream-deep);
	display: flex;
	align-items: center;
	justify-content: center;
}
.service-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.service-card:hover .service-card__media img { transform: scale(1.08); }
.service-card__placeholder { font-size: 44px; opacity: .4; }
.service-card__body { padding: 18px 20px 20px; }
.service-card__body h3 { font-size: 16px; font-weight: 700; min-height: 44px; margin-bottom: 14px; }
.service-card__footer { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.service-card__price { font-family: var(--font-display); font-weight: 700; font-size: 18px; color: var(--amber-deep); }

/* ---------- Reviews ---------- */
.reviews { padding: 20px 0 100px; background: var(--cream-deep); }
.reviews__summary {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 18px;
	margin-bottom: 40px;
}
.reviews__num { font-family: var(--font-display); font-size: 56px; font-weight: 700; color: var(--ink); }
.reviews__summary p { margin: 4px 0 0; font-size: 14px; color: var(--muted); }

.reviews-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 22px;
}
.review-card.is-extra { display: none; }
.review-card.is-extra.is-shown { display: block; animation: fadeUp .6s var(--ease) forwards; }
.review-card {
	background: var(--paper);
	border-radius: var(--radius-md);
	padding: 26px;
	box-shadow: var(--shadow-sm);
	transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.review-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.review-card__head { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.review-card__avatar {
	width: 46px; height: 46px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--forest), var(--forest-light));
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	flex: none;
}
.review-card__head h4 { font-size: 15px; margin-bottom: 2px; }
.review-card__meta { display: flex; align-items: center; gap: 10px; font-size: 12px; color: var(--muted-soft); }
.review-card__meta .star { width: 13px; height: 13px; }
.review-card p { font-size: 14px; color: var(--ink-soft); margin: 0; }
.reviews__more { text-align: center; margin-top: 40px; }

/* ---------- Contacts ---------- */
.contacts-section { padding: 100px 0; }
.contacts-grid {
	display: grid;
	grid-template-columns: 1fr 1.2fr;
	gap: 48px;
	align-items: stretch;
}
.contacts-list { margin: 28px 0 32px; display: flex; flex-direction: column; gap: 18px; }
.contacts-list li { display: flex; align-items: center; gap: 14px; font-size: 15px; }
.contacts-list svg { width: 22px; height: 22px; color: var(--amber-deep); flex: none; }
.contacts-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.contacts-map {
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow-md);
	min-height: 360px;
	filter: grayscale(.15);
}
.contacts-map iframe { width: 100%; height: 100%; min-height: 360px; border: 0; }

/* ---------- Footer ---------- */
.site-footer {
	background: var(--ink);
	color: rgba(255, 255, 255, .75);
}
.footer-cta {
	background: linear-gradient(120deg, var(--amber) 0%, var(--coral) 100%);
	color: var(--ink);
}
.footer-cta__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding: 44px 24px;
	flex-wrap: wrap;
}
.footer-cta__inner h2 { font-size: clamp(22px, 3vw, 30px); margin-bottom: 6px; }
.footer-cta__inner p { margin: 0; }
.footer-cta .btn--primary { background: var(--ink); color: #fff; box-shadow: 0 10px 24px rgba(0, 0, 0, .25); }
.footer-cta .btn--primary:hover { background: var(--forest); }

.footer-grid {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr;
	gap: 32px;
	padding: 60px 24px 40px;
}
.footer-col h3 { color: #fff; font-size: 16px; margin-bottom: 18px; }
.footer-col p, .footer-col a { color: rgba(255, 255, 255, .7); font-size: 14px; }
.footer-menu li { margin-bottom: 10px; }
.footer-menu a:hover, .footer-link:hover { color: var(--amber); }
.footer-social { display: flex; gap: 12px; margin-top: 18px; }
.footer-social a {
	width: 40px; height: 40px;
	border-radius: 50%;
	background: rgba(255, 255, 255, .08);
	display: flex; align-items: center; justify-content: center;
	transition: background .3s, transform .3s var(--ease);
}
.footer-social a:hover { background: var(--amber); color: var(--ink); transform: translateY(-3px); }
.footer-social svg { width: 18px; height: 18px; }
.footer-link { display: inline-block; margin-top: 6px; font-weight: 700; color: var(--amber) !important; }

.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, .1);
	padding: 22px 24px;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 10px;
	font-size: 12px;
	color: rgba(255, 255, 255, .45);
}
.footer-bottom p { margin: 0; }

/* ---------- Floating action buttons ---------- */
.fab-whatsapp {
	position: fixed;
	bottom: 26px;
	right: 26px;
	width: 58px; height: 58px;
	border-radius: 50%;
	background: #25d366;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 10px 26px rgba(37, 211, 102, .4);
	z-index: 300;
	animation: pulseRing 2.6s ease-out infinite;
}
.fab-whatsapp svg { width: 28px; height: 28px; }
@keyframes pulseRing {
	0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, .5), 0 10px 26px rgba(37, 211, 102, .4); }
	70% { box-shadow: 0 0 0 14px rgba(37, 211, 102, 0), 0 10px 26px rgba(37, 211, 102, .4); }
	100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0), 0 10px 26px rgba(37, 211, 102, .4); }
}

.back-to-top {
	position: fixed;
	bottom: 26px;
	right: 96px;
	width: 46px; height: 46px;
	border-radius: 50%;
	background: var(--ink);
	color: #fff;
	border: none;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	transform: translateY(12px);
	transition: opacity .35s var(--ease), transform .35s var(--ease), visibility .35s;
	z-index: 300;
}
.back-to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top svg { width: 18px; height: 18px; }

/* ---------- Generic content pages ---------- */
.page-content { padding: 140px 0 100px; }
.post-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.post-card { background: var(--paper); border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .4s var(--ease); }
.post-card:hover { transform: translateY(-6px); }
.post-card__media { display: block; aspect-ratio: 4/3; background: var(--cream-deep); display: flex; align-items: center; justify-content: center; overflow: hidden; }
.post-card__media img { width: 100%; height: 100%; object-fit: cover; }
.post-card__placeholder { font-size: 40px; opacity: .4; }
.post-card__body { padding: 20px; }
.post-card__link { font-weight: 700; color: var(--amber-deep); }
.single-page__thumb { border-radius: var(--radius-lg); overflow: hidden; margin: 24px 0; }
.single-page__price { font-family: var(--font-display); font-weight: 700; color: var(--amber-deep); font-size: 22px; }
.entry-content { max-width: 760px; margin: 0 auto 32px; }

.error-404 { text-align: center; padding: 180px 0; }
.error-404__icon { font-size: 60px; display: block; margin-bottom: 20px; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
	.about__grid { grid-template-columns: 1fr; }
	.promo-card { grid-template-columns: 1fr; }
	.promo-card__media { min-height: 220px; }
	.footer-grid { grid-template-columns: 1fr 1fr; }
	.contacts-grid { grid-template-columns: 1fr; }
}

@media (max-width: 820px) {
	.nav-menu, .site-header__actions { display: none; }
	.menu-toggle { display: flex; }
	.hero { padding-top: 90px; }
}

@media (max-width: 640px) {
	.section-head { margin-bottom: 32px; }
	.about { padding: 80px 0 60px; }
	.about__stats { grid-template-columns: 1fr; }
	.footer-grid { grid-template-columns: 1fr; padding: 44px 24px 24px; }
	.footer-cta__inner { flex-direction: column; text-align: center; }
	.footer-bottom { flex-direction: column; text-align: center; }
	.fab-whatsapp { width: 50px; height: 50px; bottom: 18px; right: 18px; }
	.back-to-top { width: 40px; height: 40px; bottom: 18px; right: 78px; }
	.reviews__num { font-size: 42px; }
	/* Stacked hero content is routinely taller than one screen on phones,
	   so the scroll-down cue has nowhere safe to sit without overlapping
	   the action buttons — hide it below the tablet breakpoint. */
	.hero__scroll { display: none; }
}

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