/**
 * Dreem theme — design tokens & layout
 */

:root {
	--dreem-primary: #E85D3B;
	--dreem-primary-dark: #CF4A2A;
	--dreem-blush: #F8D7D0;
	--dreem-blush-soft: #FDF0EC;
	--dreem-ink: #1A1A1A;
	--dreem-muted: #6B6B6B;
	--dreem-line: #EDE6E2;
	--dreem-surface: #FFFFFF;
	--dreem-soft: #FAF7F5;
	--dreem-dark: #121212;
	--dreem-radius: 14px;
	--dreem-radius-lg: 24px;
	--dreem-radius-pill: 999px;
	--dreem-shadow: 0 18px 50px rgba(26, 26, 26, 0.07);
	--dreem-shadow-sm: 0 8px 24px rgba(26, 26, 26, 0.06);
	--dreem-font-display: "Playfair Display", Georgia, serif;
	--dreem-font-body: "Plus Jakarta Sans", system-ui, sans-serif;
	--dreem-container: 1180px;
	--dreem-header-h: 84px;
	--dreem-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: var(--dreem-font-body);
	font-size: 1rem;
	line-height: 1.7;
	color: var(--dreem-ink);
	background: var(--dreem-surface);
	-webkit-font-smoothing: antialiased;
}

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

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

h1, h2, h3, h4 {
	font-family: var(--dreem-font-display);
	font-weight: 600;
	line-height: 1.2;
	margin: 0 0 0.75rem;
	color: var(--dreem-ink);
}

h1 { font-size: clamp(2.4rem, 5vw, 3.75rem); }
h2 { font-size: clamp(1.85rem, 3.5vw, 2.75rem); }
h3 { font-size: 1.25rem; }

p {
	margin: 0 0 1rem;
	color: var(--dreem-muted);
}

.dreem-container {
	width: min(100% - 2.5rem, var(--dreem-container));
	margin-inline: auto;
}

.dreem-skip-link {
	position: absolute;
	inset-inline-start: -999px;
	top: 0;
	background: var(--dreem-primary);
	color: #fff;
	padding: 0.75rem 1rem;
	z-index: 1000;
}

.dreem-skip-link:focus {
	inset-inline-start: 1rem;
	top: 1rem;
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	border: 0;
}

/* Preloader */
.dreem-preloader {
	position: fixed;
	inset: 0;
	z-index: 99999;
	display: flex;
	align-items: center;
	justify-content: center;
	background:
		radial-gradient(ellipse 70% 55% at 50% 40%, rgba(248, 215, 208, 0.55), transparent 65%),
		#fff;
	transition: opacity 0.55s var(--dreem-ease), visibility 0.55s ease;
}

.dreem-preloader.is-done {
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}

.dreem-preloader__inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1rem;
	padding: 1.5rem;
	text-align: center;
}

.dreem-preloader__logo {
	border-radius: 18px;
	overflow: hidden;
	line-height: 0;
	box-shadow:
		0 1px 0 rgba(255, 255, 255, 0.25) inset,
		0 16px 40px rgba(225, 37, 27, 0.28);
	animation: dreem-loader-pulse 1.4s ease-in-out infinite;
}

.dreem-preloader__logo img {
	display: block;
	height: 72px;
	width: auto;
}

.dreem-preloader__tag {
	margin: 0;
	font-size: 0.85rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--dreem-muted);
}

.dreem-preloader__bar {
	width: 120px;
	height: 3px;
	margin-top: 0.35rem;
	border-radius: 999px;
	background: var(--dreem-line);
	overflow: hidden;
}

.dreem-preloader__bar span {
	display: block;
	height: 100%;
	width: 40%;
	border-radius: inherit;
	background: linear-gradient(90deg, var(--dreem-primary), #f08a6e);
	animation: dreem-loader-bar 1.1s ease-in-out infinite;
}

body.dreem-loading {
	overflow: hidden;
}

@keyframes dreem-loader-pulse {
	0%, 100% { transform: scale(1); }
	50% { transform: scale(1.04); }
}

@keyframes dreem-loader-bar {
	0% { transform: translateX(-120%); }
	100% { transform: translateX(320%); }
}

@media (max-width: 768px) {
	.dreem-preloader__logo img {
		height: 58px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.dreem-preloader__logo,
	.dreem-preloader__bar span {
		animation: none;
	}
}

/* Motif — Floury-inspired leaf/star */
.dreem-motif {
	display: inline-block;
	width: 28px;
	height: 28px;
	margin-bottom: 1rem;
	background:
		radial-gradient(circle at 50% 50%, var(--dreem-primary) 0 18%, transparent 19%),
		conic-gradient(from 0deg, var(--dreem-primary), var(--dreem-blush), var(--dreem-primary));
	mask: radial-gradient(circle at 50% 18%, #000 0 22%, transparent 23%),
		radial-gradient(circle at 82% 35%, #000 0 22%, transparent 23%),
		radial-gradient(circle at 68% 78%, #000 0 22%, transparent 23%),
		radial-gradient(circle at 32% 78%, #000 0 22%, transparent 23%),
		radial-gradient(circle at 18% 35%, #000 0 22%, transparent 23%);
	-webkit-mask:
		radial-gradient(circle at 50% 18%, #000 0 22%, transparent 23%),
		radial-gradient(circle at 82% 35%, #000 0 22%, transparent 23%),
		radial-gradient(circle at 68% 78%, #000 0 22%, transparent 23%),
		radial-gradient(circle at 32% 78%, #000 0 22%, transparent 23%),
		radial-gradient(circle at 18% 35%, #000 0 22%, transparent 23%);
	border-radius: 50%;
	background-color: var(--dreem-primary);
}

.dreem-motif--light {
	background-color: #fff;
	filter: brightness(10);
}

/* Buttons */
.dreem-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 0.9rem 1.75rem;
	border-radius: var(--dreem-radius-pill);
	font-family: var(--dreem-font-body);
	font-size: 0.95rem;
	font-weight: 600;
	border: 2px solid transparent;
	cursor: pointer;
	transition: transform 0.25s var(--dreem-ease), background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

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

.dreem-btn--primary {
	background: var(--dreem-primary);
	color: #fff;
	box-shadow: 0 10px 28px rgba(232, 93, 59, 0.28);
}

.dreem-btn--primary:hover {
	background: var(--dreem-primary-dark);
	color: #fff;
}

.dreem-btn--ghost {
	background: transparent;
	border-color: var(--dreem-ink);
	color: var(--dreem-ink);
}

.dreem-btn--ghost:hover {
	background: var(--dreem-ink);
	color: #fff;
}

.dreem-btn--dark {
	background: var(--dreem-ink);
	color: #fff;
}

.dreem-btn--sm {
	padding: 0.65rem 1.25rem;
	font-size: 0.875rem;
}

.dreem-text-link {
	font-weight: 600;
	color: var(--dreem-primary);
	border-bottom: 1px solid transparent;
}

.dreem-text-link:hover {
	border-bottom-color: var(--dreem-primary);
}

/* Header */
.dreem-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(255, 255, 255, 0.92);
	backdrop-filter: blur(14px);
	border-bottom: 1px solid transparent;
	transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.dreem-header.is-scrolled {
	border-bottom-color: var(--dreem-line);
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
}

.dreem-header__inner {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	min-height: var(--dreem-header-h);
	gap: 1rem;
}

.dreem-header__brand {
	justify-self: start;
}

.dreem-logo-badge {
	display: inline-flex;
	align-items: center;
	line-height: 0;
	border-radius: 14px;
	overflow: hidden;
	box-shadow:
		0 1px 0 rgba(255, 255, 255, 0.2) inset,
		0 8px 20px rgba(225, 37, 27, 0.22);
	transition: transform 0.25s var(--dreem-ease), box-shadow 0.25s ease;
}

.dreem-logo-badge:hover {
	transform: translateY(-1px);
	box-shadow:
		0 1px 0 rgba(255, 255, 255, 0.25) inset,
		0 12px 26px rgba(225, 37, 27, 0.28);
}

.dreem-logo-badge--hero {
	display: inline-flex;
	border-radius: 18px;
	margin-bottom: 2.25rem;
	box-shadow:
		0 1px 0 rgba(255, 255, 255, 0.22) inset,
		0 6px 16px rgba(225, 37, 27, 0.18);
}

.dreem-logo-badge--footer {
	border-radius: 12px;
	margin-bottom: 1rem;
}

.dreem-header__brand .dreem-logo-img,
.dreem-logo-img {
	height: 52px;
	width: auto;
	display: block;
}

.dreem-hero__brand {
	height: 64px;
	width: auto;
	display: block;
	margin: 0;
	filter: none;
}

.dreem-footer__logo {
	height: 48px;
	width: auto;
	display: block;
	margin: 0;
	filter: none;
}

.dreem-hero__eyebrow {
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--dreem-primary);
	margin: 0 0 0.75rem;
	position: relative;
	z-index: 1;
}

.dreem-nav {
	display: flex;
	align-items: center;
	justify-content: center;
	justify-self: center;
	grid-column: 2;
}

.dreem-header__cta--desktop {
	justify-self: end;
	grid-column: 3;
}

.dreem-header__cta--mobile {
	display: none;
}

.dreem-mobile-nav {
	display: none;
}

.dreem-nav-toggle {
	display: none;
	flex-direction: column;
	gap: 5px;
	background: none;
	border: 0;
	padding: 0.5rem;
	cursor: pointer;
	justify-self: end;
	grid-column: 3;
}

.dreem-nav__list {
	display: flex;
	align-items: center;
	gap: 1.75rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.dreem-nav__list a {
	font-size: 0.95rem;
	font-weight: 500;
	color: var(--dreem-ink);
	position: relative;
}

.dreem-nav__list a::after {
	content: "";
	position: absolute;
	inset-inline-start: 0;
	bottom: -4px;
	width: 0;
	height: 2px;
	background: var(--dreem-primary);
	transition: width 0.25s var(--dreem-ease);
}

.dreem-nav__list a:hover::after,
.dreem-nav__list .current-menu-item > a::after {
	width: 100%;
}

.dreem-nav-toggle span {
	display: block;
	width: 22px;
	height: 2px;
	background: var(--dreem-ink);
	transition: transform 0.25s ease;
}

/* Hero */
.dreem-hero {
	position: relative;
	overflow: hidden;
	padding: clamp(2.5rem, 6vw, 4.5rem) 0;
	min-height: calc(100vh - var(--dreem-header-h));
	display: flex;
	align-items: center;
}

.dreem-hero__bg {
	position: absolute;
	inset: 0;
	background:
		radial-gradient(ellipse 48% 55% at 88% 48%, rgba(248, 215, 208, 0.4), transparent 68%),
		linear-gradient(180deg, #fff 0%, #faf8f6 100%);
	z-index: 0;
}

.dreem-hero__inner {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
	gap: clamp(1.5rem, 4vw, 3.5rem);
	align-items: center;
}

.dreem-hero__title {
	margin-bottom: 1.25rem;
}

.dreem-hero__text {
	font-size: 1.05rem;
	max-width: 34rem;
	margin-bottom: 2rem;
}

.dreem-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.85rem;
}

.dreem-hero__visual {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	perspective: 1200px;
	min-height: 0;
}

.dreem-hero__glow {
	position: absolute;
	width: 78%;
	max-width: 340px;
	aspect-ratio: 1;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(248, 190, 170, 0.5) 0%, rgba(253, 240, 236, 0.25) 50%, transparent 72%);
	z-index: 0;
	top: 42%;
	left: 50%;
	transform: translate(-50%, -50%);
	animation: dreem-glow 8s ease-in-out infinite;
	pointer-events: none;
}

.dreem-hero__stage {
	position: relative;
	z-index: 1;
	width: min(100%, 340px);
	display: flex;
	flex-direction: column;
	align-items: center;
}

.dreem-hero__flip {
	width: 100%;
	position: relative;
}

.dreem-hero__flip-viewport {
	position: relative;
	width: 100%;
	aspect-ratio: 1 / 1.05;
	perspective: 1400px;
	transform-style: preserve-3d;
}

.dreem-hero__slide {
	position: absolute;
	inset: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transform: rotateY(90deg) scale(0.88);
	transform-style: preserve-3d;
	will-change: transform, opacity;
}

.dreem-hero__slide.is-active {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: rotateY(0deg) scale(1);
	z-index: 2;
}

.dreem-hero__slide.is-leaving {
	z-index: 3;
	pointer-events: none;
}

.dreem-hero__orbit {
	width: 100%;
	transform-style: preserve-3d;
	animation: dreem-orbit 10s ease-in-out infinite;
	will-change: transform;
}

.dreem-hero__product {
	position: relative;
	width: 88%;
	transform-style: preserve-3d;
	transition: transform 0.15s ease-out;
}

.dreem-hero__image {
	display: block;
	width: 100%;
	height: auto;
	object-fit: contain;
	filter: drop-shadow(0 18px 28px rgba(26, 26, 26, 0.18));
	animation: dreem-float 4.8s ease-in-out infinite;
	user-select: none;
	-webkit-user-drag: none;
}

.dreem-hero__caption {
	margin-top: 0.65rem;
	font-size: 0.82rem;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--dreem-muted);
	opacity: 0.9;
}

.dreem-hero__dots {
	display: flex;
	justify-content: center;
	gap: 0.55rem;
	margin-top: 0.85rem;
	position: relative;
	z-index: 4;
}

.dreem-hero__dot {
	width: 9px;
	height: 9px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: rgba(26, 26, 26, 0.18);
	cursor: pointer;
	transition: transform 0.25s var(--dreem-ease), background 0.25s ease, width 0.25s ease;
}

.dreem-hero__dot.is-active {
	background: var(--dreem-primary);
	width: 22px;
	border-radius: 999px;
	transform: scale(1.05);
}

.dreem-hero__dot:hover {
	background: rgba(232, 93, 59, 0.55);
}

.dreem-hero__shine {
	position: absolute;
	inset: 8% 12%;
	border-radius: 18px;
	pointer-events: none;
	overflow: hidden;
	background: linear-gradient(
		115deg,
		transparent 35%,
		rgba(255, 255, 255, 0.28) 48%,
		transparent 62%
	);
	background-size: 220% 100%;
	animation: dreem-shine 5.5s ease-in-out infinite;
	mix-blend-mode: soft-light;
}

.dreem-hero__pedestal {
	width: 72%;
	height: 18px;
	margin-top: -0.15rem;
	border-radius: 50%;
	background: radial-gradient(ellipse at center, rgba(26, 26, 26, 0.18) 0%, rgba(26, 26, 26, 0.06) 45%, transparent 72%);
	filter: blur(2px);
	animation: dreem-shadow 4.8s ease-in-out infinite;
}

.dreem-hero__visual.is-interacting .dreem-hero__orbit,
.dreem-hero__visual.is-interacting .dreem-hero__image,
.dreem-hero__visual.is-interacting .dreem-hero__shine,
.dreem-hero__visual.is-interacting .dreem-hero__pedestal {
	animation-play-state: paused;
}

.dreem-hero__visual.is-flipping .dreem-hero__orbit {
	animation-play-state: paused;
}

@keyframes dreem-orbit {
	0% { transform: rotateY(-14deg) rotateX(3deg); }
	50% { transform: rotateY(14deg) rotateX(2deg); }
	100% { transform: rotateY(-14deg) rotateX(3deg); }
}

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

@keyframes dreem-shadow {
	0%, 100% { transform: scaleX(1); opacity: 0.85; }
	50% { transform: scaleX(0.88); opacity: 0.55; }
}

@keyframes dreem-shine {
	0%, 35% { background-position: 120% 0; opacity: 0; }
	45% { opacity: 1; }
	70%, 100% { background-position: -40% 0; opacity: 0; }
}

@keyframes dreem-glow {
	0%, 100% { opacity: 0.85; transform: translate(-50%, -50%) scale(1); }
	50% { opacity: 1; transform: translate(-50%, -50%) scale(1.06); }
}

@media (prefers-reduced-motion: reduce) {
	.dreem-hero__orbit,
	.dreem-hero__image,
	.dreem-hero__shine,
	.dreem-hero__pedestal,
	.dreem-hero__glow {
		animation: none !important;
	}

	.dreem-hero__slide {
		transition: opacity 0.3s ease;
		transform: none !important;
	}
}

/* Sections */
.dreem-section {
	padding: clamp(4rem, 9vw, 6.5rem) 0;
}

.dreem-section--soft {
	background: var(--dreem-soft);
}

.dreem-section__header {
	text-align: center;
	max-width: 36rem;
	margin: 0 auto 3rem;
}

.dreem-section__cta {
	text-align: center;
	margin-top: 2.5rem;
}

.dreem-lead {
	font-size: 1.1rem;
	color: var(--dreem-muted);
	max-width: 40rem;
}

.dreem-page-hero {
	padding: 4.5rem 0 3rem;
	background:
		radial-gradient(ellipse 60% 80% at 90% 0%, rgba(248, 215, 208, 0.55), transparent 60%),
		var(--dreem-soft);
	text-align: center;
}

.dreem-page-hero .dreem-lead {
	margin-inline: auto;
}

/* Split layouts */
.dreem-split {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(2rem, 5vw, 4rem);
	align-items: center;
}

.dreem-split--reverse .dreem-split__media {
	order: 2;
}

.dreem-split__media {
	position: relative;
}

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

.dreem-dots {
	position: absolute;
	inset-inline-start: -18px;
	bottom: -18px;
	width: 120px;
	height: 120px;
	background-image: radial-gradient(var(--dreem-blush) 2px, transparent 2px);
	background-size: 14px 14px;
	z-index: -1;
}

/* Categories */
.dreem-categories,
.dreem-values,
.dreem-services-teaser,
.dreem-featured,
.dreem-newsletter-band,
.dreem-hero {
	position: relative;
}

.dreem-btn {
	will-change: transform;
}

.dreem-categories__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.25rem;
}

.dreem-cat-card {
	background: #fff;
	border-radius: var(--dreem-radius);
	padding: 1.75rem 1.5rem;
	box-shadow: var(--dreem-shadow-sm);
	transition: transform 0.3s var(--dreem-ease), box-shadow 0.3s ease;
}

.dreem-cat-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--dreem-shadow);
}

.dreem-cat-card__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: var(--dreem-blush);
	color: var(--dreem-primary);
	font-weight: 700;
	font-size: 0.9rem;
	margin-bottom: 1rem;
}

.dreem-cat-card h3 {
	margin-bottom: 0.4rem;
}

.dreem-cat-card p {
	margin: 0;
	font-size: 0.92rem;
}

/* Products */
.dreem-products-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.75rem;
}

.dreem-product-card {
	background: #fff;
	border-radius: var(--dreem-radius-lg);
	overflow: hidden;
	box-shadow: var(--dreem-shadow-sm);
	transition: transform 0.3s var(--dreem-ease), box-shadow 0.3s ease;
}

.dreem-product-card:hover {
	transform: translateY(-8px);
	box-shadow: var(--dreem-shadow);
}

.dreem-product-card__media {
	display: block;
	background: linear-gradient(180deg, var(--dreem-blush-soft), #fff);
	padding: 1.5rem;
	aspect-ratio: 1;
}

.dreem-product-card__media img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.dreem-product-card__body {
	padding: 1.25rem 1.5rem 1.75rem;
	background:
		linear-gradient(180deg, transparent 0%, var(--dreem-blush-soft) 140%);
}

.dreem-product-card__body h3 {
	font-family: var(--dreem-font-body);
	font-weight: 700;
	font-size: 1.1rem;
}

.dreem-product-card__body h3 a:hover {
	color: var(--dreem-primary);
}

.dreem-product-card__body p {
	font-size: 0.9rem;
	margin-bottom: 1.1rem;
}

/* Values */
.dreem-values__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.25rem;
}

.dreem-value-card {
	padding: 1.75rem;
	border-radius: var(--dreem-radius);
	border: 1px solid var(--dreem-line);
	background: #fff;
	transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.dreem-value-card:hover {
	border-color: var(--dreem-blush);
	box-shadow: var(--dreem-shadow-sm);
}

.dreem-value-card__num {
	display: block;
	font-family: var(--dreem-font-display);
	font-size: 1.5rem;
	color: var(--dreem-primary);
	margin-bottom: 0.5rem;
}

.dreem-value-card p {
	margin: 0;
	font-size: 0.92rem;
}

/* Stats */
.dreem-stats {
	position: relative;
	padding: 4.5rem 0;
	overflow: hidden;
}

.dreem-stats__bg {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.9)),
		url("../images/quality.jpg") center / cover;
}

.dreem-stats__grid {
	position: relative;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.5rem;
	text-align: center;
}

.dreem-stat__num {
	display: block;
	font-family: var(--dreem-font-display);
	font-size: clamp(2rem, 4vw, 3rem);
	font-weight: 700;
	color: var(--dreem-primary);
	line-height: 1.1;
	margin-bottom: 0.4rem;
}

.dreem-stat__label {
	font-size: 0.95rem;
	font-weight: 500;
	color: var(--dreem-ink);
}

/* Services teaser */
.dreem-services-teaser__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
}

.dreem-service-card {
	padding: 2rem 1.75rem;
	border-radius: var(--dreem-radius-lg);
	background: #fff;
	border: 1px solid var(--dreem-line);
	height: 100%;
}

.dreem-service-card:hover {
	border-color: var(--dreem-primary);
}

.dreem-service-card p {
	margin-bottom: 1.25rem;
}

/* Newsletter */
.dreem-newsletter-band {
	position: relative;
	padding: 5rem 0;
	overflow: hidden;
	background: linear-gradient(135deg, #F8D7D0 0%, #FDF0EC 45%, #f5e8c8 100%);
	text-align: center;
}

.dreem-newsletter-band__shapes::before,
.dreem-newsletter-band__shapes::after {
	content: "";
	position: absolute;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.35);
}

.dreem-newsletter-band__shapes::before {
	width: 220px;
	height: 220px;
	top: -60px;
	inset-inline-end: 8%;
}

.dreem-newsletter-band__shapes::after {
	width: 140px;
	height: 140px;
	bottom: -40px;
	inset-inline-start: 10%;
	background-image: radial-gradient(#E85D3B 1.5px, transparent 1.5px);
	background-size: 12px 12px;
	background-color: transparent;
	opacity: 0.35;
}

.dreem-newsletter-band__inner {
	position: relative;
	max-width: 640px;
}

.dreem-newsletter {
	display: flex;
	gap: 0.5rem;
	margin-top: 1.75rem;
	background: #fff;
	padding: 0.4rem;
	border-radius: var(--dreem-radius-pill);
	box-shadow: var(--dreem-shadow-sm);
}

.dreem-newsletter input[type="email"] {
	flex: 1;
	border: 0;
	padding: 0.85rem 1.25rem;
	font-family: inherit;
	font-size: 0.95rem;
	background: transparent;
	outline: none;
	min-width: 0;
}

.dreem-newsletter--compact {
	flex-direction: column;
	background: transparent;
	padding: 0;
	box-shadow: none;
	border-radius: 0;
}

.dreem-newsletter--compact input {
	background: #fff;
	border: 1px solid var(--dreem-line);
	border-radius: var(--dreem-radius-pill);
	padding: 0.75rem 1rem;
	margin-bottom: 0.5rem;
}

/* Footer */
.dreem-footer {
	background: var(--dreem-soft);
	padding-top: 4rem;
	border-top: 1px solid var(--dreem-line);
}

.dreem-footer__grid {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
	gap: 2.5rem;
	padding-bottom: 3rem;
}

.dreem-footer__logo {
	height: 48px;
	width: auto;
	display: block;
}

.dreem-footer__tagline {
	font-size: 0.92rem;
	max-width: 16rem;
}

.dreem-footer h4 {
	font-family: var(--dreem-font-body);
	font-size: 0.95rem;
	font-weight: 700;
	margin-bottom: 1.1rem;
}

.dreem-footer__links,
.dreem-footer__contact {
	list-style: none;
	margin: 0;
	padding: 0;
}

.dreem-footer__links li,
.dreem-footer__contact li {
	margin-bottom: 0.65rem;
}

.dreem-footer__links a:hover {
	color: var(--dreem-primary);
}

.dreem-footer__contact strong {
	display: block;
	font-size: 0.8rem;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: var(--dreem-ink);
}

.dreem-footer__contact span,
.dreem-footer__contact a {
	font-size: 0.9rem;
	color: var(--dreem-muted);
}

.dreem-social {
	display: flex;
	gap: 0.65rem;
	margin-top: 1.25rem;
}

.dreem-social__link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: #fff;
	border: 1px solid var(--dreem-line);
	color: var(--dreem-ink);
	transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s var(--dreem-ease), box-shadow 0.25s ease;
}

.dreem-social__link svg {
	display: block;
	flex-shrink: 0;
}

.dreem-social__link:hover {
	background: var(--dreem-primary);
	color: #fff;
	border-color: var(--dreem-primary);
	transform: translateY(-2px);
	box-shadow: 0 8px 18px rgba(232, 93, 59, 0.25);
}

.dreem-footer__bar {
	border-top: 1px solid var(--dreem-line);
	padding: 1.1rem 0;
	text-align: center;
}

.dreem-footer__bar p {
	margin: 0;
	font-size: 0.85rem;
}

/* Inner pages */
.dreem-mission-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 2.5rem;
}

.dreem-prose {
	max-width: 48rem;
}

.dreem-contact-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
	align-items: start;
}

.dreem-contact-form-wrap,
.dreem-office-card {
	background: #fff;
	border: 1px solid var(--dreem-line);
	border-radius: var(--dreem-radius-lg);
	padding: 2rem;
}

.dreem-form-row {
	margin-bottom: 1.1rem;
}

.dreem-form-row label {
	display: block;
	font-size: 0.85rem;
	font-weight: 600;
	margin-bottom: 0.4rem;
}

.dreem-form-row input,
.dreem-form-row textarea {
	width: 100%;
	padding: 0.85rem 1rem;
	border: 1px solid var(--dreem-line);
	border-radius: 12px;
	font-family: inherit;
	font-size: 0.95rem;
	transition: border-color 0.2s ease;
}

.dreem-form-row input:focus,
.dreem-form-row textarea:focus {
	outline: none;
	border-color: var(--dreem-primary);
}

.dreem-hotline {
	background: var(--dreem-primary);
	color: #fff;
	border-radius: var(--dreem-radius-lg);
	padding: 1.5rem 1.75rem;
	margin-bottom: 1.25rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.dreem-hotline span {
	font-weight: 600;
	opacity: 0.9;
}

.dreem-hotline a {
	font-family: var(--dreem-font-display);
	font-size: 2rem;
	font-weight: 700;
	color: #fff;
}

.dreem-office-card {
	margin-bottom: 1rem;
}

.dreem-office-card h3 {
	font-family: var(--dreem-font-body);
	font-size: 1.05rem;
	font-weight: 700;
}

.dreem-office-card__phone a {
	color: var(--dreem-primary);
	font-weight: 600;
}

.dreem-offices {
	display: flex;
	flex-direction: column;
}

.dreem-product-single {
	padding: 4rem 0 5rem;
}

.dreem-product-single__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
	align-items: center;
}

.dreem-product-single__media {
	background: var(--dreem-blush-soft);
	border-radius: var(--dreem-radius-lg);
	padding: 2rem;
}

.dreem-entry {
	padding: 2rem 0 4rem;
}

/* Reveal animations */
.reveal {
	opacity: 0;
	transform: translateY(28px);
	transition: opacity 0.7s var(--dreem-ease), transform 0.7s var(--dreem-ease);
}

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

.reveal--delay {
	transition-delay: 0.15s;
}

/* Elementor overrides to inherit kit */
.elementor-button {
	border-radius: var(--dreem-radius-pill) !important;
}

/* Responsive */
@media (max-width: 1024px) {
	.dreem-container {
		width: min(100% - 2rem, var(--dreem-container));
	}

	.dreem-hero__inner,
	.dreem-split,
	.dreem-split--reverse .dreem-split__media,
	.dreem-mission-grid,
	.dreem-contact-grid,
	.dreem-product-single__grid,
	.dreem-footer__grid {
		grid-template-columns: 1fr;
	}

	.dreem-split--reverse .dreem-split__media {
		order: 0;
	}

	.dreem-categories__grid,
	.dreem-products-grid,
	.dreem-values__grid,
	.dreem-services-teaser__grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 1rem;
	}

	.dreem-stats__grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 1.5rem 1rem;
	}

	.dreem-footer__grid {
		grid-template-columns: 1fr 1fr;
		gap: 2rem;
	}

	.dreem-hero {
		min-height: auto;
		padding: 2.5rem 0 3rem;
	}

	.dreem-hero__stage {
		width: min(100%, 300px);
	}

	.dreem-section {
		padding: clamp(3rem, 7vw, 4.5rem) 0;
	}

	.dreem-page-hero {
		padding: 3rem 0 2rem;
	}
}

@media (max-width: 768px) {
	:root {
		--dreem-header-h: 68px;
	}

	body {
		font-size: 0.95rem;
	}

	h1 { font-size: clamp(1.85rem, 7.5vw, 2.35rem); }
	h2 { font-size: clamp(1.45rem, 6vw, 1.9rem); }
	h3 { font-size: 1.1rem; }

	.dreem-container {
		width: min(100% - 1.5rem, var(--dreem-container));
	}

	/* Header */
	.dreem-header__inner {
		display: flex;
		align-items: center;
		justify-content: space-between;
		min-height: var(--dreem-header-h);
		gap: 0.75rem;
		padding-block: 0.35rem;
	}

	.dreem-header__brand .dreem-logo-img,
	.dreem-logo-img {
		height: 40px;
	}

	.dreem-logo-badge {
		border-radius: 11px;
	}

	.dreem-logo-badge--hero {
		display: none;
	}

	.dreem-hero__eyebrow {
		font-size: 0.7rem;
		letter-spacing: 0.14em;
		margin: 0 0 0.55rem;
	}

	.dreem-header__cta--desktop {
		display: none;
	}

	.dreem-nav--desktop {
		display: none !important;
	}

	.dreem-nav-toggle {
		display: flex;
		align-items: center;
		justify-content: center;
		width: 44px;
		height: 44px;
		margin-inline-end: -0.35rem;
		border-radius: 12px;
		z-index: 10020;
		position: relative;
		background: transparent;
	}

	.dreem-nav-toggle span {
		position: absolute;
		left: 11px;
		width: 22px;
		height: 2px;
		border-radius: 2px;
		background: var(--dreem-ink);
		transition: transform 0.3s var(--dreem-ease), opacity 0.2s ease, top 0.3s var(--dreem-ease);
	}

	.dreem-nav-toggle span:nth-child(1) { top: 15px; }
	.dreem-nav-toggle span:nth-child(2) { top: 21px; }
	.dreem-nav-toggle span:nth-child(3) { top: 27px; }

	.dreem-nav-toggle.is-open span:nth-child(1) {
		top: 21px;
		transform: rotate(45deg);
	}

	.dreem-nav-toggle.is-open span:nth-child(2) {
		opacity: 0;
	}

	.dreem-nav-toggle.is-open span:nth-child(3) {
		top: 21px;
		transform: rotate(-45deg);
	}

	/* Full-screen mobile menu — outside header stacking context */
	.dreem-mobile-nav {
		display: block;
		position: fixed;
		inset: 0;
		z-index: 10010;
		background:
			radial-gradient(ellipse 90% 55% at 50% -10%, rgba(248, 215, 208, 0.55), transparent 55%),
			#fff;
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
		transform: translateY(-12px);
		transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.35s var(--dreem-ease);
	}

	.dreem-mobile-nav.is-open {
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
		transform: translateY(0);
	}

	.dreem-mobile-nav[hidden] {
		display: block; /* keep for transitions; visibility handles hide */
	}

	.dreem-mobile-nav__panel {
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		min-height: 100%;
		min-height: 100dvh;
		padding: calc(var(--dreem-header-h) + 2rem) 1.5rem 2.5rem;
		padding-top: max(calc(var(--dreem-header-h) + 2.5rem), env(safe-area-inset-top, 0px) + 5.5rem);
		padding-bottom: max(2.5rem, env(safe-area-inset-bottom, 0px) + 1.5rem);
		box-sizing: border-box;
	}

	.dreem-mobile-nav__nav {
		width: 100%;
		max-width: 300px;
	}

	.dreem-mobile-nav__list,
	.dreem-mobile-nav .dreem-nav__list {
		list-style: none;
		margin: 0;
		padding: 0;
		display: flex;
		flex-direction: column;
		align-items: stretch;
		gap: 0.4rem;
		width: 100%;
	}

	.dreem-mobile-nav__list li,
	.dreem-mobile-nav .dreem-nav__list li {
		width: 100%;
		text-align: center;
	}

	.dreem-mobile-nav__list a,
	.dreem-mobile-nav .dreem-nav__list a {
		display: flex;
		align-items: center;
		justify-content: center;
		padding: 0.95rem 1rem;
		font-size: 1.25rem;
		font-weight: 600;
		border-radius: 14px;
		min-height: 52px;
		color: var(--dreem-ink);
		text-decoration: none;
	}

	.dreem-mobile-nav__list a::after,
	.dreem-mobile-nav .dreem-nav__list a::after {
		display: none;
	}

	.dreem-mobile-nav__list .current-menu-item > a,
	.dreem-mobile-nav .dreem-nav__list .current-menu-item > a,
	.dreem-mobile-nav__list a:active,
	.dreem-mobile-nav .dreem-nav__list a:active {
		color: var(--dreem-primary);
		background: var(--dreem-blush-soft);
	}

	.dreem-mobile-nav__cta {
		display: inline-flex;
		margin-top: 1.75rem;
		min-height: 52px;
		padding: 0.95rem 1.75rem;
		width: min(100%, 280px);
		justify-content: center;
	}

	body.dreem-nav-open .dreem-header {
		z-index: 10020;
		background: #fff;
	}

	/* Hero — product slider first on mobile, then copy */
	.dreem-hero {
		padding: 1.25rem 0 2.25rem;
		min-height: auto;
	}

	.dreem-hero__inner {
		gap: 1.15rem;
	}

	.dreem-hero__visual {
		order: -1;
		margin: 0 auto 0.15rem;
		width: 100%;
		max-width: 200px;
	}

	.dreem-hero__content {
		order: 0;
		text-align: center;
	}

	.dreem-hero__title {
		margin-bottom: 0.85rem;
	}

	.dreem-hero__text {
		font-size: 0.95rem;
		line-height: 1.65;
		margin-inline: auto;
		margin-bottom: 1.35rem;
		max-width: 34rem;
	}

	.dreem-hero__actions {
		justify-content: center;
		flex-direction: column;
		align-items: stretch;
		gap: 0.65rem;
		max-width: 280px;
		margin-inline: auto;
	}

	.dreem-hero__actions .dreem-btn {
		width: 100%;
		min-height: 48px;
		justify-content: center;
	}

	.dreem-hero__stage {
		width: 100%;
		max-width: 210px;
	}

	.dreem-hero__product {
		width: 92%;
	}

	.dreem-hero__glow {
		max-width: 200px;
		width: 90%;
	}

	.dreem-hero__pedestal {
		margin-top: 0;
		height: 14px;
	}

	/* Soften motion on small screens */
	.dreem-hero__orbit {
		animation-duration: 14s;
	}

	.dreem-texture-swirl::after {
		width: min(280px, 70vw);
		opacity: 0.7;
	}

	.dreem-crumbs {
		display: none;
	}

	/* Sections */
	.dreem-section {
		padding: 2.75rem 0;
	}

	.dreem-section__header {
		margin-bottom: 1.75rem;
	}

	.dreem-section__header p {
		font-size: 0.95rem;
	}

	.dreem-split {
		gap: 1.5rem;
	}

	.dreem-split__media img {
		aspect-ratio: 4 / 3;
		border-radius: 18px;
	}

	.dreem-split__content {
		text-align: center;
	}

	.dreem-split__content .dreem-motif {
		margin-inline: auto;
	}

	.dreem-split__content .dreem-btn {
		min-height: 48px;
	}

	.dreem-dots {
		display: none;
	}

	/* Cards — 2 columns where it helps, comfortable tap */
	.dreem-categories__grid,
	.dreem-values__grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 0.75rem;
	}

	.dreem-cat-card,
	.dreem-value-card {
		padding: 1.15rem 1rem;
		border-radius: 14px;
	}

	.dreem-cat-card__icon {
		width: 36px;
		height: 36px;
		font-size: 0.8rem;
		margin-bottom: 0.7rem;
	}

	.dreem-cat-card h3,
	.dreem-value-card h3 {
		font-size: 0.95rem;
	}

	.dreem-cat-card p,
	.dreem-value-card p {
		font-size: 0.8rem;
		line-height: 1.5;
	}

	.dreem-value-card__num {
		font-size: 1.2rem;
	}

	.dreem-products-grid,
	.dreem-services-teaser__grid {
		grid-template-columns: 1fr;
		gap: 1rem;
	}

	.dreem-product-card__media {
		padding: 1.1rem;
	}

	.dreem-product-card__body {
		padding: 1rem 1.15rem 1.35rem;
		text-align: center;
	}

	.dreem-product-card__body .dreem-btn {
		width: 100%;
		min-height: 44px;
	}

	.dreem-service-card {
		padding: 1.5rem 1.25rem;
		text-align: center;
	}

	.dreem-stats {
		padding: 2.75rem 0;
	}

	.dreem-stats__grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 1.35rem 0.75rem;
	}

	.dreem-stat__num {
		font-size: clamp(1.6rem, 7vw, 2.1rem);
	}

	.dreem-stat__label {
		font-size: 0.82rem;
		display: block;
		padding-inline: 0.25rem;
	}

	.dreem-newsletter-band {
		padding: 3rem 0;
	}

	.dreem-newsletter-band__inner {
		padding-inline: 0.25rem;
	}

	.dreem-newsletter {
		flex-direction: column;
		border-radius: 16px;
		padding: 0.65rem;
		gap: 0.5rem;
	}

	.dreem-newsletter input[type="email"] {
		padding: 0.95rem 1rem;
		font-size: 1rem;
		text-align: center;
	}

	.dreem-newsletter .dreem-btn {
		width: 100%;
		min-height: 48px;
		border-radius: 12px;
	}

	/* Inner pages */
	.dreem-page-hero {
		padding: 2.5rem 0 1.75rem;
	}

	.dreem-page-hero .dreem-lead {
		font-size: 0.95rem;
		padding-inline: 0.25rem;
	}

	.dreem-mission-grid {
		gap: 1.75rem;
		text-align: center;
	}

	.dreem-mission-grid .dreem-motif {
		margin-inline: auto;
	}

	.dreem-contact-grid {
		gap: 1.75rem;
	}

	.dreem-contact-form-wrap,
	.dreem-office-card {
		padding: 1.35rem 1.2rem;
	}

	.dreem-contact-form-wrap {
		text-align: center;
	}

	.dreem-contact-form-wrap .dreem-motif {
		margin-inline: auto;
	}

	.dreem-form-row {
		text-align: start;
	}

	.dreem-form-row input,
	.dreem-form-row textarea {
		font-size: 16px; /* prevents iOS zoom */
		min-height: 48px;
	}

	.dreem-contact-form .dreem-btn {
		width: 100%;
		min-height: 48px;
	}

	.dreem-hotline {
		flex-direction: column;
		gap: 0.35rem;
		text-align: center;
		padding: 1.25rem;
	}

	.dreem-hotline a {
		font-size: 1.75rem;
	}

	.dreem-product-single {
		padding: 2.5rem 0 3.5rem;
	}

	.dreem-product-single__body {
		text-align: center;
	}

	.dreem-product-single__body .dreem-motif {
		margin-inline: auto;
	}

	.dreem-product-single__body .dreem-btn {
		width: 100%;
		max-width: 280px;
	}

	/* Footer */
	.dreem-footer {
		padding-top: 2.75rem;
	}

	.dreem-footer__grid {
		grid-template-columns: 1fr;
		gap: 1.75rem;
		text-align: start;
		padding-bottom: 2rem;
	}

	.dreem-footer__logo {
		margin-inline: 0;
	}

	.dreem-logo-badge--footer {
		display: inline-flex;
	}

	.dreem-footer__tagline {
		max-width: 22rem;
		margin-inline: 0;
	}

	.dreem-social {
		justify-content: flex-start;
	}

	.dreem-footer__links,
	.dreem-footer__contact {
		display: flex;
		flex-direction: column;
		align-items: flex-start;
	}

	.dreem-newsletter--compact {
		max-width: 320px;
		margin-inline: 0;
	}

	.dreem-footer__bar {
		padding: 1rem 0 calc(1rem + env(safe-area-inset-bottom, 0px));
		text-align: start;
	}

	.dreem-section__cta .dreem-btn {
		min-height: 48px;
		width: min(100%, 260px);
	}
}

@media (max-width: 420px) {
	.dreem-categories__grid,
	.dreem-values__grid {
		grid-template-columns: 1fr;
	}

	.dreem-hero__visual,
	.dreem-hero__stage {
		max-width: 190px;
	}

	.dreem-stats__grid {
		gap: 1.15rem 0.5rem;
	}
}

/* Touch devices: prefer tap over hover lift */
@media (hover: none) {
	.dreem-product-card:hover,
	.dreem-cat-card:hover,
	.dreem-service-card:hover,
	.dreem-value-card:hover {
		transform: none;
	}

	.dreem-btn:hover {
		transform: none;
	}
}
