/* =========================================================
   Diou Sound — main stylesheet
   Editorial-minimal, red accent, acoustic spire animation.
   ========================================================= */

:root {
	--ds-red: #E10600;
	--ds-red-deep: #B20500;
	--ds-red-soft: #FDECEC;
	--ds-paper: #FFFFFF;
	--ds-white: #FFFFFF;
	--ds-ink: #14151A;
	--ds-ink-2: #3A3D45;
	--ds-muted: #8A8E97;
	--ds-line: #E8E4DC;

	--ds-radius-sm: 8px;
	--ds-radius-md: 16px;
	--ds-radius-lg: 24px;
	--ds-shadow-sm: 0 1px 2px rgba(20, 21, 26, 0.04), 0 8px 24px rgba(20, 21, 26, 0.04);
	--ds-shadow-md: 0 6px 18px rgba(20, 21, 26, 0.06), 0 24px 48px rgba(20, 21, 26, 0.08);

	--ds-ease: cubic-bezier(0.2, 0.7, 0.2, 1);
	--ds-transition: 320ms var(--ds-ease);
}

html {
	scroll-behavior: smooth;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
	overflow-x: clip;
}

body {
	font-variant-numeric: lining-nums tabular-nums;
	overflow-x: clip;
}

/* Responsive helpers --------------------------------------------- */
@media (max-width: 720px) {
	.ds-hide-mobile { display: none !important; }
}

/* Zero the block-gap around the main template-parts so our full-bleed
   hero/contact-band/footer butt up cleanly against the header and each other. */
body > .wp-block-template-part,
body > main,
body > header,
body > footer,
.ds-main,
.ds-header,
.ds-footer {
	margin-block-start: 0 !important;
	margin-block-end: 0 !important;
}

/* WP adds default vertical flow spacing via `:where(.wp-site-blocks) > *`.
   Template parts often sit directly under `.wp-site-blocks`, so we zero
   their margins explicitly to avoid an unexpected gap on mobile. */
.wp-site-blocks > .wp-block-template-part {
	margin-block-start: 0 !important;
	margin-block-end: 0 !important;
}
.ds-main > * {
	margin-block-start: 0;
}
.ds-main > * + * {
	margin-block-start: var(--wp--style--block-gap, 1.5rem);
}
.wp-site-blocks,
main,
.ds-main {
	margin-bottom: 0 !important;
	padding-bottom: 0 !important;
}
.wp-site-blocks > *:last-child,
main > *:last-child,
.ds-main > *:last-child {
	margin-bottom: 0 !important;
}

/* Give pages a consistent “breathing room” before the footer.
   Some global resets above intentionally zero margins; this restores a bottom
   spacing for content-heavy templates (case study, 404, etc.). */
main.ds-main,
.ds-main {
	padding-bottom: clamp(1.25rem, 2.6vw, 2.25rem) !important;
}
/* Full-bleed sections touch their neighbours without a gap. */
.ds-hero,
.ds-contactband {
	margin-top: 0 !important;
	margin-bottom: 0 !important;
}

/* --------------------------------------------------------------
   Alternating section backdrops
   The inner content stays constrained to the 1320px zone, but a
   pseudo-element paints an edge-to-edge, very soft tinted strip
   behind it.  No extra HTML, no fighting with WP layout rules.
   -------------------------------------------------------------- */
.ds-section {
	position: relative;
	isolation: isolate;
}
.ds-section:nth-of-type(odd)::before {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	left: 50%;
	width: 100vw;
	margin-left: -50vw;
	background: #F6F2E9;
	background-image:
		linear-gradient(180deg, rgba(225, 6, 0, 0) 0%, rgba(225, 6, 0, 0.015) 100%),
		linear-gradient(#F6F2E9, #F6F2E9);
	z-index: -1;
	pointer-events: none;
}
/* Flip the tint order on Portfolio + Purchase pages:
   make the first content section white, the next one tinted. */
body.page-template-page-portfolio .ds-section:nth-of-type(odd)::before,
body.page-template-page-purchase .ds-section:nth-of-type(odd)::before,
body.page-template-page-contacts .ds-section:nth-of-type(odd)::before {
	content: none;
}
body.page-template-page-portfolio .ds-section:nth-of-type(even)::before,
body.page-template-page-purchase .ds-section:nth-of-type(even)::before,
body.page-template-page-contacts .ds-section:nth-of-type(even)::before {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	left: 50%;
	width: 100vw;
	margin-left: -50vw;
	background: #F6F2E9;
	background-image:
		linear-gradient(180deg, rgba(225, 6, 0, 0) 0%, rgba(225, 6, 0, 0.015) 100%),
		linear-gradient(#F6F2E9, #F6F2E9);
	z-index: -1;
	pointer-events: none;
}
/* Hairline separators between every section so they read as distinct
   even when two plain-paper sections sit next to each other. */
.ds-section + .ds-section::after {
	content: none; /* reserved — edges are carried by the tint */
}

/* Legal pages (privacy policy, etc.) ----------------------------- */
.ds-legal .wp-block-post-title {
	margin-top: 0;
	margin-bottom: 0.35rem;
	font-size: clamp(1.65rem, 1.2rem + 1.5vw, 2.1rem);
	line-height: 1.15;
}
.ds-legal .ds-legal__meta {
	margin-top: 0;
	margin-bottom: 1.75rem;
	font-size: 0.9rem;
	color: rgba(20, 21, 26, 0.62);
}
.ds-legal h2.wp-block-heading {
	margin-top: 2.25rem;
	margin-bottom: 0.65rem;
	font-size: clamp(1.15rem, 1rem + 0.35vw, 1.35rem);
	line-height: 1.25;
}
.ds-legal h2.wp-block-heading:first-of-type {
	margin-top: 0.25rem;
}
.ds-legal .wp-block-list {
	margin-top: 0.5rem;
	margin-bottom: 1rem;
	padding-left: 1.2rem;
}
.ds-legal .wp-block-list li {
	margin-bottom: 0.35rem;
}
.ds-legal .wp-block-table {
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	margin-top: 0.75rem;
	margin-bottom: 1.25rem;
}
.ds-legal .wp-block-table table {
	min-width: 520px;
	font-size: 0.88rem;
	line-height: 1.45;
}
.ds-legal .wp-block-table th,
.ds-legal .wp-block-table td {
	padding: 0.65rem 0.75rem;
	vertical-align: top;
	border-color: rgba(20, 21, 26, 0.12);
}
body.page-template-page-privacy .ds-section:nth-of-type(odd)::before,
body.page-template-page-privacy .ds-section:nth-of-type(even)::before {
	content: none;
}

/* Buttons — block editor styles extension ------------------------- */
.wp-block-button.is-style-ds-solid .wp-block-button__link,
.wp-block-button.is-style-ds-solid > .wp-element-button {
	background-color: var(--ds-red);
	color: var(--ds-white);
	border-radius: 999px;
	padding: 1rem 1.75rem;
	transition: transform var(--ds-transition), background-color var(--ds-transition), box-shadow var(--ds-transition);
}
.wp-block-button.is-style-ds-solid .wp-block-button__link:hover,
.wp-block-button.is-style-ds-solid > .wp-element-button:hover {
	background-color: var(--ds-red-deep);
	transform: translateY(-2px);
	box-shadow: 0 10px 24px rgba(225, 6, 0, 0.3);
}

.wp-block-button.is-style-ds-ghost .wp-block-button__link,
.wp-block-button.is-style-ds-ghost > .wp-element-button {
	background-color: transparent;
	color: var(--ds-ink);
	border: 1.5px solid rgba(20, 21, 26, 0.18);
	border-radius: 999px;
	padding: 1rem 1.75rem;
	transition: transform var(--ds-transition), background-color var(--ds-transition), color var(--ds-transition), border-color var(--ds-transition);
}
.wp-block-button.is-style-ds-ghost .wp-block-button__link:hover,
.wp-block-button.is-style-ds-ghost > .wp-element-button:hover {
	background-color: transparent;
	color: var(--ds-red);
	border-color: var(--ds-red);
	transform: translateY(-2px);
}

.ds-btn {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-family: 'Roboto Condensed', 'Roboto', sans-serif;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	font-size: 0.9375rem;
	padding: 1rem 1.75rem;
	border-radius: 999px;
	text-decoration: none;
	transition: transform var(--ds-transition), background-color var(--ds-transition), color var(--ds-transition), box-shadow var(--ds-transition);
	cursor: pointer;
	line-height: 1;
}
.ds-btn--solid {
	background: var(--ds-red);
	color: var(--ds-white);
}
.ds-btn--solid:hover {
	background: var(--ds-red-deep);
	transform: translateY(-2px);
	box-shadow: 0 10px 24px rgba(225, 6, 0, 0.3);
	color: var(--ds-white);
}
.ds-btn--ghost {
	background: transparent;
	color: var(--ds-ink);
	border: 1.5px solid rgba(20, 21, 26, 0.18);
}
.ds-btn--ghost:hover {
	background: transparent;
	color: var(--ds-red);
	border-color: var(--ds-red);
	transform: translateY(-2px);
}

/* Eyebrow labels -------------------------------------------------- */
.ds-eyebrow {
	font-family: 'Roboto Condensed', 'Roboto', sans-serif;
	font-size: 0.8125rem;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--ds-red);
	margin: 0 0 1rem;
}

/* Header ---------------------------------------------------------- */
.ds-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: rgba(255, 255, 255, 0.82);
	backdrop-filter: saturate(160%) blur(14px);
	-webkit-backdrop-filter: saturate(160%) blur(14px);
	border-bottom: 1px solid rgba(232, 228, 220, 0.7);
	box-shadow: 0 6px 24px rgba(20, 21, 26, 0.04);
}
.ds-header__inner {
	gap: 2rem !important;
	align-items: center !important;
	justify-content: flex-start !important;
	min-height: 56px;
	max-width: 1320px;
	margin-inline: auto;
	width: 100%;
}
.ds-header__brand {
	gap: 0.75rem !important;
	align-items: center !important;
	flex-shrink: 0;
}
/* Keep logo + wordmark on the same vertical axis as the menu (WP blocks + image baseline quirks). */
.ds-header__brand .wp-block-site-logo {
	display: flex !important;
	align-items: center;
	margin: 0;
	padding: 0;
	line-height: 0;
}
.ds-header__brand .wp-block-site-logo a {
	display: inline-flex;
	align-items: center;
	line-height: 0;
}
.ds-header__brand .ds-brand {
	align-self: center;
	justify-content: center;
}
.ds-site-logo {
	display: inline-flex;
	align-items: center;
	padding: 0;
	line-height: 0;
	flex-shrink: 0;
}
.ds-site-logo img,
.wp-block-site-logo img {
	display: block;
	height: auto;
	max-width: 96px;
	width: auto;
}
.ds-site-title,
.ds-site-title a {
	font-family: 'Roboto Condensed', 'Roboto', sans-serif;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	font-size: 0.95rem;
	line-height: 1;
	color: var(--ds-ink);
	text-decoration: none;
	white-space: nowrap;
}
.ds-site-title a:hover { color: var(--ds-red); }
.ds-site-title { margin: 0; }

@media (max-width: 720px) {
	.ds-site-title { display: none; }
}
.ds-nav {
	flex: 0 1 auto;
	min-width: 0;
	margin-block: 0 !important;
}
.ds-nav .wp-block-navigation,
.ds-nav.wp-block-navigation {
	align-items: center;
	justify-content: flex-start !important;
	margin-block: 0 !important;
}
/* Desktop: vertical-center the menu list inside WP’s responsive wrapper (avoids the bar sitting “low” vs the logo). */
@media (min-width: 1301px) {
	.ds-header__inner .ds-nav .wp-block-navigation__responsive-container:not(.hidden-by-default):not(.is-menu-open) {
		display: flex !important;
		align-items: center;
	}
}
.ds-nav .wp-block-navigation__container {
	gap: 1rem !important;
	align-items: center;
	flex-wrap: nowrap;
	justify-content: flex-start !important;
	margin: 0 !important;
	padding: 0 !important;
	list-style: none !important;
}
.ds-nav .wp-block-navigation-item {
	display: flex;
	align-items: center;
	margin: 0 !important;
}
/* Beat core Navigation `display:block` + late-loaded block CSS so pills keep comfortable padding. */
.ds-header__inner .ds-nav .wp-block-navigation-item__content,
.ds-header__inner .ds-nav a.wp-block-navigation-item__content {
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	color: var(--ds-ink);
	padding: 0.6rem 1rem;
	border-radius: 999px;
	line-height: 1.2;
	min-height: 2.5rem;
	font-size: 0.875rem;
	font-weight: 600;
	letter-spacing: 0.02em;
	text-decoration: none !important;
	transition: color var(--ds-transition), background-color var(--ds-transition), box-shadow var(--ds-transition);
	white-space: nowrap;
}
.ds-header__inner .ds-nav .wp-block-navigation-item__content:hover,
.ds-header__inner .ds-nav a.wp-block-navigation-item__content:hover {
	color: var(--ds-red);
	background: rgba(225, 6, 0, 0.08);
	text-decoration: none !important;
}
.ds-header__inner .ds-nav .wp-block-navigation-item.current-menu-item > .wp-block-navigation-item__content,
.ds-header__inner .ds-nav .wp-block-navigation-item.current-menu-item > a.wp-block-navigation-item__content {
	color: var(--ds-red);
	background: rgba(225, 6, 0, 0.12);
}
.ds-header__actions {
	gap: 0.75rem !important;
	align-items: center;
	margin-left: auto !important;
	flex-shrink: 0;
}
.ds-lang {
	display: inline-flex;
	align-items: center;
	gap: 0.25rem;
	font-family: 'Roboto Condensed', 'Roboto', sans-serif;
	font-weight: 700;
	font-size: 0.8125rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	padding: 0.25rem;
	border-radius: 999px;
	border: 1px solid rgba(232, 228, 220, 0.95);
	background: rgba(255, 255, 255, 0.75);
}
.ds-lang__link,
.ds-lang__pill {
	color: var(--ds-muted);
	text-decoration: none;
	padding: 0.5rem 0.65rem;
	border-radius: 999px;
	transition: color var(--ds-transition), background-color var(--ds-transition), border-color var(--ds-transition);
	border: 1px solid transparent;
	line-height: 1;
}
.ds-lang__link.is-active,
.ds-lang__link:hover,
.ds-lang__pill.is-active,
.ds-lang__pill:hover {
	color: var(--ds-ink);
	background: rgba(225, 6, 0, 0.08);
	border-color: rgba(225, 6, 0, 0.22);
}
.ds-lang__sep {
	color: var(--ds-line);
}

/* Navigation responsive (keep burger on mobile) ------------------ */
.ds-nav .wp-block-navigation__responsive-container-open {
	border-radius: 999px;
	border: 1px solid rgba(232, 228, 220, 0.9);
	padding: 0.55rem 0.75rem;
	background: rgba(255, 255, 255, 0.7);
	transition: transform var(--ds-transition), background-color var(--ds-transition), border-color var(--ds-transition);
}
.ds-nav .wp-block-navigation__responsive-container-open:hover {
	transform: translateY(-1px);
	background: rgba(255, 255, 255, 0.95);
	border-color: rgba(225, 6, 0, 0.25);
}
.ds-nav .wp-block-navigation__responsive-container-open svg {
	width: 22px;
	height: 22px;
}
.ds-nav .wp-block-navigation__responsive-container {
	background: rgba(255, 255, 255, 0.96);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
}
.ds-nav .wp-block-navigation__responsive-dialog {
	padding: 1.25rem;
}

.admin-bar.has-modal-open .ds-nav .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-dialog,
.has-modal-open .admin-bar .ds-nav .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-dialog {
	margin-top: 0 !important;
}

.ds-nav .wp-block-navigation__responsive-container-content .wp-block-navigation__container {
	gap: 1rem;
}
/* Only when the overlay is open — otherwise this zeroed horizontal padding on desktop pills. */
.ds-nav .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation-item__content {
	font-size: 1.1rem;
	padding: 0.75rem 1.15rem;
}

/* Hero ------------------------------------------------------------ */
/* --------------------------------------------------------------
   Hero — simple, predictable two-column grid.
   No absolute-to-viewport hacks: the tower lives in the right
   grid cell; grid handles all alignment.  That's why it no
   longer "drifts" when widths change.
   -------------------------------------------------------------- */
.ds-hero {
	position: relative;
	isolation: isolate;
	overflow: hidden;
	color: var(--ds-ink);
	border-radius: 0;
	border: none;
	box-shadow: none;

	/* Full-bleed out of constrained parent. */
	left: 50%;
	margin-left: -50vw !important;
	margin-right: 0 !important;
	width: 100vw !important;
	max-width: 100vw !important;

	/* Inner padding aligns content with 1320px centre zone. */
	padding-top: clamp(3rem, 5vw, 4.5rem) !important;
	padding-bottom: clamp(3rem, 5vw, 4.5rem) !important;
	padding-left: max(1.5rem, calc(50vw - 660px)) !important;
	padding-right: max(1.5rem, calc(50vw - 660px)) !important;

	background:
		radial-gradient(48% 55% at 78% 52%, rgba(225, 6, 0, 0.09) 0%, transparent 70%),
		radial-gradient(55% 45% at 8% 102%, rgba(58, 61, 69, 0.04) 0%, transparent 60%),
		linear-gradient(180deg, #FDFBF6 0%, #F5EFDF 100%);

	display: grid !important;
	grid-template-columns: minmax(0, 1fr) minmax(0, 480px);
	/* Stretch row so the tower column can align-self:end and sit on
	   the bottom edge of the hero (text stays top via .ds-hero__body). */
	align-items: stretch;
	column-gap: clamp(1.5rem, 4vw, 4rem);
	row-gap: 2rem;
}
.ds-hero::before {
	content: '';
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
	background-image:
		linear-gradient(rgba(20, 21, 26, 0.06) 1px, transparent 1px),
		linear-gradient(90deg, rgba(20, 21, 26, 0.06) 1px, transparent 1px);
	background-size: 80px 80px;
	background-position: center center;
	mask-image: radial-gradient(75% 75% at 60% 50%, #000 30%, transparent 90%);
	-webkit-mask-image: radial-gradient(75% 75% at 60% 50%, #000 30%, transparent 90%);
	opacity: 0.62;
}
.ds-hero::after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent 0%, rgba(20, 21, 26, 0.08) 20%, rgba(20, 21, 26, 0.08) 80%, transparent 100%);
	z-index: 1;
	pointer-events: none;
}

/* Right column: the decorative stage.
   Aspect ratio matches the tower SVG (420×700) so the spire sits
   exactly centred without overflow — badges can then anchor to the
   same box predictably on every viewport. */
.ds-hero__bg {
	position: relative;
	grid-column: 2;
	grid-row: 1;
	justify-self: end;
	width: 100%;
	max-width: 440px !important;
	min-width: 0;
	z-index: 2;
	overflow: visible;
	background: transparent;
	/* Override WP's constrained-layout auto-margins. */
	margin-left: auto !important;
	margin-right: 0 !important;
	margin-top: 0 !important;
	margin-bottom: 0 !important;
	padding: 0 !important;
}
.ds-hero__bg .ds-hero__stage,
.ds-hero__stage {
	position: absolute;
	inset: 0;
	pointer-events: none;
	margin: 0 !important;
	padding: 0 !important;
}
.ds-hero__rings {
	position: absolute;
	inset: 0;
	pointer-events: none;
}
.ds-hero__rings span {
	position: absolute;
	top: 50%;
	left: 50%;
	border: 1px solid rgba(225, 6, 0, 0.35);
	border-radius: 50%;
	transform: translate(-50%, -50%);
	animation: ds-radar 4.6s ease-in-out infinite;
}
/* Rings are anchored to the tower's visual centre (roughly 60% down
   the stage, where the bars cluster), not the geometric centre. */
.ds-hero__rings span:nth-child(1) { width: 28%; height: 28%; top: 62%; animation-delay: 0s; border-color: rgba(225, 6, 0, 0.40); }
.ds-hero__rings span:nth-child(2) { width: 48%; height: 48%; top: 62%; animation-delay: 0.9s; border-color: rgba(225, 6, 0, 0.22); }
.ds-hero__rings span:nth-child(3) { width: 70%; height: 70%; top: 62%; animation-delay: 1.8s; border-color: rgba(225, 6, 0, 0.12); }
@keyframes ds-radar {
	0%, 100% { opacity: 0.42; transform: translate(-50%, -50%) scale(0.995); }
	50%      { opacity: 0.98; transform: translate(-50%, -50%) scale(1.005); }
}
.ds-hero__stage .ds-tower {
	position: absolute;
	bottom: 0;
	left: 50%;
	top: 0;
	width: 82%;
	max-width: 100%;
	height: 100%;
	transform: translateX(-50%);
	opacity: 1;
	filter:
		drop-shadow(0 18px 42px rgba(225, 6, 0, 0.35))
		drop-shadow(0 0 28px rgba(225, 6, 0, 0.22));
	animation: ds-tower-glow 5.6s ease-in-out infinite;
}
.ds-hero__stage .ds-tower .ds-tower__svg {
	height: 100%;
	width: 100%;
}
@keyframes ds-tower-glow {
	0%, 100% { filter: drop-shadow(0 18px 42px rgba(225, 6, 0, 0.35)) drop-shadow(0 0 28px rgba(225, 6, 0, 0.22)); }
	50%      { filter: drop-shadow(0 22px 52px rgba(225, 6, 0, 0.50)) drop-shadow(0 0 40px rgba(225, 6, 0, 0.35)); }
}
.ds-hero__badges {
	position: absolute;
	inset: 0;
	z-index: 2;
	pointer-events: none;
}
.ds-badge {
	position: absolute;
	display: flex;
	flex-direction: column;
	gap: 0.2rem;
	padding: 0.75rem 0.95rem;
	background: rgba(255, 255, 255, 0.85);
	backdrop-filter: blur(14px) saturate(160%);
	-webkit-backdrop-filter: blur(14px) saturate(160%);
	border: 1px solid rgba(225, 6, 0, 0.14);
	border-radius: 14px;
	box-shadow:
		0 10px 30px rgba(20, 21, 26, 0.08),
		0 2px 6px rgba(20, 21, 26, 0.04),
		inset 0 1px 0 rgba(255, 255, 255, 0.7);
	animation: ds-badge-float 5.6s ease-in-out infinite;
	transition: transform var(--ds-transition), box-shadow var(--ds-transition), border-color var(--ds-transition);
	pointer-events: auto;
	white-space: nowrap;
}
.ds-badge:hover {
	transform: translateY(-4px);
	border-color: rgba(225, 6, 0, 0.35);
	box-shadow:
		0 16px 40px rgba(20, 21, 26, 0.12),
		0 4px 10px rgba(20, 21, 26, 0.05),
		inset 0 1px 0 rgba(255, 255, 255, 0.8);
}
.ds-badge b {
	font-family: 'Roboto Condensed', 'Roboto', sans-serif;
	font-size: 1.35rem;
	font-weight: 700;
	color: var(--ds-ink);
	line-height: 1;
	letter-spacing: -0.01em;
}
.ds-badge b i {
	font-style: normal;
	font-size: 0.65em;
	color: var(--ds-red);
	margin-left: 0.1em;
	font-weight: 700;
}
.ds-badge span {
	font-family: 'Roboto Condensed', 'Roboto', sans-serif;
	font-size: 0.65rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.22em;
	color: var(--ds-muted);
}
.ds-badge--1 { top: 22%; left: -8%;  animation-delay: 0s; }
.ds-badge--2 { top: 46%; right: -10%; animation-delay: 1.2s; }
.ds-badge--3 { top: 70%; left: -4%;  animation-delay: 2.4s; }
@keyframes ds-badge-float {
	0%, 100% { transform: translateY(0); }
	50%      { transform: translateY(-10px); }
}
.ds-hero__body {
	position: relative;
	z-index: 3;
	grid-column: 1;
	grid-row: 1;
	align-self: start;
	min-width: 0;
}
.ds-hero .ds-eyebrow {
	color: var(--ds-red);
}
.ds-hero__title {
	margin: 0 0 1.25rem;
	font-family: 'Roboto Condensed', 'Roboto', sans-serif;
	font-size: clamp(2rem, 4.2vw, 3.5rem) !important;
	line-height: 1.02;
	letter-spacing: -0.02em;
	text-transform: none !important;
	color: var(--ds-ink);
	font-weight: 700;
}
.ds-outline {
	display: inline;
	color: var(--ds-red);
	-webkit-text-stroke: 0;
	transition: color var(--ds-transition);
}
.ds-hero__title:hover .ds-outline {
	color: var(--ds-red-deep);
}
.ds-hero__lede {
	color: var(--ds-ink-2);
	margin: 0 0 1.75rem;
	font-size: 1rem !important;
	line-height: 1.6;
}
.ds-hero__cta {
	gap: 0.75rem !important;
	margin-bottom: 2rem;
}
.ds-hero .wp-block-button.is-style-ds-ghost .wp-block-button__link,
.ds-hero .wp-block-button.is-style-ds-ghost > .wp-element-button {
	color: var(--ds-ink);
	border-color: rgba(20, 21, 26, 0.22);
	background: rgba(255, 255, 255, 0.6);
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
}
.ds-hero .wp-block-button.is-style-ds-ghost .wp-block-button__link:hover,
.ds-hero .wp-block-button.is-style-ds-ghost > .wp-element-button:hover {
	color: var(--ds-red);
	border-color: var(--ds-red);
	background: rgba(255, 255, 255, 0.9);
}
.ds-hero__stats {
	display: flex;
	flex-wrap: wrap;
	gap: 2.5rem;
	padding-top: 2rem;
	border-top: 1px solid var(--ds-line);
}
.ds-stat {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0.1rem;
	min-width: 140px;
}
.ds-stat__num {
	font-family: 'Roboto Condensed', 'Roboto', sans-serif;
	font-size: clamp(2.25rem, 5vw, 3.25rem);
	font-weight: 700;
	color: var(--ds-ink);
	line-height: 1;
	letter-spacing: -0.01em;
}
.ds-stat__unit {
	display: inline-block;
	margin-left: 0.15em;
	font-family: 'Roboto Condensed', 'Roboto', sans-serif;
	font-size: 1.25rem;
	color: var(--ds-red);
	font-weight: 700;
	transform: translateY(-0.4em);
}
.ds-stat__label {
	font-size: 0.8125rem;
	color: var(--ds-muted);
	margin-top: 0.15rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

/* Sections -------------------------------------------------------- */
.ds-section__head {
	gap: 2rem !important;
	align-items: flex-end !important;
	margin-bottom: 3rem;
}
@media (max-width: 720px) {
	.ds-section__head.ds-section-mobile { margin-bottom: 1.5rem; }
}

.ds-section__heading,
.ds-section__sub {
	min-width: 0; /* allow flex items to shrink so text can wrap */
}
.ds-section__heading h2 {
	margin: 0;
	max-width: 16ch;
	overflow-wrap: anywhere; /* prevent long words from overflowing on mobile */
	word-break: normal;
	hyphens: auto; /* enable language-aware hyphenation (e.g. Polish) */
	text-wrap: balance;
}
.ds-section__sub {
	max-width: 44ch;
	color: var(--ds-ink-2);
	margin: 0;
	font-size: 1.0625rem;
}

/* Segments -------------------------------------------------------- */
.ds-segments__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem !important;
}
/*
 * WordPress core adds vertical margins between blocks for `.is-layout-flow` via global styles.
 * Our grids use `gap`, so those margins create uneven spacing (notably: first item differs).
 */
.ds-segments__grid > * {
	margin-block-start: 0 !important;
	margin-top: 0 !important;
}
.ds-card {
	position: relative;
	padding: 2.5rem 2rem 2rem;
	background: var(--ds-white);
	border: 1px solid var(--ds-line);
	border-radius: var(--ds-radius-md);
	min-height: 260px;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	overflow: hidden;
	transition: transform var(--ds-transition), box-shadow var(--ds-transition), border-color var(--ds-transition);
}
.ds-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--ds-shadow-md);
	border-color: transparent;
}
.ds-card__index {
	font-family: 'Roboto Condensed', 'Roboto', sans-serif;
	font-size: 0.875rem;
	color: var(--ds-red);
	font-weight: 700;
	letter-spacing: 0.2em;
}
.ds-card__title {
	font-family: 'Roboto Condensed', 'Roboto', sans-serif;
	font-size: clamp(1.35rem, 2vw, 1.6rem);
	font-weight: 700;
	text-transform: uppercase;
	margin: 0;
	color: var(--ds-ink);
	line-height: 1.05;
	overflow-wrap: anywhere;
	word-break: normal;
	hyphens: auto;
}
.ds-card__text {
	color: var(--ds-ink-2);
	margin: 0;
	font-size: 1rem;
}
.ds-card--photo .ds-card__text {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 4;
	line-clamp: 4;
	overflow: hidden;
}
.ds-card__link {
	font-size: 0.8125rem;
	color: var(--ds-muted);
	text-transform: uppercase;
	letter-spacing: 0.12em;
	margin-top: auto;
	padding-top: 1.25rem;
	border-top: 1px dashed var(--ds-line);
}

/* Features — equipment showcase ---------------------------------- */
.ds-features__showcase {
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
	gap: 2.5rem;
	align-items: center;
}
.ds-features__showcase > * {
	margin-block-start: 0 !important;
	margin-top: 0 !important;
}
.ds-features__media {
	margin: 0;
	aspect-ratio: 16 / 11;
	background: linear-gradient(135deg, #fdecec 0%, #faf7f2 100%);
	border-radius: var(--ds-radius-md);
	overflow: hidden;
	position: relative;
	display: grid;
	place-items: center;
}
.ds-features__media .wp-block-image {
	margin: 0;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.ds-features__media .wp-block-image img {
	width: 100%;
	height: 100%;
	margin: 0;
	display: block;
	object-fit: contain;
}
.ds-features__media::before {
	content: 'CRYSTAL SOUND · DRR-210 + DRT-210';
	position: absolute;
	left: 1rem;
	bottom: 1rem;
	right: 1rem;
	font-family: 'Roboto Condensed', 'Roboto', sans-serif;
	font-size: 0.65rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--ds-muted);
	z-index: 1;
	pointer-events: none;
	line-height: 1.35;
}
.ds-features__media:has(img)::before {
	display: none;
}
.ds-features__body {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	min-width: 0;
}
.ds-features__specs {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0.75rem;
	list-style: none;
	margin: 0;
	padding: 0;
}
.ds-spec {
	background: var(--ds-white);
	border: 1px solid var(--ds-line);
	border-radius: var(--ds-radius-md);
	padding: 1rem 1.1rem;
}
.ds-spec__num {
	font-family: 'Roboto Condensed', 'Roboto', sans-serif;
	font-size: 1.6rem;
	font-weight: 700;
	line-height: 1;
	color: var(--ds-ink);
}
.ds-spec__num small {
	font-size: 0.95rem;
	color: var(--ds-red);
	margin-left: 0.15rem;
	font-weight: 700;
}
.ds-spec__label {
	font-size: 0.78rem;
	color: var(--ds-muted);
	text-transform: uppercase;
	letter-spacing: 0.1em;
	margin-top: 0.45rem;
}
.ds-features__models {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0.75rem;
}
.ds-features__app {
	background: linear-gradient(135deg, rgba(225, 6, 0, 0.08) 0%, rgba(250, 247, 242, 0.9) 60%, rgba(253, 236, 236, 0.75) 100%);
	border: 1px solid rgba(225, 6, 0, 0.16);
	border-radius: var(--ds-radius-md);
	padding: 1rem 1.1rem;
	display: grid;
	gap: 0.35rem;
}
.ds-features__app-title {
	font-family: 'Roboto Condensed', 'Roboto', sans-serif;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--ds-ink);
	font-size: 0.9rem;
	line-height: 1.2;
}
.ds-features__app-text {
	color: var(--ds-ink-2);
	font-size: 0.95rem;
	line-height: 1.45;
}
.ds-features__app-link {
	margin-top: 0.35rem;
	width: fit-content;
	font-size: 0.8125rem;
	color: var(--ds-muted);
	text-transform: uppercase;
	letter-spacing: 0.12em;
	text-decoration: none;
	border-bottom: 1px dashed var(--ds-line);
	padding-bottom: 0.15rem;
}
.ds-features__app-link:hover {
	color: var(--ds-ink);
	border-bottom-color: rgba(225, 6, 0, 0.25);
}
.ds-model {
	border-top: 1px solid var(--ds-line);
	padding-top: 0.85rem;
}
.ds-model__code {
	font-family: 'Roboto Condensed', 'Roboto', sans-serif;
	font-weight: 700;
	color: var(--ds-ink);
	font-size: 1rem;
}
.ds-model__role {
	font-size: 0.78rem;
	color: var(--ds-muted);
	text-transform: uppercase;
	letter-spacing: 0.1em;
	margin-top: 0.2rem;
}
.ds-features__tech {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.4rem;
	list-style: none;
	margin: 0;
	padding: 0;
}
.ds-tech-pill {
	font-family: 'Roboto Condensed', 'Roboto', sans-serif;
	font-size: 0.75rem;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	font-weight: 700;
	color: var(--ds-red);
	background: var(--ds-red-soft);
	padding: 0.45rem 0.7rem;
	border-radius: 999px;
}
@media (max-width: 960px) {
	.ds-features__showcase {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}
	.ds-features__media {
		aspect-ratio: 4 / 3;
	}
}
@media (max-width: 720px) {
	.ds-features__media {
		aspect-ratio: 5 / 4;
	}
	.ds-features__specs {
		gap: 0.5rem;
	}
	.ds-spec {
		padding: 0.85rem 0.9rem;
	}
	.ds-spec__num {
		font-size: 1.4rem;
	}
	.ds-features__models {
		grid-template-columns: 1fr;
	}
}

/* Pricing --------------------------------------------------------- */
.ds-pricing__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.25rem;
	margin-bottom: 2.5rem;
}
.ds-price {
	position: relative;
	background: var(--ds-white);
	border: 1px solid var(--ds-line);
	border-radius: var(--ds-radius-md);
	padding: 2.25rem 2rem 2rem;
	display: flex;
	flex-direction: column;
	transition: transform var(--ds-transition), box-shadow var(--ds-transition), border-color var(--ds-transition);
}
.ds-price:hover {
	transform: translateY(-4px);
	box-shadow: var(--ds-shadow-md);
}
.ds-price--featured {
	background:
		radial-gradient(120% 100% at 0% 0%, rgba(225, 6, 0, 0.14) 0%, transparent 55%),
		linear-gradient(135deg, #FFFFFF 0%, #FAF7F2 55%, #FDECEC 100%);
	color: var(--ds-ink);
	border-color: rgba(225, 6, 0, 0.18);
	box-shadow: 0 10px 34px rgba(20, 21, 26, 0.08), 0 2px 6px rgba(20, 21, 26, 0.04);
}
.ds-price--featured .ds-price__tag,
.ds-price--featured .ds-price__unit,
.ds-price--featured .ds-price__note { color: var(--ds-ink-2); }
.ds-price--featured .ds-price__amount { color: var(--ds-ink); }
.ds-price--featured .ds-price__amount span { color: var(--ds-red); }
.ds-price--featured .ds-price__cta { color: var(--ds-ink); }
.ds-price__ribbon {
	position: absolute;
	top: 1.25rem;
	right: 1.25rem;
	background: var(--ds-red);
	color: var(--ds-white);
	font-family: 'Roboto Condensed', 'Roboto', sans-serif;
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	padding: 0.35rem 0.6rem;
	border-radius: 999px;
}
.ds-price__tag {
	font-family: 'Roboto Condensed', 'Roboto', sans-serif;
	text-transform: uppercase;
	color: var(--ds-muted);
	font-size: 0.8125rem;
	letter-spacing: 0.16em;
	font-weight: 700;
}
.ds-price__amount {
	font-family: 'Roboto Condensed', 'Roboto', sans-serif;
	font-size: clamp(3rem, 6vw, 4.5rem);
	font-weight: 700;
	color: var(--ds-ink);
	margin: 0.75rem 0 0;
	line-height: 1;
	letter-spacing: -0.02em;
}
.ds-price__amount b {
	font-weight: 700;
}
.ds-price__amount span {
	font-size: 0.45em;
	color: var(--ds-red);
	margin-left: 0.35rem;
	vertical-align: 0.25em;
	letter-spacing: 0.06em;
}
.ds-price__unit {
	color: var(--ds-muted);
	font-size: 0.9375rem;
	margin: 0.4rem 0 1.25rem;
}
.ds-price__note {
	color: var(--ds-ink-2);
	font-size: 0.95rem;
	margin: 0 0 1.5rem;
	flex: 1;
}
.ds-price__cta {
	font-family: 'Roboto Condensed', 'Roboto', sans-serif;
	text-transform: uppercase;
	font-size: 0.8125rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	color: var(--ds-ink);
	text-decoration: none;
	padding: 0.5rem 0;
	border-bottom: 1px solid currentColor;
	align-self: flex-start;
	transition: color var(--ds-transition), border-color var(--ds-transition), transform var(--ds-transition);
}
.ds-price__cta:hover {
	color: var(--ds-red);
	transform: translateX(4px);
}

.ds-pricing__includes {
	gap: 1.25rem !important;
	margin-top: 0.5rem;
}
.ds-included {
	flex: 1;
	min-width: 260px;
	background: var(--ds-white);
	border: 1px solid var(--ds-line);
	border-radius: var(--ds-radius-md);
	padding: 2rem;
}
.ds-included--accent {
	background: var(--ds-red-soft);
	border-color: var(--ds-red-soft);
}
.ds-included h4 {
	font-family: 'Roboto Condensed', 'Roboto', sans-serif;
	text-transform: uppercase;
	font-size: 1.1rem;
	margin: 0 0 1rem;
	color: var(--ds-ink);
}
.ds-included ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 0.5rem;
}
.ds-included li {
	color: var(--ds-ink-2);
	padding-left: 1.5rem;
	position: relative;
}
.ds-included li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0.55em;
	width: 10px;
	height: 2px;
	background: var(--ds-red);
}

/* Steps / How it works ------------------------------------------- */
.ds-steps__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 0;
	counter-reset: ds-step;
	position: relative;
}
.ds-steps__list::before {
	content: '';
	position: absolute;
	top: 22px;
	left: 0;
	right: 0;
	height: 1px;
	background: var(--ds-line);
}
.ds-step {
	padding: 0 1.25rem 0 0;
	display: flex;
	flex-direction: column;
	gap: 0.6rem;
	position: relative;
}
.ds-step__num {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: var(--ds-paper);
	color: var(--ds-red);
	display: grid;
	place-items: center;
	font-family: 'Roboto Condensed', 'Roboto', sans-serif;
	font-weight: 700;
	border: 1.5px solid var(--ds-red);
	font-size: 1.1rem;
	position: relative;
	z-index: 1;
	transition: background-color var(--ds-transition), color var(--ds-transition), transform var(--ds-transition);
}
.ds-step:hover .ds-step__num {
	background: var(--ds-red);
	color: var(--ds-white);
	transform: scale(1.08);
}
.ds-step__title {
	font-family: 'Roboto Condensed', 'Roboto', sans-serif;
	font-size: 1.25rem;
	font-weight: 700;
	text-transform: uppercase;
	margin: 0.5rem 0 0;
	color: var(--ds-ink);
}
.ds-step__text {
	color: var(--ds-ink-2);
	font-size: 0.95rem;
	margin: 0;
	line-height: 1.55;
}

/* System how — wireless guide flow (mobile-first) ---------------- */
.ds-system-how__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.75rem;
	align-items: start;
}
.ds-system-how__grid > * {
	margin-block-start: 0 !important;
	margin-top: 0 !important;
}
.ds-system-how__main {
	min-width: 0;
}
.ds-system-how__main > * {
	margin-block-start: 0 !important;
	margin-top: 0 !important;
}
.ds-system-how__aside {
	min-width: 0;
}
.ds-system-how__aside > * {
	margin-block-start: 0 !important;
	margin-top: 0 !important;
}
.ds-system-how__steps {
	list-style: none;
	margin: 0 0 1.5rem;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0;
}
.ds-system-how__step {
	display: grid;
	grid-template-columns: 44px minmax(3.25rem, 4.25rem) minmax(0, 1fr);
	gap: 0.65rem 0.85rem;
	align-items: center;
	position: relative;
	padding-bottom: 1.1rem;
}
.ds-system-how__step:last-child {
	padding-bottom: 0;
}
.ds-system-how__step:not(:last-child)::after {
	content: '';
	position: absolute;
	left: 21px;
	top: 46px;
	bottom: 0;
	width: 0;
	border-left: 2px dashed rgba(225, 6, 0, 0.32);
	pointer-events: none;
}
.ds-system-how__step-num {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: var(--ds-paper);
	color: var(--ds-red);
	display: grid;
	place-items: center;
	font-family: 'Roboto Condensed', 'Roboto', sans-serif;
	font-weight: 700;
	font-size: 1.05rem;
	border: 1.5px solid var(--ds-red);
	position: relative;
	z-index: 1;
	flex-shrink: 0;
}
.ds-system-how__step-icon {
	width: 100%;
	max-width: 4.25rem;
	aspect-ratio: 1;
	border-radius: 50%;
	background: linear-gradient(145deg, #faf7f2 0%, #fdecec 100%);
	color: var(--ds-red);
	display: grid;
	place-items: center;
	position: relative;
	z-index: 1;
}
.ds-system-how__step-icon svg {
	width: 52%;
	height: 52%;
}
.ds-system-how__step-body {
	min-width: 0;
}
.ds-system-how__step-title {
	font-family: 'Roboto Condensed', 'Roboto', sans-serif;
	font-size: 1.05rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	margin: 0 0 0.25rem;
	color: var(--ds-red);
	line-height: 1.2;
}
.ds-system-how__step-text {
	margin: 0;
	font-size: 0.9rem;
	line-height: 1.5;
	color: var(--ds-ink-2);
}
.ds-system-how__highlights {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.55rem;
}
.ds-system-how__hi {
	display: flex;
	align-items: flex-start;
	gap: 0.55rem;
	background: var(--ds-white);
	border: 1px solid var(--ds-line);
	border-radius: var(--ds-radius-md);
	padding: 0.65rem 0.7rem;
	min-width: 0;
}
.ds-system-how__hi-icon {
	flex-shrink: 0;
	width: 2rem;
	height: 2rem;
	color: var(--ds-red);
	display: grid;
	place-items: center;
}
.ds-system-how__hi-icon svg {
	width: 100%;
	height: 100%;
}
.ds-system-how__hi-body {
	min-width: 0;
}
.ds-system-how__hi-title {
	display: block;
	font-family: 'Roboto Condensed', 'Roboto', sans-serif;
	font-size: 0.72rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--ds-ink);
	line-height: 1.25;
	margin-bottom: 0.2rem;
}
.ds-system-how__hi-text {
	margin: 0;
	font-size: 0.78rem;
	line-height: 1.4;
	color: var(--ds-muted);
}
@media (min-width: 721px) {
	.ds-system-how__highlights {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}
@media (min-width: 961px) {
	.ds-system-how__grid {
		grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
		gap: 2.25rem;
		align-items: stretch;
	}
	.ds-system-how__steps {
		margin-bottom: 1.75rem;
	}
	.ds-system-how__aside {
		align-self: start;
	}
	.ds-system-how__highlights {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}
@media (min-width: 1200px) {
	.ds-system-how__highlights {
		grid-template-columns: repeat(6, minmax(0, 1fr));
		gap: 0.5rem;
	}
	.ds-system-how__hi {
		flex-direction: column;
		align-items: center;
		text-align: center;
		padding: 0.75rem 0.5rem;
	}
	.ds-system-how__hi-icon {
		margin-bottom: 0.15rem;
	}
}

/* Privileges ------------------------------------------------------ */
.ds-privileges {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem !important;
	align-items: stretch;
}
.ds-privileges__hero {
	background:
		radial-gradient(110% 90% at 0% 0%, rgba(225, 6, 0, 0.16) 0%, transparent 58%),
		linear-gradient(135deg, #FFFFFF 0%, #FAF7F2 55%, #FDECEC 100%);
	color: var(--ds-ink);
	padding: 3rem;
	border-radius: var(--ds-radius-lg);
	position: relative;
	overflow: hidden;
	border: 1px solid rgba(225, 6, 0, 0.14);
	box-shadow: 0 10px 34px rgba(20, 21, 26, 0.08), 0 2px 6px rgba(20, 21, 26, 0.04);
}
.ds-privileges__hero .ds-eyebrow { color: var(--ds-red) !important; }
.ds-privileges__title {
	font-family: 'Roboto Condensed', 'Roboto', sans-serif;
	font-weight: 700;
	text-transform: uppercase;
	font-size: clamp(2rem, 3.5vw, 3rem);
	color: var(--ds-ink);
	line-height: 1;
	margin: 0 0 1.25rem;
	letter-spacing: -0.01em;
}
.ds-privileges__text {
	color: var(--ds-ink-2);
	margin: 0 0 1.75rem;
	max-width: 40ch;
}
.ds-privileges__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1px;
	background: var(--ds-line);
	border: 1px solid var(--ds-line);
	border-radius: var(--ds-radius-md);
	overflow: hidden;
}
.ds-privilege {
	background: var(--ds-white);
	padding: 2rem;
	transition: background-color var(--ds-transition);
}
.ds-privilege:hover { background: var(--ds-paper); }
.ds-privilege__title {
	font-family: 'Roboto Condensed', 'Roboto', sans-serif;
	font-size: 1.1rem;
	font-weight: 700;
	text-transform: uppercase;
	margin: 0 0 0.5rem;
	color: var(--ds-ink);
}
.ds-privilege__text {
	color: var(--ds-ink-2);
	font-size: 0.9375rem;
	margin: 0;
	line-height: 1.55;
}

/* Use cases grid ------------------------------------------------- */
.ds-usecases__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1rem;
}
.ds-usecases__grid .wp-block-image {
	/* In case images are placed directly into the grid (without .ds-usecase__media wrapper). */
	aspect-ratio: 1 / 1;
	border-radius: var(--ds-radius-md);
	overflow: hidden;
	margin: 0;
}
.ds-usecases__grid .wp-block-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.ds-usecase {
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 1rem;
}
.ds-usecase__media {
	aspect-ratio: 1 / 1;
	background: linear-gradient(135deg, #FDECEC 0%, #FAF7F2 100%);
	border-radius: var(--ds-radius-md);
	position: relative;
	overflow: hidden;
	display: grid;
	place-items: center;
	transition: transform var(--ds-transition);
}
.ds-usecase:hover .ds-usecase__media { transform: translateY(-4px); }
.ds-usecase__placeholder {
	font-family: 'Roboto Condensed', 'Roboto', sans-serif;
	text-transform: uppercase;
	font-size: 0.75rem;
	letter-spacing: 0.2em;
	color: var(--ds-red);
	opacity: 0.6;
}
.ds-usecase__media::after {
	content: '';
	position: absolute;
	inset: auto 0 0 0;
	height: 50%;
	background: linear-gradient(180deg, transparent 0%, rgba(225, 6, 0, 0.08) 100%);
	pointer-events: none;
}
.ds-usecase__cap h3 {
	font-family: 'Roboto Condensed', 'Roboto', sans-serif;
	font-size: 1.1rem;
	font-weight: 700;
	text-transform: uppercase;
	margin: 0 0 0.4rem;
	color: var(--ds-ink);
}
.ds-usecase__cap p {
	color: var(--ds-ink-2);
	font-size: 0.9rem;
	margin: 0;
	line-height: 1.5;
}

/* Cases (Query loop) --------------------------------------------- */
.ds-cases__grid,
.ds-portfolio__grid {
	display: grid !important;
	grid-template-columns: repeat(3, 1fr) !important;
	gap: 1.5rem !important;
	margin-bottom: 2rem;
}
.ds-cases__grid > *,
.ds-portfolio__grid > * {
	margin-block-start: 0 !important;
	margin-top: 0 !important;
}
/* If the grid is a UL/OL (Query Loop), remove list formatting too. */
ul.ds-cases__grid,
ul.ds-portfolio__grid,
ol.ds-cases__grid,
ol.ds-portfolio__grid {
	list-style: none;
	padding-left: 0;
	margin-left: 0;
}
.ds-portfolio__grid { grid-template-columns: repeat(3, 1fr) !important; }
.ds-case {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	position: relative;
	padding: 1.05rem;
	border-radius: calc(var(--ds-radius-md) + 4px);
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.92) 100%);
	border: 1px solid rgba(20, 21, 26, 0.10);
	box-shadow: var(--ds-shadow-sm);
	transition: transform var(--ds-transition), box-shadow var(--ds-transition), border-color var(--ds-transition);
	isolation: isolate;
}
.ds-case::before {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: inherit;
	background:
		radial-gradient(120% 100% at 0% 0%, rgba(225, 6, 0, 0.10) 0%, rgba(225, 6, 0, 0) 55%),
		radial-gradient(120% 100% at 100% 0%, rgba(20, 21, 26, 0.06) 0%, rgba(20, 21, 26, 0) 55%);
	opacity: 0;
	transition: opacity var(--ds-transition);
	pointer-events: none;
	z-index: -1;
}
.ds-case:hover {
	transform: translateY(-3px);
	border-color: rgba(225, 6, 0, 0.22);
	box-shadow: var(--ds-shadow-md);
}
.ds-case:hover::before { opacity: 1; }
.ds-case:focus-within {
	border-color: rgba(225, 6, 0, 0.32);
	box-shadow: 0 0 0 3px rgba(225, 6, 0, 0.16), var(--ds-shadow-md);
}
.ds-case .ds-case__cover,
.ds-case .ds-case__cover img,
.ds-case .wp-block-post-featured-image {
	border-radius: var(--ds-radius-md);
	overflow: hidden;
}
.ds-case .ds-case__cover img {
	transition: transform 600ms var(--ds-ease);
	display: block;
	width: 100%;
	height: auto;
}
.ds-case:hover .ds-case__cover img { transform: scale(1.04); }
.ds-case--empty .ds-case__cover {
	aspect-ratio: 4 / 3;
	background: linear-gradient(135deg, #FAF7F2 0%, #FDECEC 100%);
	display: grid;
	place-items: center;
	font-family: 'Roboto Condensed', 'Roboto', sans-serif;
	text-transform: uppercase;
	font-size: 0.75rem;
	letter-spacing: 0.2em;
	color: var(--ds-red);
	opacity: 0.8;
}
.ds-case__title {
	font-family: 'Roboto Condensed', 'Roboto', sans-serif !important;
	font-size: 1.25rem !important;
	text-transform: uppercase !important;
	margin: 0 !important;
	line-height: 1.1 !important;
	color: var(--ds-ink) !important;
}
.ds-case__title a {
	color: inherit;
	text-decoration: none;
	transition: color var(--ds-transition), text-decoration-color var(--ds-transition);
	text-decoration-thickness: 2px;
	text-underline-offset: 0.2em;
	text-decoration-color: rgba(225, 6, 0, 0);
}
.ds-case__title a:hover {
	color: var(--ds-red);
	text-decoration-color: rgba(225, 6, 0, 0.55);
}
.ds-case__title a:focus-visible {
	outline: 2px solid rgba(225, 6, 0, 0.55);
	outline-offset: 3px;
	border-radius: 6px;
}
.ds-case__excerpt,
.ds-case__excerpt p {
	color: var(--ds-ink-2);
	font-size: 0.95rem;
	margin: 0;
}
.ds-cases__more .wp-block-button { margin-top: 1.5rem; }

.ds-portfolio__empty {
	grid-column: 1 / -1;
	background: var(--ds-white);
	border: 1px dashed var(--ds-line);
	border-radius: var(--ds-radius-md);
	padding: 3rem;
	text-align: center;
}
.ds-portfolio__empty h3 {
	font-family: 'Roboto Condensed', 'Roboto', sans-serif;
	text-transform: uppercase;
	font-size: 1.4rem;
	margin: 0 0 0.5rem;
}

/* Contact band --------------------------------------------------- */
.ds-contactband {
	position: relative;
	border: none;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
	padding-bottom: 0 !important;
}
.ds-main > .ds-contactband:last-child {
	/* Avoid double-spacing: `.ds-main` already provides bottom padding. */
	padding-bottom: 0 !important;
}
.ds-contactband.has-background { background: none; }
.ds-contactband__inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
	align-items: center;
}
.ds-contactband__title {
	font-family: 'Roboto Condensed', 'Roboto', sans-serif;
	font-weight: 700;
	text-transform: uppercase;
	font-size: clamp(2rem, 4vw, 3.25rem);
	color: var(--ds-ink);
	line-height: 1;
	margin: 0 0 1rem;
	letter-spacing: -0.01em;
}
.ds-contactband__text {
	color: var(--ds-ink-2);
	max-width: 44ch;
	margin: 0;
}
.ds-contactband__actions {
	display: grid;
	gap: 0.5rem;
}
.ds-qbtn {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-bottom: 0.5rem;
	padding: 1rem 1.25rem;
	border-radius: 999px;
	text-decoration: none;
	color: var(--ds-ink);
	background: rgba(255, 255, 255, 0.78);
	border: 1px solid rgba(20, 21, 26, 0.08);
	box-shadow: 0 6px 18px rgba(20, 21, 26, 0.04);
	backdrop-filter: blur(10px) saturate(140%);
	-webkit-backdrop-filter: blur(10px) saturate(140%);
	transition: transform var(--ds-transition), background-color var(--ds-transition), border-color var(--ds-transition), box-shadow var(--ds-transition);
	font-family: 'Roboto Condensed', 'Roboto', sans-serif;
	letter-spacing: 0.04em;
	font-size: 1rem;
}
.ds-qbtn span {
	display: flex;
	flex-direction: column;
	line-height: 1.15;
}
.ds-qbtn em {
	font-style: normal;
	color: var(--ds-red);
	font-size: 0.72rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.2em;
	margin-bottom: 0.15rem;
}
.ds-qbtn svg {
	width: 22px;
	height: 22px;
	fill: currentColor;
	flex-shrink: 0;
}
.ds-qbtn--wa em { color: #25D366; }
.ds-qbtn--tg em { color: #29B6F6; }
.ds-qbtn--ig em { color: #E1306C; }
.ds-qbtn--mail em { color: var(--ds-red); }
.ds-qbtn:hover {
	transform: translateX(4px);
	background: rgba(255, 255, 255, 0.98);
	border-color: rgba(225, 6, 0, 0.28);
	box-shadow: 0 10px 26px rgba(20, 21, 26, 0.08);
	color: var(--ds-ink);
}

/* Purchase kits -------------------------------------------------- */
.ds-kits {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.25rem;
}
.ds-kit {
	position: relative;
	padding: 2.25rem 2rem 2rem;
	background: var(--ds-white);
	border: 1px solid var(--ds-line);
	border-radius: var(--ds-radius-md);
	display: flex;
	flex-direction: column;
	gap: 1rem;
	transition: transform var(--ds-transition), box-shadow var(--ds-transition);
}
.ds-kit:hover { transform: translateY(-4px); box-shadow: var(--ds-shadow-md); }
.ds-kit--featured {
	background:
		radial-gradient(120% 100% at 0% 0%, rgba(225, 6, 0, 0.14) 0%, transparent 55%),
		linear-gradient(135deg, #FFFFFF 0%, #FAF7F2 55%, #FDECEC 100%);
	color: var(--ds-ink);
	border-color: rgba(225, 6, 0, 0.18);
}
.ds-kit--featured .ds-kit__title,
.ds-kit--featured .ds-kit__price { color: var(--ds-ink); }
.ds-kit--featured .ds-kit__list li { color: var(--ds-ink-2); }
.ds-kit--featured .ds-kit__list li::before { background: var(--ds-red); }
.ds-kit__tag {
	font-family: 'Roboto Condensed', 'Roboto', sans-serif;
	text-transform: uppercase;
	color: var(--ds-muted);
	font-weight: 700;
	font-size: 0.8125rem;
	letter-spacing: 0.16em;
}
.ds-kit__ribbon {
	position: absolute;
	top: 1.25rem;
	right: 1.25rem;
	background: var(--ds-red);
	color: var(--ds-white);
	font-family: 'Roboto Condensed', 'Roboto', sans-serif;
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	padding: 0.35rem 0.6rem;
	border-radius: 999px;
}
.ds-kit__title {
	font-family: 'Roboto Condensed', 'Roboto', sans-serif;
	font-size: 1.5rem;
	font-weight: 700;
	text-transform: uppercase;
	margin: 0;
	color: var(--ds-ink);
}
.ds-kit__list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	gap: 0.5rem;
}
.ds-kit__list li {
	color: var(--ds-ink-2);
	padding-left: 1.5rem;
	position: relative;
	font-size: 0.95rem;
}
.ds-kit__list li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0.55em;
	width: 10px;
	height: 2px;
	background: var(--ds-red);
}
.ds-kit__price {
	margin: 0.5rem 0 0.25rem;
	font-family: 'Roboto Condensed', 'Roboto', sans-serif;
	font-size: 1.35rem;
	font-weight: 700;
	color: var(--ds-ink);
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

/* Contacts page -------------------------------------------------- */
.ds-contacts__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
}
.ds-contacts__col {
	background: var(--ds-white);
	border: 1px solid var(--ds-line);
	border-radius: var(--ds-radius-md);
	padding: 2rem;
}
.ds-contacts__label {
	font-family: 'Roboto Condensed', 'Roboto', sans-serif;
	font-size: 1.1rem;
	text-transform: uppercase;
	margin: 0 0 0.75rem;
	color: var(--ds-ink);
}
.ds-contacts__text {
	color: var(--ds-ink-2);
	font-size: 0.95rem;
	margin: 0 0 1.25rem;
	line-height: 1.55;
}
.ds-contacts__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 0.5rem;
}
.ds-contacts__list li { color: var(--ds-ink-2); }
.ds-contacts__list strong {
	display: inline-block;
	min-width: 5.5rem;
	color: var(--ds-ink);
	font-family: 'Roboto Condensed', 'Roboto', sans-serif;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	font-size: 0.8125rem;
	margin-right: 0.5rem;
}
.ds-contacts__list a {
	text-decoration: none;
	color: var(--ds-ink-2);
	transition: color var(--ds-transition);
}
.ds-contacts__list a:hover { color: var(--ds-red); }

/* Page head ------------------------------------------------------ */
.ds-pagehead {
	position: relative;
	isolation: isolate;
}
/* Subtle dot grid (no gradients) for “effect” */
.ds-pagehead::before {
	content: "";
	position: absolute;
	top: -80px;
	left: -120px;
	width: 680px;
	height: 420px;
	pointer-events: none;
	z-index: 0;
	opacity: 0.38;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='72' height='72' viewBox='0 0 72 72'%3E%3Cg fill='none'%3E%3Ccircle cx='8' cy='10' r='1' fill='rgba(20,21,26,0.14)'/%3E%3Ccircle cx='36' cy='18' r='1' fill='rgba(20,21,26,0.10)'/%3E%3Ccircle cx='64' cy='12' r='1' fill='rgba(225,6,0,0.22)'/%3E%3Ccircle cx='18' cy='44' r='1' fill='rgba(20,21,26,0.10)'/%3E%3Ccircle cx='52' cy='52' r='1' fill='rgba(20,21,26,0.12)'/%3E%3Ccircle cx='10' cy='64' r='1' fill='rgba(225,6,0,0.18)'/%3E%3C/g%3E%3C/svg%3E");
	background-repeat: repeat;
	background-size: 72px 72px;
}
.ds-pagehead > * {
	position: relative;
	z-index: 1;
}

.ds-crumbs {
	margin: 0 0 0.75rem;
}
.ds-crumbs__list {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	gap: 0.35rem 0.6rem;
	padding: 0;
	margin: 0;
	color: var(--ds-muted);
	font-size: 0.8125rem;
}
.ds-crumbs__item {
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
}
.ds-crumbs__item + .ds-crumbs__item::before {
	content: "→";
	opacity: 0.6;
}
.ds-crumbs__link {
	color: inherit;
	text-decoration: none;
	border-bottom: 1px solid rgba(20, 21, 26, 0.14);
	transition: color var(--ds-transition), border-color var(--ds-transition);
}
.ds-crumbs__link:hover {
	color: var(--ds-ink);
	border-color: rgba(20, 21, 26, 0.35);
}
.ds-crumbs__current { color: var(--ds-ink-2); }

.ds-pagehead__inner {
	display: grid !important;
	grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
	grid-template-rows: auto auto;
	gap: 1.25rem 2rem !important;
	align-items: end !important;
}
.ds-pagehead__title {
	font-size: clamp(2.5rem, 6vw, 5rem) !important;
	line-height: 0.98 !important;
	letter-spacing: -0.02em !important;
	margin: 0 !important;
}
.ds-pagehead__lede { max-width: 40ch; color: var(--ds-ink-2); margin: 0; }
.ds-pagehead__rule { margin-top: 2rem; height: 1px; background: var(--ds-line); }

.ds-pagehead__heading {
	position: relative;
	grid-column: 1;
	grid-row: 1;
	min-width: 0;
}
.ds-pagehead__lede {
	grid-column: 1;
	grid-row: 2;
	max-width: 52ch;
	min-width: 0;
}
/* Card sits on the right, spanning heading + lede rows */
.ds-pagehead__card {
	grid-column: 2;
	grid-row: 1 / span 2;
	align-self: start;
	justify-self: end;
	min-width: 0;
	max-width: 90%;
}

/* “Sonar” ornament — no gradients, just strokes */
.ds-pagehead__ornament {
	position: absolute;
	left: -18px;
	top: -14px;
	width: 420px;
	height: 220px;
	pointer-events: none;
	overflow: hidden;
	z-index: -1;
	opacity: 0.95;
}
.ds-pagehead__ornament span {
	position: absolute;
	border-radius: 999px;
	border: 1px solid rgba(225, 6, 0, 0.18);
	transform-origin: 20% 20%;
	animation: ds-pagehead-pulse 5.2s ease-in-out infinite;
	will-change: transform, opacity;
}
.ds-pagehead__ornament span:nth-child(1) {
	width: 150px;
	height: 150px;
	left: 10px;
	top: 14px;
	animation-delay: 0ms;
	animation-duration: 4.8s;
	border-color: rgba(225, 6, 0, 0.22);
}
.ds-pagehead__ornament span:nth-child(2) {
	width: 240px;
	height: 240px;
	left: -12px;
	top: -18px;
	animation-delay: 480ms;
	animation-duration: 5.6s;
	border-color: rgba(225, 6, 0, 0.16);
}
.ds-pagehead__ornament span:nth-child(3) {
	width: 340px;
	height: 340px;
	left: -62px;
	top: -70px;
	animation-delay: 920ms;
	animation-duration: 6.4s;
	border-color: rgba(20, 21, 26, 0.10);
}
@keyframes ds-pagehead-pulse {
	0%, 100% { transform: translate3d(0, 0, 0) scale(1) rotate(0deg); opacity: 0.7; }
	50% { transform: translate3d(10px, -6px, 0) scale(1.055) rotate(-1.2deg); opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
	.ds-pagehead__ornament span { animation: none; }
}

/* Context card (rental/purchase/contact) */
.ds-pagehead__card {
	flex: 0 0 320px;
	max-width: 360px;
	width: 90%;
	overflow: hidden; /* keep CTA perfectly inside rounded card */
	border-radius: var(--ds-radius-md);
	border: 1px solid rgba(232, 228, 220, 0.95);
	background: rgba(255, 255, 255, 0.78);
	backdrop-filter: saturate(160%) blur(10px);
	-webkit-backdrop-filter: saturate(160%) blur(10px);
	box-shadow: var(--ds-shadow-sm);
	padding: 1.1rem 1.1rem 1.05rem;
	display: grid;
	gap: 0.85rem;
}
.ds-pagehead__cardLabel {
	font-family: 'Roboto Condensed', 'Roboto', sans-serif;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.18em;
	font-size: 0.75rem;
	color: var(--ds-muted);
	display: inline-flex;
	align-items: center;
	gap: 0.55rem;
}
.ds-pagehead__cardLabel::before {
	content: "";
	width: 7px;
	height: 7px;
	border-radius: 999px;
	background: var(--ds-red);
	box-shadow: 0 0 0 4px rgba(225, 6, 0, 0.10);
}
.ds-pagehead__cardTitle {
	display: block;
	font-size: 1.25rem;
	letter-spacing: -0.02em;
	line-height: 1.15;
	margin-top: 0.25rem;
}
.ds-pagehead__cardList {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	gap: 0.35rem;
	color: var(--ds-ink-2);
	font-size: 0.9375rem;
}
.ds-pagehead__cardList li {
	display: flex;
	align-items: baseline;
	gap: 0.6rem;
}
.ds-pagehead__cardList li::before {
	content: "";
	width: 8px;
	height: 8px;
	border-radius: 2px;
	background: rgba(225, 6, 0, 0.18);
	transform: translateY(-1px) rotate(45deg);
	flex: 0 0 auto;
}
.ds-pagehead__cardCta {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
	padding: 0.9rem 1.05rem;
	border-radius: 999px;
	background: var(--ds-ink);
	color: var(--ds-white);
	text-decoration: none;
	font-family: 'Roboto Condensed', 'Roboto', sans-serif;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	font-size: 0.875rem;
	transition: transform var(--ds-transition), background-color var(--ds-transition), box-shadow var(--ds-transition);
}
.ds-pagehead__cardCta:hover {
	background: var(--ds-red);
	transform: translateY(-2px);
	box-shadow: 0 10px 24px rgba(225, 6, 0, 0.22);
}

/* Footer --------------------------------------------------------- */
.ds-footer {
	position: relative;
	overflow: hidden;
	isolation: isolate;
	/* Full-bleed out of constrained parent. */
	left: 50%;
	right: 50%;
	margin-left: -50vw !important;
	margin-right: -50vw !important;
	width: 100vw !important;
	max-width: 100vw !important;
	padding-left: max(1.5rem, calc(50vw - 660px)) !important;
	padding-right: max(1.5rem, calc(50vw - 660px)) !important;
	padding-top: clamp(3.5rem, 6vw, 5.5rem) !important;
	padding-bottom: clamp(2rem, 3vw, 3rem) !important;
	background:
		radial-gradient(42% 62% at 80% 40%, rgba(225, 6, 0, 0.11) 0%, transparent 68%),
		radial-gradient(55% 45% at 8% 102%, rgba(58, 61, 69, 0.05) 0%, transparent 60%),
		linear-gradient(180deg, #FDFBF6 0%, #F7F1E4 100%);
	color: var(--ds-ink);
	border-top: 1px solid rgba(20, 21, 26, 0.08);
}
.ds-footer::before {
	content: '';
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
	background-image:
		linear-gradient(rgba(20, 21, 26, 0.045) 1px, transparent 1px),
		linear-gradient(90deg, rgba(20, 21, 26, 0.045) 1px, transparent 1px);
	background-size: 72px 72px;
	mask-image: radial-gradient(70% 80% at 50% 30%, #000 20%, transparent 85%);
	-webkit-mask-image: radial-gradient(70% 80% at 50% 30%, #000 20%, transparent 85%);
	opacity: 0.4;
}
.ds-footer > * {
	max-width: 1320px;
	margin-inline: auto;
	position: relative;
	z-index: 1;
}
.ds-footer__grid { gap: 2rem !important; }
.ds-footer__kicker {
	font-family: 'Roboto Condensed', 'Roboto', sans-serif !important;
	text-transform: uppercase !important;
	font-size: 1.5rem !important;
	margin: 0 0 1rem !important;
	color: var(--ds-ink);
}
.ds-footer__tagline { max-width: 36ch; color: var(--ds-ink-2); }
.ds-footer__label {
	margin: 0 0 1rem !important;
	font-family: 'Roboto Condensed', 'Roboto', sans-serif !important;
	text-transform: uppercase !important;
	font-size: 0.8125rem !important;
	letter-spacing: 0.2em !important;
	color: var(--ds-muted);
}
.ds-footer__list {
	list-style: none !important;
	padding: 0 !important;
	margin: 0 !important;
	display: grid;
	gap: 0.5rem;
}
.ds-footer__list a {
	color: inherit;
	text-decoration: none;
	transition: color var(--ds-transition);
}
.ds-footer__list a:hover { color: var(--ds-red); }
.ds-footer__rule {
	margin: 2.5rem 0 !important;
	position: relative;
	z-index: 1;
	background: rgba(20, 21, 26, 0.08);
	border: none;
	height: 1px;
}
.ds-footer__bottom { position: relative; z-index: 1; }
.ds-footer__note { margin: 0 !important; font-size: 0.875rem; color: var(--ds-muted); }
.ds-footer__note a { color: inherit; text-decoration: underline; text-underline-offset: 3px; }

/* Mobile quick-contacts sticky bar ------------------------------ */
.ds-mobile-cta {
	display: none;
	position: fixed;
	left: 50%;
	bottom: 1rem;
	transform: translateX(-50%) translateY(120%);
	z-index: 60;
	width: calc(100% - 1.5rem);
	max-width: 520px;
	padding: 0.5rem;
	background: rgba(20, 21, 26, 0.94);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border-radius: 999px;
	border: 1px solid rgba(255, 255, 255, 0.08);
	box-shadow: 0 12px 36px rgba(0, 0, 0, 0.35);
	opacity: 0;
	transition: transform 420ms var(--ds-ease), opacity 420ms var(--ds-ease);
	justify-content: space-between;
	align-items: center;
	gap: 0.35rem;
}
body.ds-mcta-visible .ds-mobile-cta {
	transform: translateX(-50%) translateY(0);
	opacity: 1;
}
.ds-mobile-cta__link {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.45rem;
	color: var(--ds-white);
	text-decoration: none;
	padding: 0.7rem 0.75rem;
	border-radius: 999px;
	font-family: 'Roboto Condensed', 'Roboto', sans-serif;
	font-weight: 700;
	font-size: 0.8125rem;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	transition: background-color var(--ds-transition);
}
.ds-mobile-cta__link svg {
	width: 18px;
	height: 18px;
	fill: currentColor;
}
.ds-mobile-cta__link--ig:hover { background: #E1306C; color: var(--ds-white); }
.ds-mobile-cta__link--mail:hover { background: var(--ds-red); color: var(--ds-white); }

/* Tower ---------------------------------------------------------- */
.ds-tower {
	display: block;
	width: 100%;
	line-height: 0;
}
.ds-tower__svg {
	width: 100%;
	height: auto;
	display: block;
	filter: drop-shadow(0 10px 30px rgba(225, 6, 0, 0.08));
}
.ds-tower__bar {
	transform-box: fill-box;
	transform-origin: center bottom;
	transform: scaleY(0);
	opacity: 0;
	animation: ds-spire-rise 900ms var(--ds-ease) var(--ds-bar-delay, 0s) forwards;
	stroke: rgba(225, 6, 0, 0.28);
	stroke-width: 1;
	vector-effect: non-scaling-stroke;
	shape-rendering: geometricPrecision;
}
/* Breathing loop only on hero variant */
.ds-tower--hero .ds-tower__bar {
	animation:
		ds-spire-rise 900ms var(--ds-ease) var(--ds-bar-delay, 0s) forwards,
		ds-spire-breathe 4.5s ease-in-out 1800ms infinite;
}
.ds-tower--divider {
	max-height: 60px;
	overflow: hidden;
}
.ds-tower--footer .ds-tower__svg {
	filter: none;
}

@keyframes ds-spire-rise {
	0%   { transform: scaleY(0); opacity: 0; }
	60%  { opacity: 1; }
	100% { transform: scaleY(1); opacity: 1; }
}
@keyframes ds-spire-breathe {
	0%, 100% { transform: scaleY(1); }
	50%      { transform: scaleY(1.012); }
}

/* Scroll reveal -------------------------------------------------- */
[data-reveal],
.ds-usecase,
.ds-features__media {
	opacity: 0;
	transform: translateY(18px);
	transition: opacity 600ms var(--ds-ease), transform 600ms var(--ds-ease);
	will-change: opacity, transform;
}
[data-reveal].is-visible,
.ds-usecase.is-visible,
.ds-features__media.is-visible {
	opacity: 1;
	transform: translateY(0);
}

/* Brand mark in header ------------------------------------------- */
.ds-brand {
	display: flex;
	flex-direction: column;
	line-height: 1;
	gap: 0.25rem;
	user-select: none;
}
.ds-brand__name {
	font-family: 'Roboto Condensed', 'Roboto', sans-serif;
	font-weight: 700;
	font-size: 1.15rem;
	color: var(--ds-ink);
	letter-spacing: -0.01em;
	line-height: 1;
}
.ds-brand__name em {
	font-style: normal;
	color: var(--ds-red);
}
.ds-brand__sub {
	font-family: 'Roboto Condensed', 'Roboto', sans-serif;
	font-weight: 700;
	font-size: 0.625rem;
	color: var(--ds-muted);
	text-transform: uppercase;
	letter-spacing: 0.32em;
	line-height: 1;
}

/* Header quick-contact icons ------------------------------------- */
.ds-header__quick {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
}
.ds-header__iconbtn {
	width: 38px;
	height: 38px;
	display: grid;
	place-items: center;
	border-radius: 999px;
	color: var(--ds-ink);
	border: 1px solid rgba(232, 228, 220, 0.95);
	background: rgba(255, 255, 255, 0.75);
	transition: transform var(--ds-transition), background-color var(--ds-transition), color var(--ds-transition), border-color var(--ds-transition);
}
.ds-header__iconbtn svg {
	width: 16px;
	height: 16px;
	fill: currentColor;
}
.ds-header__iconbtn:hover {
	transform: translateY(-2px);
	color: var(--ds-white);
}
.ds-header__iconbtn--ig:hover { background: #E1306C; border-color: #E1306C; }
.ds-header__iconbtn--mail:hover { background: var(--ds-red); border-color: var(--ds-red); }

/* Eyebrow with dot ---------------------------------------------- */
.ds-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
}
.ds-eyebrow__dot {
	display: inline-block;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--ds-red);
	box-shadow: 0 0 0 0 rgba(225, 6, 0, 0.55);
	animation: ds-pulse 2.2s ease-out infinite;
}
@keyframes ds-pulse {
	0%   { box-shadow: 0 0 0 0   rgba(225, 6, 0, 0.55); }
	70%  { box-shadow: 0 0 0 12px rgba(225, 6, 0, 0); }
	100% { box-shadow: 0 0 0 0   rgba(225, 6, 0, 0); }
}

/* Hero checklist ------------------------------------------------- */
.ds-hero__pros {
	list-style: none;
	padding: 0;
	margin: 1.25rem 0 0;
	display: grid;
	gap: 0.5rem;
}
.ds-hero__pros li {
	position: relative;
	padding-left: 1.6rem;
	color: var(--ds-ink-2);
	font-size: 0.9rem;
}
.ds-hero__pros li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.3em;
	width: 18px;
	height: 18px;
	border-radius: 50%;
	background: var(--ds-red);
}
.ds-hero__pros li::after {
	content: "";
	position: absolute;
	left: 5px;
	top: 0.65em;
	width: 8px;
	height: 4px;
	border-left: 2px solid #fff;
	border-bottom: 2px solid #fff;
	transform: rotate(-45deg);
}

/* Card with photo on top (segments) ----------------------------- */
.ds-card--photo {
	padding: 0 !important;
	overflow: hidden;
	gap: 0 !important;
	min-height: 0 !important;
}
.ds-card--photo .ds-card__media {
	position: relative;
	aspect-ratio: 16 / 10;
	background:
		radial-gradient(120% 80% at 100% 0%, rgba(225, 6, 0, 0.15) 0%, transparent 55%),
		linear-gradient(135deg, #FDECEC 0%, #FAF7F2 55%, #F5E9E6 100%);
	display: grid;
	place-items: center;
	overflow: hidden;
	transition: transform 600ms var(--ds-ease);
}
.ds-card--photo:hover .ds-card__media { transform: scale(1.02); }
.ds-card--photo .ds-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.ds-card__chip {
	font-family: 'Roboto Condensed', 'Roboto', sans-serif;
	font-size: 0.7rem;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--ds-red);
	background: rgba(255, 255, 255, 0.78);
	padding: 0.4rem 0.8rem;
	border-radius: 999px;
	border: 1px solid rgba(225, 6, 0, 0.2);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	opacity: 0.85;
}
.ds-card__tag {
	position: absolute;
	top: 1rem;
	left: 1rem;
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	font-family: 'Roboto Condensed', 'Roboto', sans-serif;
	font-size: 0.7rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.2em;
	color: var(--ds-ink);
	background: rgba(255, 255, 255, 0.92);
	padding: 0.4rem 0.8rem;
	border-radius: 999px;
	border: 1px solid rgba(20, 21, 26, 0.08);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
}
.ds-card__tag::before {
	content: "";
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--ds-red);
	flex-shrink: 0;
}
.ds-card__body {
	padding: 1.75rem 1.75rem 1.75rem;
	display: flex;
	flex-direction: column;
	gap: 0.55rem;
	flex: 1;
}

/* Blocks harmonization ------------------------------------------- */
a { color: inherit; }
.wp-block-post-title a { text-decoration: none; }

/* Tablet / small desktop ---------------------------------------- */
@media (max-width: 1300px) {
	/* Header: keep a single clean row; switch nav to burger earlier. */
	.ds-header { padding-top: 0.75rem !important; padding-bottom: 0.75rem !important; }
	.ds-header__inner { flex-wrap: nowrap !important; gap: 1rem !important; }

	/* Force the "mobile" nav UI (burger + overlay) on tablet widths. */
	.ds-nav .wp-block-navigation__responsive-container-open { display: inline-flex !important; }
	/* Close button must appear ONLY inside the open overlay. */
	.ds-nav .wp-block-navigation__responsive-container-close { display: none !important; }
	.ds-header__inner .ds-nav .wp-block-navigation__responsive-container,
	.ds-nav .wp-block-navigation__responsive-container { display: none !important; }
	.ds-header__inner .ds-nav .wp-block-navigation__responsive-container.is-menu-open,
	.ds-nav .wp-block-navigation__responsive-container.is-menu-open { display: block !important; }

	/* When overlay is open, hide the "burger" button to avoid double icons. */
	.ds-nav.wp-block-navigation.has-modal-open .wp-block-navigation__responsive-container-open,
	.ds-nav .wp-block-navigation.has-modal-open .wp-block-navigation__responsive-container-open {
		display: none !important;
	}

	/* Full-screen, clean overlay (prevents header/actions showing beside the menu). */
	.ds-nav .wp-block-navigation__responsive-container.is-menu-open {
		position: fixed;
		inset: 0;
		z-index: 9999;
		height: 40dvh;
		background: rgba(255, 255, 255, 0.98);
		backdrop-filter: blur(12px);
		-webkit-backdrop-filter: blur(12px);
	}
	.ds-nav .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-dialog {
		position: relative;
		height: 100%;
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: flex-start;
	}
	.ds-nav .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-close {
		display: inline-flex !important;
		position: absolute;
		top: 1.25rem;
		right: 1.25rem;
		border-radius: 999px;
		border: 1px solid rgba(232, 228, 220, 0.9);
		background: rgba(255, 255, 255, 0.85);
		padding: 0.55rem 0.75rem;
	}
	.ds-nav .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-close svg {
		width: 22px;
		height: 22px;
	}
	.ds-nav .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__container {
		width: 100%;
		align-items: center;
		justify-content: center !important;
	}
	.ds-nav .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-item {
		justify-content: center;
	}

	.ds-pricing__grid,
	.ds-kits,
	.ds-cases__grid,
	.ds-portfolio__grid,
	.ds-contacts__grid,
	.ds-usecases__grid { grid-template-columns: repeat(2, 1fr) !important; }
	.ds-privileges { grid-template-columns: 1fr !important; }
	.ds-steps__list { grid-template-columns: repeat(2, 1fr); gap: 2rem 1.5rem; }
	.ds-steps__list::before { display: none; }
	.ds-contactband__inner { grid-template-columns: 1fr; }
	.ds-segments__grid { grid-template-columns: 1fr 1fr !important; }

	.ds-hero {
		grid-template-columns: minmax(0, 1fr) minmax(0, 340px) !important;
		column-gap: 1.5rem !important;
	}
	.ds-hero__body { max-width: 100% !important; }
	.ds-hero__bg {
		max-width: 340px !important;
		aspect-ratio: 420 / 600;
	}
	.ds-hero__stage .ds-tower { width: 88%; }
	.ds-badge { padding: 0.5rem 0.7rem; }
	.ds-badge b { font-size: 1.1rem; }
	.ds-badge span { font-size: 0.58rem; letter-spacing: 0.18em; }
	.ds-badge--1 { top: 22%; left: -4%; }
	.ds-badge--2 { top: 48%; right: -6%; }
	.ds-badge--3 { top: 72%; left: 0%; }
}

@media (max-width: 720px) {
	.ds-mobile-cta { display: flex; }
	body.admin-bar .ds-mobile-cta { bottom: 4rem; }

	/* Header — tighten everything so 375–400px viewports don't clip. */
	.ds-header {
		padding-left: 1rem !important;
		padding-right: 1rem !important;
	}
	.ds-header__cta { display: none !important; }
	.ds-header__inner {
		justify-content: space-between !important;
		gap: 0.5rem !important;
		min-height: 48px;
	}
	.ds-header__brand { gap: 0.5rem !important; min-width: 0; flex-shrink: 1; }
	.ds-site-logo,
	.ds-site-logo img,
	.wp-block-site-logo img {
		max-width: 56px !important;
		width: 56px !important;
		height: auto !important;
	}
	.ds-brand { display: none; }
	.ds-header__actions { gap: 0.4rem !important; }
	.ds-lang {
		padding: 0.15rem;
		gap: 0.15rem;
	}
	.ds-lang__pill {
		padding: 0.35rem 0.5rem;
		font-size: 0.72rem;
	}

	.ds-section__head { flex-direction: column !important; align-items: flex-start !important; gap: 1rem !important; }
	.ds-section__heading h2 br { display: none; }
	.ds-hero__title br { display: none; }

	.ds-pricing__grid,
	.ds-kits,
	.ds-cases__grid,
	.ds-portfolio__grid,
	.ds-contacts__grid,
	.ds-usecases__grid { grid-template-columns: 1fr !important; }
	.ds-steps__list { grid-template-columns: 1fr; gap: 1.5rem; }
	.ds-privileges__hero { padding: 2rem; }
	.ds-privileges__grid { grid-template-columns: 1fr; }
	.ds-hero__stats { gap: 1.5rem; }
	.ds-stat { min-width: 45%; }

	.ds-segments__grid { grid-template-columns: 1fr !important; }

	/* Mobile: single column, tower becomes a soft background. */
	.ds-hero {
		grid-template-columns: 1fr !important;
		padding-top: clamp(3rem, 10vw, 4.5rem) !important;
		padding-bottom: clamp(3rem, 10vw, 4.5rem) !important;
	}
	.ds-hero__body {
		grid-column: 1 !important;
		grid-row: 1 !important;
		max-width: 100% !important;
		margin: 0 !important;
		z-index: 3 !important;
	}
	.ds-hero__bg {
		position: absolute !important;
		inset: 0 !important;
		grid-column: auto !important;
		grid-row: auto !important;
		width: auto !important;
		max-width: none !important;
		aspect-ratio: auto !important;
		justify-self: stretch !important;
		align-self: stretch !important;
		opacity: 0.22 !important;
		z-index: 0 !important;
		pointer-events: none;
	}
	/* Stage: bottom + right edge of hero; width from left inset so the
	   silhouette reads “into” the viewport corner without a floating box. */
	.ds-hero__stage {
		position: absolute !important;
		bottom: 0 !important;
		top: auto !important;
		right: 0 !important;
		left: clamp(0.5rem, 14vw, 5rem) !important;
		width: auto !important;
		height: auto !important;
		aspect-ratio: 420 / 700 !important;
		transform: none !important;
	}
	.ds-hero__stage .ds-tower {
		width: 100% !important;
		max-width: none !important;
		height: 100% !important;
		bottom: 0 !important;
		top: 0 !important;
		left: 50% !important;
		transform: translateX(-50%) !important;
		opacity: 1;
	}
	.ds-hero__rings span { border-color: rgba(225, 6, 0, 0.14) !important; }
	.ds-hero__rings span:nth-child(1),
	.ds-hero__rings span:nth-child(2),
	.ds-hero__rings span:nth-child(3) { top: 60%; }
	.ds-hero__badges { display: none !important; }

	.ds-header__quick { display: none; }

	.ds-pagehead__inner {
		grid-template-columns: minmax(0, 1fr) !important;
		grid-template-rows: auto auto auto;
		align-items: start !important;
	}
	.ds-pagehead__heading { grid-column: 1; grid-row: 1; }
	.ds-pagehead__lede { grid-column: 1; grid-row: 2; max-width: 60ch; }
	.ds-pagehead__card {
		grid-column: 1;
		grid-row: 3;
		justify-self: stretch;
		min-width: 0;
		max-width: none;
		width: 90%;
	}
	.ds-pagehead__ornament {
		left: -26px;
		top: -30px;
		width: 360px;
		height: 190px;
		opacity: 0.8;
	}
}

/* Forms (Fluent Forms) ------------------------------------------- */
.ds-request__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
	gap: clamp(1.5rem, 3vw, 2.75rem);
	align-items: start;
}
.ds-request__title {
	font-family: 'Roboto Condensed', 'Roboto', sans-serif;
	font-weight: 700;
	text-transform: uppercase;
	font-size: clamp(2rem, 4vw, 3.25rem);
	color: var(--ds-ink);
	line-height: 1;
	margin: 0 0 1rem;
	letter-spacing: -0.01em;
}
.ds-request__text {
	color: var(--ds-ink-2);
	font-size: 1.0625rem;
	margin: 0 0 1.5rem;
	max-width: 44ch;
}
.ds-request__bullets {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	gap: 0.75rem;
}
.ds-request__bullets li {
	display: flex;
	align-items: baseline;
	gap: 0.6rem;
	color: var(--ds-ink-2);
	font-size: 1.0625rem;
}
.ds-request__bullets li::before {
	content: "";
	width: 8px;
	height: 8px;
	border-radius: 2px;
	background: rgba(225, 6, 0, 0.18);
	transform: translateY(-1px) rotate(45deg);
	flex: 0 0 auto;
}

.ds-formcard {
	background: var(--ds-white);
	border: 1px solid var(--ds-line);
	border-radius: var(--ds-radius-md);
	box-shadow: var(--ds-shadow-sm);
	padding: 2.25rem 2rem 2rem;
	transition: border-color var(--ds-transition), box-shadow var(--ds-transition);
}
.ds-formcard:focus-within {
	border-color: rgba(225, 6, 0, 0.22);
	box-shadow: 0 10px 34px rgba(20, 21, 26, 0.08), 0 2px 6px rgba(20, 21, 26, 0.04);
}
.ds-formcard__head {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	gap: 0.75rem;
	margin-bottom: 1rem;
	padding-bottom: 1rem;
	border-bottom: 1px solid var(--ds-line);
}
.ds-formcard__title {
	font-family: 'Roboto Condensed', 'Roboto', sans-serif;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	font-size: 0.875rem;
}
.ds-formcard__hint { color: var(--ds-muted); font-size: 0.9rem; }

/* Fluent Forms: normalize controls inside the ds-form wrapper */
.ds-form--fluent .fluentform,
.ds-form--fluent .ff-el-group,
.ds-form--fluent .ff-el-input--content,
.ds-form--fluent .ff-el-form-control { font-family: inherit; }

.ds-form--fluent .ff-el-group { margin-bottom: 0.9rem; }
.ds-form--fluent .ff-el-group:last-child { margin-bottom: 0; }
.ds-form--fluent .ff-el-group > label {
	display: inline-block;
	margin: 0 0 0.35rem;
	font-family: 'Roboto Condensed', 'Roboto', sans-serif;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	font-size: 0.78rem;
	color: var(--ds-ink);
}
.ds-form--fluent .ff-el-form-control,
.ds-form--fluent input[type="text"],
.ds-form--fluent input[type="email"],
.ds-form--fluent input[type="tel"],
.ds-form--fluent input[type="number"],
.ds-form--fluent textarea,
.ds-form--fluent select {
	width: 100%;
	background: #fff;
	border: 1.5px solid rgba(20, 21, 26, 0.14);
	border-radius: 12px;
	padding: 0.85rem 1rem;
	color: var(--ds-ink);
	box-shadow: 0 1px 0 rgba(20, 21, 26, 0.02);
	transition: border-color var(--ds-transition), box-shadow var(--ds-transition), transform var(--ds-transition);
}
.ds-form--fluent textarea { min-height: 120px; resize: vertical; }
.ds-form--fluent .ff-el-form-control:focus,
.ds-form--fluent input:focus,
.ds-form--fluent textarea:focus,
.ds-form--fluent select:focus {
	outline: none;
	border-color: rgba(225, 6, 0, 0.55);
	box-shadow: 0 0 0 6px rgba(225, 6, 0, 0.12);
}
.ds-form--fluent .ff-el-form-control::placeholder,
.ds-form--fluent input::placeholder,
.ds-form--fluent textarea::placeholder { color: rgba(58, 61, 69, 0.55); }

.ds-form--fluent .ff-btn {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	gap: 0.5rem !important;
	font-family: 'Roboto Condensed', 'Roboto', sans-serif !important;
	font-weight: 700 !important;
	text-transform: uppercase !important;
	letter-spacing: 0.08em !important;
	font-size: 0.9375rem !important;
	padding: 1rem 1.75rem !important;
	border-radius: 999px !important;
	border: 0 !important;
	background: var(--ds-red) !important;
	color: var(--ds-white) !important;
	cursor: pointer !important;
	width: 100% !important;
	transition: transform var(--ds-transition), background-color var(--ds-transition), box-shadow var(--ds-transition) !important;
}
.ds-form--fluent .ff-btn:hover {
	background: var(--ds-red-deep) !important;
	transform: translateY(-2px) !important;
	box-shadow: 0 10px 24px rgba(225, 6, 0, 0.3) !important;
}
.ds-form--fluent .ff-btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none; box-shadow: none; }

.ds-form--fluent .ff-message-success {
	border-radius: 16px;
	padding: 0.9rem 1rem;
	border: 1px solid rgba(16, 185, 129, 0.35);
	background: rgba(16, 185, 129, 0.08);
	color: var(--ds-ink);
}
.ds-form--fluent .ff-message-errors {
	border-radius: 16px;
	padding: 0.9rem 1rem;
	border: 1px solid rgba(239, 68, 68, 0.35);
	background: rgba(239, 68, 68, 0.08);
	color: var(--ds-ink);
}

.ds-form--fluent .ff-el-help-text {
	color: var(--ds-muted);
	font-size: 0.9rem;
	margin-top: 0.35rem;
}
.ds-form--fluent .ff-el-error,
.ds-form--fluent .ff-error {
	color: rgb(185, 28, 28);
	font-size: 0.9rem;
	margin-top: 0.35rem;
}
.ds-form--fluent .ff_submit_btn_wrapper { margin-top: 1.1rem; }

@media (max-width: 980px) {
	.ds-request__grid { grid-template-columns: 1fr; }
}

/* Reduced motion ------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
	* {
		animation-duration: 0.001ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.001ms !important;
	}
	html { scroll-behavior: auto; }
	[data-reveal],
	.ds-usecase,
	.ds-features__media { opacity: 1; transform: none; }
	.ds-tower__bar { transform: scaleY(1); opacity: 1; }
}
