/* =========================================================
   Diptych — Landing styles (complete)
   Tokens: assets/css/tokens.css
   ========================================================= */

/* ---------------------------------------------------------
   Astra overrides — Home full bleed
   --------------------------------------------------------- */
.home .site-header,
.home #masthead,
.home .ast-primary-header-bar,
.home .ast-mobile-header-wrap,
.home .site-footer,
.home #colophon,
.home .site-below-footer-wrap,
.home .ast-footer-copyright {
	display: none !important;
}

.home.ast-separate-container,
.home.ast-plain-container,
.home #page,
.home #content,
.home .site-content {
	padding: 0 !important;
	margin: 0 !important;
	max-width: none !important;
	background: var(--c-dark) !important;
}

.home .ast-container,
.home .site-content > .ast-container {
	max-width: none !important;
	width: 100% !important;
	padding: 0 !important;
	margin: 0 !important;
	display: block !important;
}

.home .entry-header,
.home .page-header,
.home .ast-breadcrumbs-wrapper,
.home .ast-article-single > .entry-content > .ast-single-entry-banner {
	display: none !important;
}

/* Kill Astra / WP default blue accents on Home */
.home #ast-scroll-top,
.home .ast-scroll-to-top-icon,
.home .ast-scroll-top-icon,
.home #ast-scroll-top .ast-icon,
.home .ast-scroll-to-top {
	display: none !important;
	visibility: hidden !important;
	opacity: 0 !important;
	pointer-events: none !important;
}

.home a,
.home .entry-content a {
	color: inherit;
	text-decoration: none;
	transition: color 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.home a:hover,
.home a:focus,
.home a:active,
.home .entry-content a:hover,
.home .entry-content a:focus {
	color: var(--c-gold);
	outline: none;
}

.home button:focus,
.home button:focus-visible,
.home input:focus,
.home textarea:focus,
.home select:focus,
.home a:focus-visible {
	outline: 1px solid var(--c-gold);
	outline-offset: 2px;
}

.home .dp-nav a:hover,
.home .dp-nav a:focus,
.home .dp-footer a:hover,
.home .dp-footer a:focus {
	color: #debf92 !important;
}

.home .dp-btn:hover,
.home .dp-btn:focus {
	outline: none;
}

/* Override Astra theme-color / link-color blues */
.home {
	--ast-global-color-0: #debf92;
	--ast-global-color-1: #bb812f;
	--ast-global-color-2: #212121;
	--ast-global-color-3: #1f1e1d;
}
.home .entry-footer,
.home .ast-breadcrumbs-wrapper {
	display: none !important;
}

.home .diptych-landing {
	position: relative;
	width: 100%;
	background: var(--c-dark);
}

/* ---------------------------------------------------------
   Shared section primitives
   --------------------------------------------------------- */
.dp-section {
	position: relative;
	width: 100%;
	padding-block: var(--sp-100);
	background: var(--c-white);
	color: var(--c-ink);
}

.dp-section--dark {
	background: var(--c-dark);
	color: var(--c-gold);
}

.dp-section--parchment {
	background: var(--c-parchment);
}

.dp-section__inner {
	max-width: var(--container);
	margin-inline: auto;
	padding-inline: var(--margin);
}

.dp-section-title {
	margin: 0 0 var(--sp-48);
	font-family: var(--font-display);
	font-weight: 300;
	font-style: normal;
	font-size: 36px;
	line-height: 1.15;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	text-align: center;
	color: var(--c-ink);
}

.dp-section-title--light {
	color: var(--c-gold);
}

.dp-eyebrow {
	font-family: var(--font-body);
	font-weight: 300;
	font-size: 14px;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--c-ink);
}

.dp-display {
	font-family: var(--font-display);
	font-weight: 300;
	font-style: normal;
	line-height: 1.15;
	color: var(--c-ink);
}

.dp-body {
	font-family: var(--font-body);
	font-weight: 200;
	font-size: 14px;
	line-height: 1.4;
	letter-spacing: var(--ls-body);
	color: var(--c-ink);
}

.dp-quote {
	margin: 0 0 var(--sp-16);
	/* Figma: Manege Demo Light 20 */
	font-family: var(--font-display);
	font-weight: 300;
	font-style: normal;
	font-size: 20px;
	line-height: 1.25;
	letter-spacing: -0.01em;
	color: var(--c-ink);
}

/* ---------------------------------------------------------
   Scroll reveal (JS adauga .is-in)
   --------------------------------------------------------- */
.dp-reveal {
	opacity: 0;
	transform: translateY(32px);
	transition:
		opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
		transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
	will-change: opacity, transform;
}

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

.dp-reveal--left {
	transform: translateX(-48px);
}

.dp-reveal--right {
	transform: translateX(48px);
}

.dp-reveal--scale {
	transform: scale(0.94);
}

.dp-reveal--d1 { transition-delay: 0.08s; }
.dp-reveal--d2 { transition-delay: 0.16s; }
.dp-reveal--d3 { transition-delay: 0.24s; }
.dp-reveal--d4 { transition-delay: 0.32s; }

@media (prefers-reduced-motion: reduce) {
	.dp-reveal,
	.dp-reveal--left,
	.dp-reveal--right,
	.dp-reveal--scale,
	.dp-product__box.dp-reveal,
	.dp-product__bottles.dp-reveal,
	.dp-product__info.dp-reveal {
		opacity: 1;
		transform: none;
		transition: none;
	}
}

/* Pill button — Figma main button (gold outline + sunburst on top edge) */
.dp-btn {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 272px;
	height: 55px;
	padding: 6px 48px;
	border: 1px solid #debf92;
	border-radius: 50px;
	color: #debf92 !important;
	font-family: var(--font-body);
	font-weight: 500;
	font-size: 16px;
	letter-spacing: 0.32px;
	text-transform: uppercase;
	white-space: nowrap;
	background: transparent !important;
	text-decoration: none !important;
	box-shadow: none;
	cursor: pointer;
	transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.dp-btn:hover,
.dp-btn:focus,
.home .dp-btn:hover,
.home .dp-btn:focus,
.home a.dp-btn:hover,
.home a.dp-btn:focus {
	background: #debf92 !important;
	border-color: #debf92 !important;
	color: #212121 !important;
	outline: none;
}

.dp-btn--solid {
	background: #debf92 !important;
	color: #212121 !important;
	border-color: #debf92;
}

.dp-btn--solid:hover {
	background: transparent !important;
	color: #debf92 !important;
}

.dp-btn--dark {
	border-color: #212121;
	color: #212121 !important;
}

.dp-btn--dark:hover {
	background: #212121 !important;
	color: #debf92 !important;
}

.dp-btn__star {
	position: absolute;
	top: -22px;
	left: 50%;
	width: 45px;
	height: 28px;
	transform: translateX(-50%);
	background: url("../img/btn-star.svg") center bottom / contain no-repeat;
	pointer-events: none;
	z-index: 2;
}

.dp-btn__label {
	position: relative;
	z-index: 1;
	color: inherit;
}

/* Diamond bullet marker */
.dp-diamond {
	display: inline-block;
	width: 10px;
	height: 10px;
	flex-shrink: 0;
	background: var(--c-gold);
	transform: rotate(45deg);
}

.dp-diamond--img {
	width: 16px;
	height: 16px;
	background: url("../img/diamond.svg") center / contain no-repeat;
	transform: none;
}

/* ---------------------------------------------------------
   HEADER / NAV — Figma unified: hamburger | logo | user+cart
   --------------------------------------------------------- */
.dp-header {
	position: absolute;
	inset: 0 0 auto 0;
	z-index: 50;
	height: var(--nav-h);
	transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.dp-header.is-scrolled {
	position: fixed;
	background: rgba(31, 30, 29, 0.92);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	box-shadow: 0 3px 31px rgba(0, 0, 0, 0.25);
}

.dp-header--light {
	position: relative;
	background: #fff;
	box-shadow: 0 3px 31px rgba(0, 0, 0, 0.25);
}

.dp-header--light.is-scrolled {
	background: #fff;
}

.dp-header--dark {
	position: sticky;
	top: 0;
	background: rgba(31, 30, 29, 0.97);
	box-shadow: 0 3px 31px rgba(0, 0, 0, 0.25);
}

.dp-header--dark.is-scrolled {
	background: rgba(31, 30, 29, 0.97);
}

.dp-header__inner {
	position: relative;
	max-width: var(--container);
	height: 100%;
	width: 100%;
	margin-inline: auto;
	padding-inline: var(--margin);
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	gap: 16px;
	box-sizing: border-box;
}

.dp-burger {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 34px;
	height: 30px;
	padding: 0;
	background: none;
	border: 0;
	cursor: pointer;
	z-index: 60;
	justify-self: start;
	grid-column: 1;
}

.dp-header__logo {
	position: static;
	grid-column: 2;
	justify-self: center;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 2;
	line-height: 0;
	transform: none;
	left: auto;
	top: auto;
}

.dp-header__brand-img {
	width: 100px;
	height: auto;
	display: block;
}

.dp-header__actions {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 12px;
	justify-self: end;
	grid-column: 3;
	z-index: 3;
	min-width: 0;
}

.dp-icon {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	opacity: 1;
	transition: opacity 0.2s ease;
	flex-shrink: 0;
}

.dp-icon:hover {
	opacity: 0.7;
}

.dp-icon img {
	width: 22px;
	height: 22px;
	object-fit: contain;
	display: block;
}

/* Figma: user = Frame 385 (36px frame, glyph ~15px), cart vector 17x16 in 36px box */
.dp-icon--user img {
	width: 36px;
	height: 36px;
}

.dp-icon--cart img {
	width: 17px;
	height: 16px;
}

.dp-icon--cart .dp-cart-count {
	position: absolute;
	top: 7px;
	right: 4px;
	min-width: 10px;
	height: 10px;
	padding: 0 2px;
	border-radius: 50%;
	background: var(--c-gold);
	color: var(--c-ink);
	font-family: var(--font-body);
	font-size: 7px;
	font-weight: 600;
	line-height: 1;
	display: flex;
	align-items: center;
	justify-content: center;
}

.dp-burger span {
	display: block;
	height: 2px;
	width: 100%;
	background: var(--c-gold);
	transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Figma: pe header alb iconitele raman gold (acelasi component) */
.dp-header--light .dp-burger span {
	background: #b8813f;
}

.dp-header--light .dp-icon img {
	filter: none;
}

.dp-header--light .dp-icon--cart .dp-cart-count {
	background: var(--c-gold);
	color: #212121;
}

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

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

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

/* Flyout menu — all breakpoints */
.dp-nav {
	position: fixed;
	inset: var(--nav-h) 0 auto 0;
	display: none;
	flex-direction: column;
	align-items: stretch;
	gap: 0;
	background: rgba(31, 30, 29, 0.97);
	padding: 24px var(--margin) 36px;
	transform: translateY(-12px);
	opacity: 0;
	pointer-events: none;
	transition: transform 0.35s ease, opacity 0.35s ease;
	z-index: 55;
	max-height: calc(100vh - var(--nav-h));
	overflow-y: auto;
}

.dp-nav.is-open {
	display: flex;
	transform: translateY(0);
	opacity: 1;
	pointer-events: auto;
}

.dp-nav a {
	padding: 14px 0;
	font-family: var(--font-body);
	font-weight: 200;
	font-size: 16px;
	letter-spacing: 0.32px;
	text-transform: uppercase;
	color: var(--c-gold);
	white-space: nowrap;
	border-bottom: 1px solid rgba(222, 191, 146, 0.15);
	transition: opacity 0.2s ease;
}

.dp-nav a:hover {
	opacity: 0.65;
}

.dp-header--light .dp-nav {
	background: #fff;
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.dp-header--light .dp-nav a {
	color: #212121;
	border-bottom-color: rgba(33, 33, 33, 0.1);
}

/* ---------------------------------------------------------
   1. HERO
   --------------------------------------------------------- */
.dp-hero {
	position: relative;
	height: 760px;
	max-height: 100vh;
	overflow: hidden;
	color: var(--c-white);
}

.dp-hero__bg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	pointer-events: none;
}

.dp-hero__overlay {
	position: absolute;
	inset: 0;
	background: var(--c-overlay);
	z-index: 1;
	pointer-events: none;
}

.dp-hero__logo {
	position: absolute;
	left: 50%;
	top: 278px;
	transform: translateX(-50%);
	display: flex;
	flex-direction: column;
	align-items: center;
	z-index: 3;
	text-align: center;
	pointer-events: none;
}

.dp-hero__brand {
	width: 216px;
	max-width: 46vw;
	height: auto;
}

.dp-hero__mark {
	width: 72px;
	height: auto;
}

.dp-hero__wordmark {
	width: 300px;
	max-width: 60vw;
	height: auto;
}

.dp-hero__tagline {
	position: absolute;
	left: 50%;
	top: 425px;
	transform: translateX(-50%);
	width: 356px;
	max-width: min(356px, 86vw);
	margin: 0;
	text-align: center;
	font-family: var(--font-body);
	font-weight: 200;
	font-size: 16px;
	line-height: 1.4;
	letter-spacing: 0.32px;
	color: var(--c-white);
	z-index: 3;
	pointer-events: none;
}

.dp-hero__ctas {
	position: absolute;
	left: var(--margin);
	right: var(--margin);
	bottom: 57px;
	z-index: 5;
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	gap: 24px;
	pointer-events: none;
}

.dp-hero__ctas .dp-btn {
	position: static;
	pointer-events: auto;
	margin-top: 22px;
	cursor: pointer;
}

.dp-hero .dp-btn {
	/* room for sunburst sitting on top border */
	margin-top: 22px;
}

.home .dp-hero .dp-btn,
.home .dp-hero a.dp-btn {
	color: #debf92 !important;
	background: transparent !important;
	border-color: #debf92 !important;
}

.home .dp-hero .dp-btn:hover,
.home .dp-hero a.dp-btn:hover {
	background: #debf92 !important;
	color: #212121 !important;
}

/* ---------------------------------------------------------
   2. BLUE — Почему наши коробки синие? (Figma 635:3073)
   --------------------------------------------------------- */
.dp-blue {
	--c-cobalt: #005ae1;
	background: var(--c-cobalt);
	color: var(--c-white);
	padding: 0;
}

.dp-blue__inner {
	max-width: 1440px;
	margin-inline: auto;
	min-height: 508px;
	display: grid;
	grid-template-columns: minmax(0, 1fr) 1px minmax(0, 1fr);
	align-items: center;
	gap: 0;
	padding: 54px var(--margin) 54px;
	box-sizing: border-box;
}

.dp-blue__copy {
	max-width: 503px;
	padding-right: 48px;
}

.dp-blue__sun {
	display: block;
	width: 195px;
	height: auto;
	margin-bottom: 40px;
}

.dp-blue__title {
	margin: 0 0 30px;
	font-family: var(--font-display);
	font-weight: 300;
	font-size: 30px;
	line-height: 1;
	letter-spacing: 0.6px;
	text-transform: uppercase;
	color: var(--c-white);
}

.dp-blue__text {
	margin: 0 0 1.2em;
	font-family: var(--font-body);
	font-weight: 200;
	font-size: 16px;
	line-height: 1.4;
	letter-spacing: 0.32px;
	color: var(--c-white);
	max-width: 407px;
}

.dp-blue__text:last-child {
	margin-bottom: 0;
}

.dp-blue__divider {
	width: 1px;
	align-self: stretch;
	min-height: 358px;
	background: rgba(255, 255, 255, 0.85);
	justify-self: center;
}

.dp-blue__media {
	justify-self: end;
	width: 100%;
	max-width: 547px;
	aspect-ratio: 547 / 321;
	overflow: hidden;
}

.dp-blue__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 58% 42%;
}

@media (max-width: 1024px) {
	.dp-blue__inner {
		grid-template-columns: 1fr;
		gap: 32px;
		padding: 48px 24px;
		min-height: 0;
	}

	.dp-blue__copy {
		max-width: none;
		padding-right: 0;
	}

	.dp-blue__divider {
		display: none;
	}

	.dp-blue__media {
		justify-self: stretch;
		max-width: none;
	}

	.dp-blue__sun {
		width: 140px;
		margin-bottom: 24px;
	}

	.dp-blue__title {
		font-size: 24px;
	}
}

@media (max-width: 768px) {
	/* Figma mobile home: stacked CTAs centered at bottom */
	.dp-hero__ctas {
		left: 50%;
		right: auto;
		bottom: 28px;
		transform: translateX(-50%);
		width: min(272px, calc(100% - 48px));
		flex-direction: column;
		align-items: stretch;
		gap: 12px;
	}

	.dp-hero__ctas .dp-btn {
		position: static;
		transform: none;
		width: 100%;
		justify-content: center;
		left: auto;
		right: auto;
		bottom: auto;
		margin-top: 0;
		height: 55px;
		color: #debf92 !important;
		border-color: #debf92 !important;
		background: transparent !important;
		font-size: 15px;
	}

	.dp-hero__tagline {
		top: auto;
		bottom: 200px;
		left: 50%;
		right: auto;
		transform: translateX(-50%);
		width: min(232px, 72vw);
		text-align: center;
		font-size: 14px;
	}

	.dp-hero__logo {
		top: 32%;
	}
}

/* ---------------------------------------------------------
   2b. MISSION (legacy — kept CSS if referenced elsewhere)
   --------------------------------------------------------- */
.dp-mission {
	background: var(--c-white);
	padding-block: var(--sp-100);
	color: var(--c-ink);
}

.dp-mission__shell {
	max-width: var(--container);
	margin-inline: auto;
	padding-inline: var(--margin);
}

.dp-mission__shell > .dp-mission__logo {
	display: block;
	width: 72px;
	height: auto;
	margin-bottom: var(--sp-24);
}

.dp-mission__shell > .dp-mission__headline {
	margin: 0 0 var(--sp-48);
}

.dp-mission__toggle {
	display: none;
}

.dp-mission__inner {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 0;
	align-items: start;
	max-width: none;
	margin-inline: 0;
	padding-inline: 0;
}

/* Desktop: logo + headline sit in column 1 above mission text */
@media (min-width: 769px) {
	.dp-mission__shell {
		display: grid;
		grid-template-columns: 1fr 1fr 1fr;
		align-items: start;
	}

	.dp-mission__shell > .dp-mission__logo {
		grid-column: 1;
		grid-row: 1;
		padding-right: var(--sp-32);
		margin-bottom: var(--sp-24);
	}

	.dp-mission__shell > .dp-mission__headline {
		grid-column: 1;
		grid-row: 2;
		padding-right: var(--sp-32);
		margin-bottom: var(--sp-48);
	}

	.dp-mission__inner {
		display: contents;
	}

	.dp-mission__col:nth-child(1) {
		grid-column: 1;
		grid-row: 3;
		padding-left: 0;
		padding-right: var(--sp-32);
	}

	.dp-mission__col:nth-child(2) {
		grid-column: 2;
		grid-row: 1 / span 3;
		padding-inline: var(--sp-32);
	}

	.dp-mission__col:nth-child(3) {
		grid-column: 3;
		grid-row: 1 / span 3;
		padding-left: var(--sp-32);
		padding-right: 0;
	}

	/* Dividers on cols 1 & 2 */
	.dp-mission__col:nth-child(1)::after,
	.dp-mission__col:nth-child(2)::after {
		content: "";
		position: absolute;
		top: 0;
		right: 0;
		width: 1px;
		height: 100%;
		min-height: 645px;
		background: rgba(33, 33, 33, 0.18);
	}

	.dp-mission__col:nth-child(1)::after {
		/* stretch divider across logo+headline+text rows — approximate */
		top: calc(-1 * (72px + var(--sp-24) + 3.2em * 3 + var(--sp-48)));
		height: calc(100% + 72px + var(--sp-24) + 3.2em * 3 + var(--sp-48));
		min-height: 0;
	}
}

.dp-mission__col {
	position: relative;
	padding-inline: var(--sp-32);
	min-height: 1px;
}

.dp-mission__col:first-child {
	padding-left: 0;
}

.dp-mission__col:last-child {
	padding-right: 0;
}

/* Vertical dividers between columns (desktop grid without display:contents fallback) */
.dp-mission__col:not(:last-child)::after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	width: 1px;
	height: 100%;
	min-height: 645px;
	background: rgba(33, 33, 33, 0.18);
}

@media (min-width: 769px) {
	.dp-mission__col:not(:last-child)::after {
		/* overridden per-column below when shell uses display:contents */
		min-height: 0;
		height: 100%;
	}
}

.dp-mission__headline {
	margin: 0 0 var(--sp-48);
	/* Figma: Manege Demo Light 50 — Cormorant substitut, DREPT */
	font-family: var(--font-display);
	font-weight: 300;
	font-style: normal !important;
	font-size: clamp(36px, 3.6vw, 50px);
	line-height: 1.05;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	color: #212121;
	font-synthesis: none;
}

.dp-mission__logo {
	width: 74px;
	height: auto;
	margin-bottom: var(--sp-24);
}

.dp-mission__title {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	margin: 0 0 var(--sp-24);
	font-family: var(--font-display);
	font-weight: 300;
	font-style: normal !important;
	font-size: 32px;
	line-height: 1.15;
	letter-spacing: 0.02em;
	text-transform: none;
	color: #212121;
	font-synthesis: none;
}

/* Diamond via ::before on titles / list items */
.dp-mission__title::before,
.dp-mission__list li::before,
.dp-mission__block-title::before {
	content: "";
	display: inline-block;
	width: 10px;
	height: 10px;
	margin-top: 0.55em;
	flex-shrink: 0;
	background: var(--c-gold);
	transform: rotate(45deg);
}

.dp-mission__title--img::before,
.dp-mission__list--img li::before {
	width: 16px;
	height: 16px;
	margin-top: 0.15em;
	background: url("../img/diamond.svg") center / contain no-repeat;
	transform: none;
}

.dp-mission__text {
	margin: 0 0 var(--sp-16);
	font-family: var(--font-body);
	font-weight: 200;
	font-size: 14px;
	line-height: 1.4;
	letter-spacing: var(--ls-body);
}

.dp-mission__text:last-child {
	margin-bottom: 0;
}

.dp-mission__list {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: var(--sp-16);
}

.dp-mission__list li {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	font-family: var(--font-body);
	font-weight: 200;
	font-size: 14px;
	line-height: 1.4;
	letter-spacing: var(--ls-body);
}

.dp-mission__block {
	margin-top: var(--sp-48);
}

.dp-mission__block-title {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	margin: 0 0 var(--sp-16);
	font-family: var(--font-display);
	font-weight: 300;
	font-style: normal !important;
	font-size: 32px;
	line-height: 1.1;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	color: #212121;
	font-synthesis: none;
}

.dp-mission__aside {
	margin-top: auto;
	padding-top: var(--sp-48);
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 14px;
	text-align: right;
}

.dp-mission__brand {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 4px;
}

.dp-mission__aside-sun {
	display: block;
	width: 32px;
	height: auto;
}

.dp-mission__mark {
	display: block;
	width: 70px;
	height: auto;
	margin: 0;
}

.dp-mission__closer {
	margin: 0;
	max-width: 216px;
	font-family: var(--font-body);
	font-weight: 500;
	font-size: 16px;
	line-height: 1.25;
	letter-spacing: 0.02em;
	color: #212121;
	text-align: right;
}

.dp-mission__col:last-child {
	display: flex;
	flex-direction: column;
	min-height: 645px;
}

/* ---------------------------------------------------------
   3. CATALOG — product rows (sticle pe edge ca in Figma)
   --------------------------------------------------------- */
.dp-catalog {
	background: var(--c-white);
	padding-block: var(--sp-80) 0;
	color: var(--c-ink);
	overflow-x: clip;
}

.dp-catalog__inner {
	max-width: none;
	margin-inline: auto;
	padding-inline: 0;
	width: 100%;
}

.dp-catalog__head {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	margin-bottom: var(--sp-64);
	padding-inline: var(--margin);
}

.dp-catalog__sunburst {
	display: block;
	width: 215px;
	max-width: 55%;
	height: auto;
	margin-bottom: var(--sp-12);
}

.dp-catalog .dp-section-title {
	margin-bottom: var(--sp-12);
	/* Figma catalog title — Manege/Cormorant, nu Oswald */
	font-family: var(--font-display);
	font-weight: 300;
	font-style: normal;
	font-size: 32px;
	letter-spacing: 0.02em;
}

.dp-catalog .dp-eyebrow {
	margin: 0;
	text-align: center;
}

.dp-product {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(320px, 475px) minmax(0, 1fr);
	align-items: center;
	column-gap: clamp(40px, 6vw, 100px);
	padding-block: var(--sp-64);
	border-bottom: 1px solid rgba(33, 33, 33, 0.1);
	/* full-bleed pe latimea ecranului — pozele lipite de margini */
	width: 100vw;
	max-width: 100vw;
	position: relative;
	left: 50%;
	right: 50%;
	margin-left: -50vw;
	margin-right: -50vw;
	box-sizing: border-box;
}

.dp-product:first-of-type {
	border-top: 1px solid rgba(33, 33, 33, 0.1);
}

/* Cutia — lipita de marginea STANGA a ecranului */
.dp-product__box {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	min-height: 380px;
	overflow: hidden;
}

.dp-product__box img {
	display: block;
	width: min(483px, 34vw);
	max-width: none;
	height: auto;
	object-fit: contain;
	object-position: left center;
	transition: none;
}

.dp-product:hover .dp-product__box img {
	transform: none;
}

.dp-product__info {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	text-align: left;
	gap: 20px;
	width: 100%;
	max-width: 475px;
	justify-self: center;
	padding-inline: 0;
	z-index: 1;
}

/* Sticlele — lipite de marginea DREAPTA, echilibrate cu cutia */
.dp-product__bottles {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	height: min(500px, 40vw);
	min-height: 400px;
	overflow: hidden;
	margin: 0;
}

.dp-product__bottles img,
.dp-product__bottles picture {
	display: block;
	height: 100%;
	max-height: min(500px, 40vw);
}

.dp-product__bottles img {
	width: auto;
	max-width: min(500px, 36vw);
	object-fit: contain;
	object-position: right center;
	transition: none;
}

/* Animatie: intra din lateralele ecranului si raman lipite */
.dp-product__box.dp-reveal {
	opacity: 0;
	transform: translateX(-35%);
	transition:
		opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
		transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.dp-product__bottles.dp-reveal {
	opacity: 0;
	transform: translateX(35%);
	transition:
		opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.12s,
		transform 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.12s;
}

.dp-product__box.dp-reveal.is-in,
.dp-product__bottles.dp-reveal.is-in {
	opacity: 1;
	transform: translateX(0);
}

.dp-product__info.dp-reveal {
	opacity: 0;
	transform: translateY(24px);
	transition:
		opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.2s,
		transform 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.2s;
}

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

.dp-product__name {
	margin: 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	width: 100%;
}
.dp-product__brand {
	font-family: var(--font-display);
	font-weight: 300;
	font-style: normal !important;
	font-size: 36px;
	letter-spacing: 0.02em;
	color: #262626;
	text-transform: none;
	font-synthesis: none;
}
.dp-product__sep {
	width: 1px;
	height: 44px;
	background: rgba(33, 33, 33, 0.35);
	flex-shrink: 0;
}
.dp-product__title {
	font-family: var(--font-display);
	font-weight: 300;
	font-style: normal !important;
	font-size: 27px;
	line-height: 1.1;
	letter-spacing: -0.01em;
	text-transform: uppercase;
	color: #b8813f;
	font-synthesis: none;
	text-align: right;
}
.dp-product__meta {
	margin: 0;
	font-family: var(--font-body);
	font-weight: 500;
	font-style: normal !important;
	font-size: 16px;
	letter-spacing: 0.32px;
	color: #212121;
	text-align: left;
}
.dp-product__actions {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	gap: 16px;
	margin-top: 0;
}

.dp-product__cta {
	display: flex;
	align-items: center;
	gap: 20px;
}

.dp-btn-more {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 55px;
	padding: 7px 26px;
	border: 1px solid var(--c-gold);
	border-radius: var(--r-pill);
	font-family: var(--font-body);
	font-weight: 500;
	font-size: 16px;
	letter-spacing: 0.32px;
	color: #b8813f !important;
	background: transparent !important;
	text-decoration: none;
	white-space: nowrap;
}

.dp-btn-more:hover,
.dp-btn-more:focus {
	background: var(--c-gold) !important;
	color: #212121 !important;
}

.dp-btn-bag {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 69px;
	height: 55px;
	border: 1px solid var(--c-gold);
	border-radius: var(--r-pill);
	background: var(--c-gold) !important;
	flex-shrink: 0;
}

.dp-btn-bag:hover,
.dp-btn-bag:focus {
	filter: brightness(0.95);
}

.dp-btn-bag img {
	width: 17px;
	height: 16px;
	display: block;
}
.dp-product__wines strong {
	display: block;
	margin: 0;
	font-family: var(--font-display);
	font-weight: 300;
	font-style: normal !important;
	font-size: 16px;
	line-height: 1.15;
	letter-spacing: -0.01em;
	text-transform: uppercase;
	color: #b8813f;
	font-synthesis: none;
}
.dp-product__wines span {
	display: block;
	font-family: var(--font-body);
	font-weight: 200;
	font-style: normal !important;
	font-size: 14px;
	line-height: 1.4;
	letter-spacing: 0.02em;
	text-transform: none;
	color: #212121;
}
.dp-reviews__stars {
	color: #b8813f;
	letter-spacing: 2px;
	font-size: 14px;
	margin-bottom: 8px;
}

.dp-product__desc {
	margin: 0;
	font-family: var(--font-body);
	font-weight: 200;
	font-style: normal !important;
	font-size: 14px;
	line-height: 1.4;
	letter-spacing: 0.02em;
	color: #212121;
	text-align: left;
}

.dp-product__wines {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 12px;
	width: 100%;
	text-align: left;
}

.dp-product__wines li {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 4px;
	flex: 1 1 0;
	min-width: 0;
	font-family: var(--font-body);
	font-weight: 200;
	font-size: 14px;
	line-height: 1.4;
	letter-spacing: 0.02em;
	text-transform: none;
	color: #212121;
	text-align: left;
}

.dp-product__rule {
	display: block;
	width: 100%;
	height: 1px;
	margin: 0;
	border: 0;
	background: rgba(33, 33, 33, 0.25);
}

.dp-product__price {
	margin: 0;
	font-family: var(--font-body);
	font-weight: 500;
	font-style: normal !important;
	font-size: 36px;
	line-height: 1;
	letter-spacing: 0.02em;
	color: #212121;
	white-space: nowrap;
}

.dp-product__price span {
	font-weight: 500;
	font-size: 36px;
	margin-left: 5px;
}

.dp-btn-cart {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 0;
	height: 55px;
	padding: 7px 40px;
	border: 1px solid #debf92;
	border-radius: 50px;
	background: transparent !important;
	color: #b8813f !important;
	font-family: var(--font-body);
	font-weight: 500;
	font-style: normal !important;
	font-size: 16px;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	text-decoration: none !important;
	font-synthesis: none;
	cursor: pointer;
	transition:
		background-color 0.3s ease,
		color 0.3s ease,
		border-color 0.3s ease;
}

.home a.dp-btn-cart,
.home a.dp-btn-cart:visited {
	color: #b8813f !important;
	font-style: normal !important;
}

.dp-btn-cart:hover,
.home a.dp-btn-cart:hover,
.home a.dp-btn-cart:focus {
	background: #debf92 !important;
	border-color: #debf92 !important;
	color: #212121 !important;
	outline: none;
	transform: none;
	box-shadow: none;
}

.dp-btn-cart img,
.dp-btn-cart svg {
	display: none;
}

/* Banda cu via — cutout full-width + ceață albă jos */
.dp-catalog__vineyard {
	position: relative;
	width: 100%;
	margin-top: var(--sp-64);
	margin-bottom: 0;
	padding-inline: 0;
	line-height: 0;
	overflow: hidden;
	background: var(--c-white);
	text-align: center;
}

.dp-catalog__vineyard::before {
	content: none;
	display: none;
}

/* Soft white fog / fade at the bottom edge */
.dp-catalog__vineyard::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 42%;
	pointer-events: none;
	z-index: 1;
	background: linear-gradient(
		180deg,
		rgba(255, 255, 255, 0) 0%,
		rgba(255, 255, 255, 0.35) 40%,
		rgba(255, 255, 255, 0.85) 75%,
		#ffffff 100%
	);
}

.dp-catalog__vineyard picture {
	display: block;
	width: 100%;
	position: relative;
	z-index: 0;
}

.dp-catalog__vineyard img {
	display: block;
	width: 100%;
	max-width: 100%;
	height: auto;
	margin-inline: auto;
	object-fit: contain;
	object-position: center bottom;
	border: 0;
	outline: none;
	mix-blend-mode: normal;
	background: transparent;
}

/* ---------------------------------------------------------
   4. SOMMELIER — Figma 134:1873
   Title center; left: photo + quote + creds; right: name + bio
   --------------------------------------------------------- */
.dp-sommelier {
	background: var(--c-white);
	padding-block: 80px 64px;
	color: var(--c-ink);
}

.dp-sommelier__inner {
	max-width: var(--container);
	margin-inline: auto;
	padding-inline: var(--margin);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 64px;
}

.dp-sommelier__title {
	margin: 0;
	max-width: 720px;
	text-align: center;
	font-family: var(--font-display);
	font-weight: 300;
	font-style: normal;
	font-size: 32px;
	line-height: 1;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	color: #212121;
}

.dp-sommelier__layout {
	display: grid;
	grid-template-columns: 407px 336px;
	column-gap: 218px;
	align-items: start;
	justify-content: center;
	width: 100%;
}

.dp-sommelier__left {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 25px;
	width: 407px;
	max-width: 100%;
	text-align: center;
}

/* Photo already includes gold ring from Figma export */
.dp-sommelier__photo {
	position: relative;
	width: 338px;
	max-width: 100%;
	aspect-ratio: 1;
	border-radius: 0;
	overflow: visible;
	box-shadow: none;
	background: transparent;
}

.dp-sommelier__photo img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center;
	display: block;
}

.dp-sommelier__quote {
	margin: 0;
	max-width: 300px;
	padding-inline: 12px;
	font-family: var(--font-body);
	font-weight: 200;
	font-style: normal;
	font-size: 14px;
	line-height: 1.4;
	letter-spacing: 0.02em;
	text-align: center;
	color: #212121;
}

.dp-sommelier__creds {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0;
	max-width: 300px;
	margin-top: 15px; /* Figma: quote→creds ~40px total with left gap */
}

.dp-sommelier__creds-title {
	margin: 0;
	font-family: var(--font-body);
	font-weight: 500;
	font-size: 16px;
	line-height: 1.2;
	letter-spacing: 0.02em;
	color: #212121;
}

.dp-sommelier__creds-text {
	margin: 0;
	font-family: var(--font-body);
	font-weight: 200;
	font-size: 14px;
	line-height: 1.4;
	letter-spacing: 0.02em;
	color: #212121;
}

.dp-sommelier__creds-text strong {
	font-weight: 500;
	font-size: 16px;
}

.dp-sommelier__content {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 56px;
	width: 336px;
	max-width: 100%;
	padding-top: 32px; /* name aligns ~top of photo */
}

.dp-sommelier__identity {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 14px;
	width: 100%;
	max-width: 300px;
}

.dp-sommelier__name {
	margin: 0;
	font-family: var(--font-display);
	font-weight: 300;
	font-style: normal;
	font-size: 36px;
	line-height: 1;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	color: #212121;
}

.dp-sommelier__role {
	margin: 0;
	font-family: var(--font-body);
	font-weight: 200;
	font-size: 14px;
	line-height: 1.4;
	letter-spacing: 0.02em;
	text-transform: none;
	color: #212121;
}

.dp-sommelier__bio {
	display: flex;
	flex-direction: column;
	gap: 40px;
	margin-top: 0;
	width: 100%;
}

.dp-sommelier__bio p {
	margin: 0;
	font-family: var(--font-body);
	font-weight: 200;
	font-size: 14px;
	line-height: 1.4;
	letter-spacing: 0.02em;
	color: #212121;
	text-align: left;
}

/* Mobile sommelier block — hidden on desktop */
.dp-sommelier__mobile {
	display: none;
}

/* Brand meaning strip (diptych + definition) */
.dp-brand-meaning {
	background: var(--c-white);
	padding-block: var(--sp-48) var(--sp-32);
}

.dp-brand-meaning__inner {
	max-width: 720px;
	margin-inline: auto;
	padding-inline: var(--margin);
	display: flex;
	align-items: center;
	justify-content: center;
	gap: clamp(24px, 4vw, 48px);
}

.dp-brand-meaning__logo {
	display: block;
	width: min(272px, 42vw);
	height: auto;
	flex-shrink: 0;
}

.dp-brand-meaning__text {
	margin: 0;
	max-width: 312px;
	font-family: var(--font-body);
	font-weight: 200;
	font-size: 14px;
	line-height: 1.4;
	letter-spacing: 0.02em;
	color: #000;
}

/* ---------------------------------------------------------
   5. WHY DIPTYCH — two panels
   --------------------------------------------------------- */
.dp-why {
	background: var(--c-white);
	padding-block: var(--sp-100);
	color: var(--c-ink);
	overflow: hidden;
}

.dp-why__inner {
	max-width: var(--container);
	margin-inline: auto;
	padding-inline: var(--margin);
	text-align: center;
}

/* Cap de sectiune: soare decorativ + titlu suprapus */
.dp-why__head {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.dp-why__sunburst {
	display: block;
	width: 340px;
	max-width: 80%;
	height: auto;
}

.dp-why__title {
	margin: -46px 0 0;
	font-family: var(--font-display);
	font-weight: 300;
	font-style: normal;
	font-size: 36px;
	line-height: 1.02;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--c-ink);
}

.dp-why__lead {
	max-width: 420px;
	margin: var(--sp-16) auto 0;
	font-family: var(--font-body);
	font-weight: 200;
	font-size: 14px;
	line-height: 1.4;
	letter-spacing: var(--ls-body);
	color: var(--c-ink);
}

.dp-why__art {
	margin-top: var(--sp-48);
}

.dp-why__art img {
	display: block;
	width: 100%;
	max-width: 979px;
	height: auto;
	margin-inline: auto;
}

/* ---------------------------------------------------------
   6. REVIEWS — carousel cards
   --------------------------------------------------------- */
.dp-reviews {
	background: var(--c-white);
	padding-block: var(--sp-100);
	color: var(--c-ink);
}

.dp-reviews__inner {
	max-width: var(--container);
	margin-inline: auto;
	padding-inline: var(--margin);
}

.dp-reviews .dp-section-title {
	margin-bottom: var(--sp-64);
}

.dp-reviews__carousel {
	display: flex;
	align-items: center;
	gap: var(--sp-24);
}

.dp-reviews__track {
	display: flex;
	gap: 66px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	flex: 1;
	padding-block: 4px;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
}

.dp-reviews__track::-webkit-scrollbar {
	display: none;
}

.dp-reviews__card {
	flex: 0 0 300px;
	width: 300px;
	height: 300px;
	scroll-snap-align: start;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding: var(--sp-32);
	background: #e8d6b8;
	color: var(--c-ink);
}

.dp-reviews__text {
	margin: 0;
	font-family: var(--font-body);
	font-weight: 200;
	font-size: 14px;
	line-height: 1.5;
	letter-spacing: var(--ls-body);
}

.dp-reviews__author {
	margin: var(--sp-24) 0 0;
	font-family: var(--font-body);
	font-weight: 400;
	font-size: 13px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.dp-reviews__arrow {
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	padding: 0;
	border: 0;
	background: transparent;
	color: var(--c-ink);
	cursor: pointer;
	opacity: 0.7;
	transition: opacity 0.2s ease;
}

.dp-reviews__arrow:hover {
	opacity: 1;
}

.dp-reviews__arrow svg,
.dp-reviews__arrow img {
	width: 24px;
	height: 24px;
}

.dp-reviews__arrow:disabled {
	opacity: 0.25;
	cursor: default;
}

/* ---------------------------------------------------------
   7. DELIVERY — 4 arched cards (Figma 134:2031)
   --------------------------------------------------------- */
.dp-delivery {
	background: var(--c-white);
	padding-block: var(--sp-100);
	color: #212121;
	overflow: visible;
}

.dp-delivery__inner {
	max-width: var(--container);
	margin-inline: auto;
	padding-inline: var(--margin);
}

.dp-delivery .dp-section-title {
	margin-bottom: var(--sp-48);
	font-size: 32px;
	font-style: normal;
	font-weight: 300;
	letter-spacing: 0.02em;
	color: #212121;
}

.dp-delivery__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: var(--sp-16);
	align-items: end;
	overflow: visible;
	padding-top: 100px; /* room for sunburst above card 4 */
}

.dp-delivery__card {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	align-items: center;
	min-height: 445px;
	padding: var(--sp-32) 20px var(--sp-48);
	overflow: hidden;
	background-size: cover;
	background-position: center top;
	border-top-left-radius: 151.5px;
	border-top-right-radius: 151.5px;
	transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.dp-delivery__card:hover {
	transform: translateY(-8px);
}

/* Cards 1–3: photo + dark fade + white text */
.dp-delivery__card--photo {
	background-color: #212121;
}

.dp-delivery__card--photo::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 0;
	background: linear-gradient(
		180deg,
		rgba(135, 135, 135, 0) 31%,
		#212121 58%,
		#212121 100%
	);
	pointer-events: none;
	border-radius: inherit;
}

.dp-delivery__card--photo .dp-delivery__title,
.dp-delivery__card--photo .dp-delivery__text,
.dp-delivery__card--photo h3,
.dp-delivery__card--photo p {
	color: #ffffff !important;
}

/* Card 4: gold + sunburst + white circle */
.dp-delivery__card--plain {
	overflow: visible;
	background-color: #debf92;
	justify-content: flex-end;
}

.dp-delivery__card--plain .dp-delivery__title,
.dp-delivery__card--plain .dp-delivery__text,
.dp-delivery__card--plain h3,
.dp-delivery__card--plain p {
	color: #212121 !important;
}

.dp-delivery__sunburst {
	position: absolute;
	left: 50%;
	top: -96px;
	width: min(130%, 407px);
	height: auto;
	transform: translateX(-50%);
	pointer-events: none;
	z-index: 0;
}

.dp-delivery__icon {
	position: absolute;
	top: 72px;
	left: 50%;
	width: 130px;
	height: 130px;
	margin: 0;
	transform: translateX(-50%);
	object-fit: contain;
	z-index: 1;
	pointer-events: none;
}

.dp-delivery__body {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	width: 100%;
}

.dp-delivery__title {
	margin: 0 0 14px;
	font-family: var(--font-display);
	font-weight: 300;
	font-style: normal;
	font-size: clamp(22px, 2.2vw, 32px);
	line-height: 1.05;
	letter-spacing: 0.02em;
	text-transform: uppercase;
}

.dp-delivery__text {
	margin: 0;
	font-family: var(--font-body);
	font-weight: 200;
	font-size: 14px;
	line-height: 1.4;
	letter-spacing: 0.02em;
}

/* ---------------------------------------------------------
   8. FAQ — accordion + contact form (Figma 134:2162)
   --------------------------------------------------------- */
.dp-faq {
	background: var(--c-white);
	padding-block: var(--sp-100);
	color: #212121;
}

.dp-faq__inner {
	max-width: var(--container);
	margin-inline: auto;
	padding-inline: var(--margin);
	display: grid;
	grid-template-columns: minmax(280px, 407px) minmax(320px, 676px);
	gap: clamp(40px, 6vw, 100px);
	align-items: start;
	justify-content: space-between;
}

.dp-faq__title {
	margin: 0 0 85px;
	font-family: var(--font-display);
	font-weight: 300;
	font-style: normal;
	font-size: 32px;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	text-align: left;
	color: #212121;
}

.dp-faq__accordion {
	display: flex;
	flex-direction: column;
}

.dp-faq__item {
	border-bottom: 1px solid #debf92;
}

.dp-faq__item:first-child {
	border-top: 1px solid #debf92;
}

.dp-faq__question {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--sp-16);
	width: 100%;
	padding: 14px 0;
	border: 0;
	background: none;
	cursor: pointer;
	text-align: left;
	font-family: var(--font-body);
	font-weight: 500;
	font-size: 16px;
	line-height: 1.25;
	letter-spacing: 0.02em;
	text-transform: none;
	color: #212121 !important;
	transition: color 0.2s ease;
}

.dp-faq__question:hover,
.dp-faq__question:focus,
.dp-faq__question:focus-visible {
	color: #bb812f !important;
	outline: none;
	background: transparent;
}

.dp-faq__question span {
	flex: 1;
	min-width: 0;
}

.dp-faq__chevron {
	flex-shrink: 0;
	width: 28px;
	height: 24px;
	display: block;
	transition: transform 0.25s ease;
}

.dp-faq__item.is-open .dp-faq__chevron {
	transform: rotate(180deg);
}

.dp-faq__item.is-open .dp-faq__question {
	color: #bb812f !important;
}

.dp-faq__answer {
	display: grid;
	grid-template-rows: 0fr;
	transition: grid-template-rows 0.3s ease;
}

.dp-faq__item.is-open .dp-faq__answer {
	grid-template-rows: 1fr;
}

.dp-faq__answer-inner {
	overflow: hidden;
}

.dp-faq__answer p {
	margin: 0 0 14px;
	font-family: var(--font-body);
	font-weight: 200;
	font-size: 14px;
	line-height: 1.4;
	letter-spacing: 0.02em;
	color: #212121;
}

/* Contact form — no beige card, gold outlines */
.dp-faq__form {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 60px;
	padding: 0;
	background: transparent;
	width: 100%;
}

.dp-faq__form-head {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	text-align: center;
	width: 100%;
}

.dp-faq__form-title {
	margin: 0;
	font-family: var(--font-display);
	font-weight: 300;
	font-style: normal;
	font-size: 32px;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	color: #212121;
	text-align: center;
}

.dp-faq__form-text {
	margin: 0;
	max-width: 520px;
	font-family: var(--font-body);
	font-weight: 200;
	font-size: 14px;
	line-height: 1.4;
	letter-spacing: 0.02em;
	color: #212121;
	text-align: center;
}

.dp-form {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;
	width: 100%;
}

.dp-faq__field {
	display: flex;
	flex-direction: column;
	gap: 10px;
	width: 100%;
}

.dp-faq__field label {
	padding-inline: 10px;
	font-family: var(--font-body);
	font-weight: 200;
	font-size: 14px;
	letter-spacing: 0.02em;
	text-transform: none;
	color: #a6a6a6;
}

.dp-faq__field input,
.dp-faq__field textarea,
.dp-faq__field select {
	width: 100%;
	padding: 10px 14px;
	border: 1px solid #debf92;
	border-radius: 0;
	background: transparent;
	font-family: var(--font-body);
	font-weight: 200;
	font-size: 14px;
	letter-spacing: 0.02em;
	color: #212121;
	outline: none;
	box-shadow: none;
	caret-color: #bb812f;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
	-webkit-appearance: none;
	appearance: none;
}

.dp-faq__field input {
	height: 40px;
}

.dp-faq__field input:hover,
.dp-faq__field textarea:hover {
	border-color: #bb812f;
}

.dp-faq__field input:focus,
.dp-faq__field textarea:focus,
.dp-faq__field select:focus,
.dp-faq__field input:focus-visible,
.dp-faq__field textarea:focus-visible {
	border-color: #bb812f;
	outline: none;
	box-shadow: 0 0 0 1px #bb812f;
}

.dp-faq__field textarea {
	min-height: 111px;
	resize: vertical;
}

.dp-faq__submit {
	position: relative;
	display: flex;
	justify-content: center;
	padding-top: 22px;
	margin-top: 8px;
}

.dp-faq__submit .dp-btn__star {
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 45px;
	height: 28px;
	background: url("../img/btn-star.svg") center / contain no-repeat;
}

.dp-faq__form .dp-btn {
	align-self: center;
	min-width: 272px;
	margin-top: 0;
	border-color: #debf92;
	color: #debf92;
	background: transparent;
}

.dp-faq__form .dp-btn:hover,
.dp-faq__form .dp-btn:focus {
	background: #debf92;
	border-color: #debf92;
	color: #212121;
	outline: none;
}

/* ---------------------------------------------------------
   9. FOOTER — photo bg + center brand (Figma 134:2096)
   --------------------------------------------------------- */
.dp-footer {
	position: relative;
	isolation: isolate;
	overflow: hidden;
	min-height: 369px;
	padding: 40px var(--margin) 28px;
	color: #debf92;
	background: #1f1e1d;
}

.dp-footer__bg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 40%;
	z-index: 0;
	pointer-events: none;
}

.dp-footer__overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	background: rgba(31, 30, 29, 0.89);
	pointer-events: none;
}

.dp-footer__inner {
	position: relative;
	z-index: 2;
	max-width: var(--container);
	margin-inline: auto;
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	gap: clamp(24px, 4vw, 48px);
	min-height: 220px;
}

.dp-footer__nav {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	gap: 4px;
}

.dp-footer__nav a {
	padding: 10px;
	font-family: var(--font-body);
	font-weight: 200;
	font-style: normal !important;
	font-size: 14px;
	line-height: 1.4;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	color: #debf92 !important;
	text-decoration: none !important;
	transition: color 0.2s ease, opacity 0.2s ease;
}

.dp-footer__nav a:hover,
.dp-footer__nav a:focus {
	color: #ffffff !important;
	opacity: 1;
	outline: none;
}

.dp-footer__brand {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 8px;
	justify-self: center;
}

.dp-footer__sun {
	display: block;
	width: 72px;
	height: auto;
}

.dp-footer__logo {
	display: block;
	width: min(175px, 42vw);
	height: auto;
}

.dp-footer__right {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 20px;
	justify-self: end;
	width: min(100%, 240px);
}

.dp-footer__social {
	display: flex;
	align-items: flex-start;
	gap: 4px;
}

.dp-footer__social a {
	display: inline-flex;
	width: 43px;
	height: 43px;
	opacity: 0.95;
	transition: opacity 0.2s ease, transform 0.2s ease;
}

.dp-footer__social a:hover,
.dp-footer__social a:focus {
	opacity: 1;
	transform: translateY(-2px);
	outline: none;
}

.dp-footer__social img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.dp-footer__legal-links {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 2px;
}

.dp-footer__legal-links a {
	padding: 8px 10px;
	font-family: var(--font-body);
	font-weight: 200;
	font-style: normal !important;
	font-size: 14px;
	line-height: 1.4;
	letter-spacing: 0.02em;
	text-transform: none;
	text-align: right;
	color: #debf92 !important;
	text-decoration: none !important;
	white-space: nowrap;
	transition: color 0.2s ease;
}

.dp-footer__legal-links a:hover,
.dp-footer__legal-links a:focus {
	color: #ffffff !important;
	outline: none;
}

.dp-footer__bottom {
	position: relative;
	z-index: 2;
	max-width: var(--container);
	margin: 24px auto 0;
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: end;
	gap: 16px;
	border-top: 0;
	padding: 0;
}

.dp-footer__age {
	margin: 0;
	max-width: 386px;
	font-family: var(--font-body);
	font-weight: 200;
	font-style: normal !important;
	font-size: 14px;
	line-height: 1.4;
	letter-spacing: 0.02em;
	color: #ffffff;
	justify-self: start;
}

.dp-footer__copy {
	margin: 0;
	grid-column: 2;
	justify-self: center;
	font-family: var(--font-body);
	font-weight: 200;
	font-style: normal !important;
	font-size: 14px;
	line-height: 1.4;
	letter-spacing: 0.02em;
	color: #ffffff;
	white-space: nowrap;
	opacity: 1;
}

/* ---------------------------------------------------------
   RESPONSIVE — 1024
   --------------------------------------------------------- */
@media (max-width: 1024px) {
	:root {
		--margin: 40px;
	}

	.dp-nav {
		gap: 24px;
	}

	.dp-mission__inner {
		gap: 0;
	}

	.dp-mission__col:not(:last-child)::after {
		min-height: 100%;
	}

	.dp-product {
		gap: var(--sp-24);
	}

	.dp-product__box img {
		max-width: 280px;
	}

	.dp-product__bottles {
		height: min(380px, 40vw);
		min-height: 280px;
	}

	.dp-product__bottles img,
	.dp-product__bottles picture {
		max-height: min(380px, 40vw);
	}

	.dp-product__bottles img {
		height: auto;
		max-width: min(480px, 46vw);
	}

	.dp-sommelier__layout {
		grid-template-columns: minmax(240px, 360px) minmax(240px, 300px);
		column-gap: clamp(40px, 8vw, 120px);
	}

	.dp-sommelier__left {
		width: auto;
	}

	.dp-sommelier__photo {
		width: min(300px, 100%);
	}

	.dp-sommelier__content {
		width: auto;
		padding-top: 16px;
		gap: 40px;
	}

	.dp-sommelier__name {
		font-size: 30px;
	}

	.dp-delivery__grid {
		grid-template-columns: repeat(2, 1fr);
		gap: var(--sp-16);
	}

	.dp-delivery__card {
		min-height: 360px;
	}

	.dp-faq__inner {
		gap: var(--sp-32);
	}

	.dp-footer__inner {
		grid-template-columns: 1fr auto 1fr;
		gap: var(--sp-24);
		min-height: 180px;
	}

	.dp-reviews__track {
		gap: var(--sp-32);
	}
}

/* ---------------------------------------------------------
   RESPONSIVE — 768
   --------------------------------------------------------- */
@media (max-width: 768px) {

	.dp-hero {
		height: 100svh;
		min-height: 700px;
		max-height: none;
	}

	.dp-hero__logo {
		top: 42%;
		gap: 10px;
	}

	.dp-hero__mark {
		width: 64px;
	}

	.dp-hero__wordmark {
		width: 185px;
	}

	/* Figma mobile: tagline under logo, centered — NOT bottom-right */
	.dp-hero__tagline {
		left: 50%;
		right: auto;
		top: calc(42% + 90px);
		bottom: auto;
		transform: translateX(-50%);
		width: min(232px, 72vw);
		max-width: 232px;
		text-align: center;
		font-size: 14px;
		line-height: 1.35;
		letter-spacing: 0.02em;
		color: #ffffff;
	}

	/* Figma mobile: CTAs live in .dp-hero__ctas (see earlier 768 block) */
	.dp-hero .dp-btn {
		/* reset conflicting absolute centering from older rules */
		left: auto;
		right: auto;
		bottom: auto;
		transform: none;
	}

	.home .dp-hero .dp-btn,
	.home .dp-hero a.dp-btn,
	.home .dp-hero .dp-btn .dp-btn__label {
		color: #debf92 !important;
	}

	.home .dp-hero .dp-btn:hover,
	.home .dp-hero a.dp-btn:hover {
		background: #debf92 !important;
		color: #212121 !important;
		transform: none;
	}

	.home .dp-hero .dp-btn:hover .dp-btn__label {
		color: #212121 !important;
	}

	.dp-section,
	.dp-mission,
	.dp-catalog,
	.dp-sommelier,
	.dp-why,
	.dp-reviews,
	.dp-delivery,
	.dp-faq {
		padding-block: var(--sp-64);
	}

	.dp-section-title,
	.dp-faq__title {
		font-size: 24px;
		letter-spacing: 0.14em;
	}

	/* Mission mobile — accordion: closed = first section only (no overlap) */
	.dp-mission {
		padding-block: 64px 40px;
		background: #ffffff;
	}

	.dp-mission__shell {
		display: flex !important;
		flex-direction: column !important;
		align-items: stretch;
		gap: 40px;
		padding-inline: 20px;
		max-width: 390px;
		margin-inline: auto;
	}

	.dp-mission__shell > .dp-mission__logo {
		display: none !important;
	}

	.dp-mission__shell > .dp-mission__headline {
		display: block;
		font-size: 42px;
		line-height: 1.02;
		letter-spacing: 0.02em;
		margin: 0;
		width: 100%;
		grid-column: auto !important;
		grid-row: auto !important;
	}

	.dp-mission__inner {
		display: flex !important;
		flex-direction: column !important;
		grid-template-columns: none !important;
		gap: 48px;
		max-height: none !important;
		overflow: visible !important;
		mask-image: none !important;
		-webkit-mask-image: none !important;
		width: 100%;
	}

	.dp-mission__col,
	.dp-mission__col:nth-child(1),
	.dp-mission__col:nth-child(2),
	.dp-mission__col:nth-child(3) {
		display: flex !important;
		flex-direction: column;
		align-items: flex-start;
		width: 100% !important;
		max-width: 100% !important;
		padding: 0 !important;
		margin: 0 !important;
		min-height: 0 !important;
		grid-column: auto !important;
		grid-row: auto !important;
		position: relative !important;
		transform: none !important;
		opacity: 1 !important;
		left: auto !important;
		top: auto !important;
	}

	/* Collapsed: hide goal / philosophy until chevron opens */
	.dp-mission:not(.is-open) .dp-mission__col:nth-child(n + 2) {
		display: none !important;
	}

	.dp-mission__col:not(:last-child)::after,
	.dp-mission__col:nth-child(1)::after,
	.dp-mission__col:nth-child(2)::after {
		display: none !important;
		content: none !important;
	}

	.dp-mission__col.dp-reveal,
	.dp-mission__col.dp-reveal.is-in {
		opacity: 1 !important;
		transform: none !important;
	}

	.dp-mission__title,
	.dp-mission__block-title {
		display: flex;
		align-items: center;
		gap: 16px;
		font-size: 28px;
		line-height: 1.2;
		letter-spacing: 0.02em;
		margin: 0 0 16px;
	}

	.dp-mission__title::before,
	.dp-mission__block-title::before {
		width: 14px;
		height: 14px;
		margin-top: 0;
		border-radius: 0;
		background: #debf92;
		flex-shrink: 0;
	}

	.dp-mission__block {
		margin-top: 48px;
	}

	.dp-mission__text {
		font-size: 14px;
		line-height: 1.4;
		letter-spacing: 0.02em;
		margin: 0 0 14px;
		max-width: 100%;
	}

	.dp-mission__text--lead {
		font-size: 15px;
		font-weight: 200;
	}

	.dp-mission__text strong {
		font-weight: 500;
		font-size: 16px;
	}

	.dp-quote {
		font-family: var(--font-display);
		font-weight: 300;
		font-style: normal;
		font-size: 20px;
		line-height: 1.15;
		letter-spacing: -0.01em;
		margin: 0 0 20px;
		max-width: 100%;
	}

	.dp-mission__aside {
		display: flex;
		flex-direction: column;
		align-items: flex-end;
		text-align: right;
		padding-top: 40px;
		margin-top: 24px;
		width: 100%;
		gap: 16px;
	}

	.dp-mission__brand {
		align-items: center;
		margin-right: 0;
	}

	.dp-mission__closer {
		text-align: right;
		max-width: 220px;
		font-family: var(--font-body);
		font-weight: 500;
		font-size: 15px;
		line-height: 1.35;
		letter-spacing: 0.02em;
		margin-left: auto;
	}

	.dp-mission__toggle {
		display: flex !important;
		align-items: center;
		justify-content: center;
		width: 100%;
		min-height: 52px;
		padding: 18px 12px;
		border: 1px solid #debf92;
		border-radius: 40px;
		background: transparent;
		cursor: pointer;
		transition: background-color 0.2s ease;
	}

	.dp-mission__toggle img {
		display: block;
		width: 25px;
		height: 13px;
		transition: transform 0.3s ease;
	}

	.dp-mission.is-open .dp-mission__toggle img {
		transform: scaleY(-1);
	}

	.dp-mission__toggle:hover {
		background: rgba(222, 191, 146, 0.12);
	}

	/* Kill Astra side gutters on mobile home */
	.home #content,
	.home .site-content,
	.home .ast-container,
	.home .entry-content,
	.home .diptych-landing {
		width: 100% !important;
		max-width: 100% !important;
		margin-inline: 0 !important;
		padding-inline: 0 !important;
	}

	/* Product mobile — Figma iPhone: box landscape, bottles compact */
	.dp-catalog {
		overflow-x: visible;
		overflow: visible;
	}

	.dp-catalog__inner {
		overflow: visible;
	}

	.dp-product {
		display: flex;
		flex-direction: column;
		align-items: stretch;
		justify-items: stretch;
		gap: 16px;
		text-align: left;
		padding-inline: 0;
		padding-block: 36px;
		width: 100%;
		max-width: 100%;
		left: auto;
		right: auto;
		margin-left: 0;
		margin-right: 0;
		overflow: visible;
		border-top: 0 !important;
		border-bottom: 0 !important;
	}

	.dp-product:first-of-type {
		border-top: 0 !important;
	}

	/* Flatten info so bottles sit between wines and CTA */
	.dp-product__info {
		display: contents;
	}

	/* Box: poze originale pe fundal alb (mobile) */
	.dp-product__box {
		order: 1;
		display: block;
		overflow: visible !important;
		min-height: 0;
		width: 100%;
		aspect-ratio: auto;
		max-height: none;
		padding: 0;
		margin: 0 auto;
		background: #fff;
		box-sizing: border-box;
		text-align: center;
	}

	.dp-product__box picture,
	.dp-product__box img {
		display: block;
		width: 100% !important;
		max-width: 100% !important;
		height: auto !important;
		margin-inline: auto;
		object-fit: contain !important;
		object-position: center center !important;
		transform: none !important;
		border: 0 !important;
		outline: 0 !important;
		box-shadow: none !important;
		background: #fff !important;
	}

	.dp-product__name {
		order: 2;
		width: 100%;
		padding-inline: 20px;
		box-sizing: border-box;
	}

	.dp-product__meta {
		order: 3;
		width: 100%;
		padding-inline: 20px;
		box-sizing: border-box;
	}

	.dp-product__desc {
		order: 4;
		width: 100%;
		padding-inline: 20px;
		box-sizing: border-box;
	}

	.dp-product__wines {
		order: 5;
		width: 100%;
		max-width: 100%;
		display: flex;
		justify-content: space-between;
		gap: 10px;
		padding-inline: 20px;
		box-sizing: border-box;
	}

	.dp-product__wines li {
		flex: 1 1 0;
		min-width: 0;
	}

	.dp-product__wines strong {
		font-size: 13px;
	}

	.dp-product__rule {
		order: 6;
		width: calc(100% - 40px);
		margin-inline: 20px;
	}

	/* Bottles: large, square, almost full content width (Figma iPhone) */
	.dp-product__bottles {
		order: 7;
		display: flex !important;
		justify-content: center;
		align-items: center;
		width: 100%;
		height: auto !important;
		min-height: 0 !important;
		max-height: none !important;
		overflow: visible !important;
		margin: 8px 0 12px;
		padding-inline: 20px;
		box-sizing: border-box;
	}

	.dp-product__bottles picture {
		display: block;
		width: 100%;
		max-width: none !important;
		height: auto !important;
		max-height: none !important;
		margin-inline: auto;
		line-height: 0;
	}

	.dp-product__bottles img {
		display: block;
		width: 100% !important;
		max-width: 340px !important;
		height: auto !important;
		max-height: none !important;
		aspect-ratio: 1 / 1;
		object-fit: contain !important;
		object-position: center center !important;
		transform: none !important;
		border: 0 !important;
		outline: 0 !important;
		box-shadow: none !important;
		background: transparent !important;
	}

	.dp-product__bottles picture {
		border: 0 !important;
		outline: 0 !important;
		box-shadow: none !important;
		background: transparent !important;
	}

	.dp-product__bottles {
		background: transparent !important;
		box-shadow: none !important;
	}
}

/* Astra parent override — kill any inherited image shadow/border on landing */
main.diptych-landing .dp-product__bottles picture,
main.diptych-landing .dp-product__bottles img,
main.diptych-landing .dp-product__box picture,
main.diptych-landing .dp-product__box img {
	border: 0 !important;
	outline: 0 !important;
	box-shadow: none !important;
	filter: none !important;
	background: transparent !important;
}

@media (max-width: 768px) {
	.dp-product__box {
		padding-inline: 0 !important;
		background: #fff !important;
	}
	.dp-product__box img {
		max-width: 100% !important;
		margin-inline: auto !important;
		object-position: center center !important;
		object-fit: contain !important;
		background: #fff !important;
	}

	.dp-product__actions {
		order: 8;
		width: 100%;
		margin-top: 0;
		padding-inline: 20px;
		box-sizing: border-box;
	}

	.dp-product__box.dp-reveal,
	.dp-product__bottles.dp-reveal,
	.dp-product__info.dp-reveal,
	.dp-product__name,
	.dp-product__meta,
	.dp-product__desc,
	.dp-product__wines,
	.dp-product__actions {
		opacity: 1;
		transform: none !important;
	}

	.dp-catalog__sunburst {
		width: 160px;
	}

	.dp-mission__title,
	.dp-mission__block-title {
		font-size: 28px;
	}

	.dp-mission__col:last-child {
		min-height: 0;
	}

	.dp-mission__aside {
		align-items: flex-start;
		text-align: left;
	}

	.dp-mission__closer {
		text-align: left;
		max-width: 260px;
	}

	/* Sommelier: use Figma iPhone layout (194:2069), hide desktop */
	.dp-sommelier {
		padding-block: 64px 48px;
	}

	.dp-sommelier__desktop {
		display: none !important;
	}

	.dp-sommelier__mobile {
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 60px;
		padding-inline: 16px;
		width: 100%;
	}

	.dp-sommelier-m__title {
		margin: 0;
		max-width: 320px;
		text-align: center;
		font-family: var(--font-display);
		font-weight: 300;
		font-style: normal;
		font-size: 28px;
		line-height: 1.05;
		letter-spacing: 0.02em;
		text-transform: uppercase;
		color: #212121;
	}

	.dp-sommelier-m__card {
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 20px;
		width: 100%;
		max-width: 390px;
	}

	.dp-sommelier-m__visual {
		position: relative;
		width: min(100%, 390px);
		height: 420px;
		display: flex;
		justify-content: center;
		align-items: flex-start;
	}

	.dp-sommelier-m__sun {
		position: absolute;
		top: 0;
		left: 50%;
		transform: translateX(-50%);
		width: min(100%, 407px);
		height: auto;
		pointer-events: none;
		z-index: 0;
	}

	.dp-sommelier-m__photo {
		position: relative;
		z-index: 1;
		width: min(78vw, 300px);
		aspect-ratio: 1;
		margin-top: 48px;
		border-radius: 50%;
		overflow: hidden;
		background: #f3efe6;
	}

	.dp-sommelier-m__photo img {
		width: 100%;
		height: 100%;
		object-fit: cover;
		object-position: center top;
		display: block;
	}

	.dp-sommelier-m__body {
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 40px;
		width: 100%;
		text-align: center;
	}

	.dp-sommelier-m__identity {
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 10px;
		width: 100%;
	}

	.dp-sommelier-m__years {
		margin: 0;
		font-family: var(--font-body);
		font-weight: 200;
		font-size: 14px;
		line-height: 1.4;
		letter-spacing: 0.02em;
		color: #212121;
	}

	.dp-sommelier-m__name {
		margin: 0;
		font-family: var(--font-display);
		font-weight: 300;
		font-style: normal;
		font-size: 32px;
		line-height: 1;
		letter-spacing: 0.02em;
		text-transform: uppercase;
		color: #212121;
	}

	.dp-sommelier-m__text {
		margin: 0;
		max-width: 287px;
		padding-inline: 24px;
		font-family: var(--font-body);
		font-weight: 200;
		font-size: 14px;
		line-height: 1.4;
		letter-spacing: 0.02em;
		color: #212121;
	}

	.dp-sommelier-m__cert {
		margin: 0;
		font-family: var(--font-body);
		font-weight: 500;
		font-size: 15px;
		line-height: 1.35;
		letter-spacing: 0.02em;
		color: #212121;
	}

	/* Override older stacked desktop rules that no longer apply */
	.dp-sommelier__inner,
	.dp-sommelier__layout,
	.dp-sommelier__left,
	.dp-sommelier__content {
		display: none;
	}

	.dp-brand-meaning__inner {
		flex-direction: column;
		text-align: center;
		gap: var(--sp-16);
	}

	.dp-brand-meaning__text {
		max-width: 320px;
	}

	/* Why: soare + titlu mai mici */
	.dp-why__sunburst {
		width: 240px;
	}

	.dp-why__title {
		margin-top: -32px;
		font-size: 28px;
	}

	/* Reviews */
	.dp-reviews__carousel {
		gap: var(--sp-8);
	}

	.dp-reviews__track {
		gap: var(--sp-16);
	}

	.dp-reviews__card {
		flex-basis: min(300px, 80vw);
		width: min(300px, 80vw);
		height: auto;
		min-height: 260px;
	}

	/* Delivery: horizontal swipe (Figma iPhone) — not stacked */
	.dp-delivery__inner {
		padding-inline: 0;
		overflow: visible;
	}

	.dp-delivery .dp-section-title {
		padding-inline: 24px;
		margin-bottom: 32px;
	}

	.dp-delivery__grid {
		display: flex;
		flex-direction: row;
		flex-wrap: nowrap;
		align-items: flex-end;
		gap: 12px;
		grid-template-columns: none;
		overflow-x: auto;
		overflow-y: visible;
		scroll-snap-type: x mandatory;
		scroll-behavior: smooth;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none;
		padding: 80px 24px 12px;
		margin: 0;
	}

	.dp-delivery__grid::-webkit-scrollbar {
		display: none;
	}

	.dp-delivery__card {
		flex: 0 0 min(268px, 72vw);
		width: min(268px, 72vw);
		min-height: 420px;
		scroll-snap-align: start;
		border-top-left-radius: 134px;
		border-top-right-radius: 134px;
	}

	.dp-delivery__sunburst {
		top: -64px;
		width: min(140%, 320px);
	}

	.dp-delivery__icon {
		top: 48px;
		width: 96px;
		height: 96px;
	}

	/* FAQ stacks */
	.dp-faq__inner {
		grid-template-columns: 1fr;
		gap: var(--sp-48);
	}

	.dp-faq__title {
		margin-bottom: var(--sp-32);
		text-align: center;
	}

	.dp-faq__form {
		padding: 0;
		gap: var(--sp-32);
	}

	.dp-faq__form-title {
		font-size: 26px;
	}

	.dp-faq__form .dp-btn {
		width: 100%;
		min-width: 0;
	}

	.dp-faq__submit {
		width: 100%;
	}

	/* Footer */
	.dp-footer {
		padding-block: 36px 24px;
		min-height: 0;
	}

	.dp-footer__inner {
		grid-template-columns: 1fr;
		justify-items: center;
		text-align: center;
		gap: var(--sp-32);
		min-height: 0;
	}

	.dp-footer__nav {
		align-items: center;
		order: 2;
	}

	.dp-footer__brand {
		order: 1;
	}

	.dp-footer__right {
		align-items: center;
		justify-self: center;
		width: 100%;
		order: 3;
	}

	.dp-footer__legal-links {
		align-items: center;
	}

	.dp-footer__legal-links a {
		text-align: center;
		white-space: normal;
	}

	.dp-footer__social {
		justify-content: center;
	}

	.dp-footer__bottom {
		grid-template-columns: 1fr;
		justify-items: center;
		text-align: center;
		gap: 12px;
	}

	.dp-footer__age,
	.dp-footer__copy {
		grid-column: 1;
		justify-self: center;
		max-width: 100%;
		white-space: normal;
	}
}

/* ---------------------------------------------------------
   RESPONSIVE — 480 (very small)
   --------------------------------------------------------- */
@media (max-width: 480px) {
	:root {
		--margin: 20px;
		--nav-h: 72px;
	}

	.dp-hero {
		min-height: 640px;
	}

	.dp-hero__logo {
		top: 40%;
	}

	.dp-hero__wordmark {
		width: 170px;
	}

	.dp-hero__mark {
		width: 56px;
	}

	.dp-hero__tagline {
		top: calc(40% + 78px);
		width: min(232px, 78vw);
		font-size: 13px;
	}

	.dp-hero .dp-btn {
		bottom: 40px;
		width: min(272px, calc(100% - 40px));
		padding-inline: 20px;
		font-size: 14px;
	}

	.dp-mission__shell {
		padding-inline: 16px;
		gap: 36px;
	}

	.dp-mission__shell > .dp-mission__headline {
		font-size: 36px;
	}

	.dp-mission__inner {
		gap: 40px;
		max-height: none !important;
		padding-inline: 0;
	}

	.dp-mission__title,
	.dp-mission__block-title {
		font-size: 24px;
	}

	.dp-product__bottles {
		display: flex !important;
		height: auto !important;
		min-height: 0 !important;
		max-height: none !important;
		padding-inline: 16px;
	}

	.dp-product__box {
		max-height: none;
		background: #fff;
	}

	.dp-product__box img {
		width: 100% !important;
		max-width: 100% !important;
		height: auto !important;
		object-fit: contain !important;
	}

	.dp-product__bottles picture {
		max-width: none;
		width: 100%;
	}

	.dp-product__bottles img {
		max-width: none !important;
		width: 100% !important;
		transform: none !important;
	}

	.dp-product__wines {
		gap: 8px;
	}

	.dp-product__wines strong {
		font-size: 12px;
	}

	.dp-product__actions {
		flex-wrap: nowrap;
		gap: 12px;
	}

	.dp-btn-cart {
		height: 48px;
		padding-inline: 24px;
		font-size: 14px;
	}

	.dp-product__price {
		font-size: 28px;
	}

	.dp-product__price span {
		font-size: 28px;
	}

	.dp-delivery__grid {
		padding: 72px 20px 12px;
		gap: 10px;
	}

	.dp-delivery__card {
		flex: 0 0 min(260px, 78vw);
		width: min(260px, 78vw);
		min-height: 400px;
	}

	.dp-reviews__arrow {
		display: none;
	}

	.dp-btn,
	.dp-btn-cart {
		white-space: normal;
		text-align: center;
		line-height: 1.2;
	}
}
