/*
 * Front-page sections: hero, feature row, journal.
 * ---------------------------------------------------------------------------
 * Structure only. Every colour, radius and spacing value reads a theme token
 * with a fallback, so these widgets take on whichever palette the site is
 * running -- including a demo template that swaps the whole palette underneath
 * them -- and still look deliberate on a site that has no Urartu theme at all.
 *
 * The fallbacks are not guesses at the theme's values; they are what these
 * sections should look like with no theme tokens present.
 */

/* ── Hero ─────────────────────────────────────────────────────────────────── */

.urartu-hero {
	position: relative;
	display: flex;
	isolation: isolate;
	overflow: hidden;
	padding: clamp(24px, 5vw, 72px);
	border-radius: var(--u-media-radius, 0);
}

/* Scoped to the hero rather than written as a bare class: Elementor's own
   frontend.min.css carries '.elementor img { height: auto }' at specificity
   101, which beat a single class by one point — the photograph then sized
   itself by its aspect ratio and grew to 2534px inside a 720px hero. Two
   classes settle it whichever stylesheet loads last. */
.urartu-hero .urartu-hero__img {
	position: absolute;
	inset: 0;
	z-index: -2;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/*
 * The veil is a separate element rather than a gradient on the image, because
 * its opacity is a control the editor drags -- animating or restating a
 * background-image every time would repaint the photograph.
 */
.urartu-hero__veil {
	position: absolute;
	inset: 0;
	z-index: -1;
	background-color: #000;
	opacity: .25;
	pointer-events: none;
}

.urartu-hero__inner {
	display: flex;
	flex-direction: column;
	gap: var(--sp-4, 16px);
	max-width: 560px;
	color: #fff;
}

.urartu-hero__eyebrow {
	margin: 0;
	opacity: .85;
}

.urartu-hero__title {
	margin: 0;
	/* The hero voice comes from the theme when there is one; a system serif is
	   a closer fallback than the browser's default sans for a display line. */
	font-family: var(--u-font-display, Georgia, "Times New Roman", serif);
	font-weight: 400;
	font-size: var(--fs-hero, clamp(2.25rem, 1.4rem + 3.6vw, 4.5rem));
	line-height: 1.04;
	letter-spacing: .01em;
	color: inherit;
	text-wrap: balance;
}

.urartu-hero__text {
	margin: 0;
	max-width: 46ch;
	font-size: var(--fs-lead, 1.0625rem);
	line-height: 1.6;
	opacity: .92;
}

.urartu-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: var(--sp-3, 12px);
	margin-top: var(--sp-2, 8px);
}

.urartu-hero__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	/* 48px clears the WCAG target minimum with room to spare, and matches the
	   height the theme's own buttons use. */
	min-height: 48px;
	padding-inline: var(--sp-6, 24px);
	border-radius: var(--u-btn-radius, 2px);
	font-family: var(--u-font-body, inherit);
	font-size: var(--u-btn-fs, 15px);
	font-weight: var(--u-btn-fw, 600);
	text-decoration: none;
	transition:
		background-color 220ms cubic-bezier(.2, 0, 0, 1),
		color 220ms cubic-bezier(.2, 0, 0, 1),
		border-color 220ms cubic-bezier(.2, 0, 0, 1);
}

.urartu-hero__btn--primary {
	background-color: var(--u-btn-bg, #2A6F62);
	color: var(--u-btn-fg, #fff);
	border: 1px solid transparent;
}

.urartu-hero__btn--primary:hover,
.urartu-hero__btn--primary:focus-visible {
	background-color: var(--u-btn-bg-h, #235D52);
	color: var(--u-btn-fg-h, #fff);
}

/* The second route is genuinely secondary: it keeps the size and gives up the
   fill, so the two do not ask for the same attention. */
.urartu-hero__btn--ghost {
	background-color: transparent;
	color: inherit;
	border: 1px solid currentColor;
}

/* On hover it takes the same fill as the primary button rather than filling
   with currentColor: filling with the label's own colour leaves the label
   invisible, and there is no second colour on a hero to flip it to that is
   known at author time. Borrowing the button tokens keeps it readable on any
   photograph and on any palette. */
.urartu-hero__btn--ghost:hover,
.urartu-hero__btn--ghost:focus-visible {
	background-color: var(--u-btn-bg, #2A6F62);
	border-color: var(--u-btn-bg, #2A6F62);
	color: var(--u-btn-fg, #fff);
}

/* ── Feature row ──────────────────────────────────────────────────────────── */

.urartu-features {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 32px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.urartu-features__cell {
	margin: 0;
}

.urartu-features__item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: var(--sp-3, 12px);
	height: 100%;
	color: inherit;
	text-decoration: none;
}

.urartu-features--inline .urartu-features__item {
	flex-direction: row;
	align-items: flex-start;
	text-align: start;
}

.urartu-features__icon {
	display: inline-flex;
	flex: 0 0 auto;
	align-items: center;
	justify-content: center;
	font-size: 26px;
	line-height: 1;
	color: var(--u-btn-bg, #2A6F62);
}

.urartu-features__icon svg {
	width: 1em;
	height: 1em;
	fill: currentColor;
}

.urartu-features__body {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.urartu-features__title {
	font-family: var(--u-font-body, inherit);
	font-size: var(--fs-body, 1rem);
	font-weight: 600;
	line-height: 1.35;
	color: var(--u-surface-fg, #241F1C);
}

.urartu-features__text {
	font-size: var(--fs-small, .875rem);
	line-height: 1.5;
	color: var(--u-muted, rgba(36, 31, 28, .62));
}

/* A rule between items, not around them: the last cell must not draw one or
   the row ends in a stray line. Logical properties so it mirrors under RTL. */
.urartu-features--ruled .urartu-features__cell + .urartu-features__cell {
	border-inline-start: 1px solid var(--u-border, rgba(36, 31, 28, .14));
	padding-inline-start: var(--sp-5, 20px);
}

/* Once the row wraps to a single column the vertical rule is meaningless --
   it would sit above each item rather than between columns. */
@media (max-width: 767px) {

	.urartu-features--ruled .urartu-features__cell + .urartu-features__cell {
		border-inline-start: 0;
		border-block-start: 1px solid var(--u-border, rgba(36, 31, 28, .14));
		padding-inline-start: 0;
		padding-block-start: var(--sp-5, 20px);
	}
}

/* ── Journal ──────────────────────────────────────────────────────────────── */

.urartu-journal__heading {
	margin: 0 0 var(--sp-6, 24px);
	font-family: var(--u-font-display, Georgia, serif);
	font-weight: 400;
	font-size: var(--fs-title, clamp(1.5rem, 1.32rem + .8vw, 2.25rem));
	line-height: 1.12;
	letter-spacing: .015em;
	color: var(--u-page-fg, #241F1C);
}

.urartu-journal__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 28px;
}

.urartu-journal__card {
	display: flex;
	flex-direction: column;
	background-color: var(--u-surface, #fff);
	border: 1px solid var(--u-border, rgba(36, 31, 28, .14));
	border-radius: var(--u-media-radius, 0);
	overflow: hidden;
	transition: box-shadow 220ms cubic-bezier(.2, 0, 0, 1);
}

.urartu-journal__card:hover,
.urartu-journal__card:focus-within {
	box-shadow: var(--u-shadow-2, 0 2px 4px rgba(0, 0, 0, .06), 0 8px 24px rgba(0, 0, 0, .07));
}

/*
 * The media link is aria-hidden and tabindex="-1" on purpose: it points at the
 * same post as the title below it, so exposing both makes a keyboard user tab
 * twice through every card and a screen reader announce each post twice.
 */
.urartu-journal__media {
	display: block;
	aspect-ratio: 3 / 2;
	overflow: hidden;
	background-color: var(--u-sunken, #EDEAE4);
}

.urartu-journal__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 600ms cubic-bezier(.2, 0, 0, 1);
}

.urartu-journal__card:hover .urartu-journal__media img {
	transform: scale(1.04);
}

.urartu-journal__body {
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	gap: var(--sp-2, 8px);
	padding: var(--sp-5, 20px);
}

.urartu-journal__meta {
	display: flex;
	flex-wrap: wrap;
	gap: var(--sp-3, 12px);
	margin: 0;
}

.urartu-journal__title {
	margin: 0;
	font-family: var(--u-font-body, inherit);
	font-size: var(--fs-lead, 1.0625rem);
	font-weight: 600;
	line-height: 1.35;
	letter-spacing: -.005em;
}

.urartu-journal__title a {
	color: var(--u-surface-fg, #241F1C);
	text-decoration: none;
}

.urartu-journal__title a:hover {
	color: var(--u-btn-bg, #2A6F62);
}

.urartu-journal__excerpt {
	margin: 0;
	font-size: var(--fs-small, .875rem);
	line-height: 1.6;
	color: var(--u-muted, rgba(36, 31, 28, .62));
}

.urartu-journal__more {
	margin-top: auto;
	padding-top: var(--sp-3, 12px);
	align-self: flex-start;
	font-size: var(--fs-small, .875rem);
	font-weight: 600;
	color: var(--u-btn-bg, #2A6F62);
	text-decoration: none;
	border-bottom: 1px solid currentColor;
}

.urartu-journal__empty {
	margin: 0;
	padding: var(--sp-6, 24px);
	border: 1px dashed var(--u-border, rgba(36, 31, 28, .28));
	color: var(--u-muted, rgba(36, 31, 28, .62));
	text-align: center;
}

/* ── Motion ───────────────────────────────────────────────────────────────── */

@media (prefers-reduced-motion: reduce) {

	.urartu-hero__btn,
	.urartu-journal__card,
	.urartu-journal__media img,
	.urartu-journal__title a {
		transition: none;
	}

	.urartu-journal__card:hover .urartu-journal__media img {
		transform: none;
	}
}

/* ── Category mosaic ──────────────────────────────────────────────────────── */

/*
 * The first category gets a tall tile and the rest stack beside it. An even
 * grid would say every section of the shop matters equally, which is never
 * true — this way the layout itself says where to start.
 */
.urartu-bento {
	display: grid;
	grid-template-columns: 2fr 1fr;
	grid-auto-rows: calc((var(--u-bento-h, 520px) - 16px) / 2);
	gap: 16px;
}

.urartu-bento__tile {
	position: relative;
	display: flex;
	align-items: flex-end;
	overflow: hidden;
	min-height: 0;
	border-radius: var(--u-media-radius, 0);
	text-decoration: none;
	isolation: isolate;
}

.urartu-bento__tile--lead {
	grid-row: span 2;
}

/* Same reason as the hero image above. */
.urartu-bento__tile .urartu-bento__img {
	position: absolute;
	inset: 0;
	z-index: -2;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 700ms cubic-bezier(.2, 0, 0, 1);
}

.urartu-bento__tile:hover .urartu-bento__img {
	transform: scale(1.05);
}

/* The tile fills its grid row, so the image must fill the tile rather than
   size itself from the photograph. */
.urartu-bento__tile .urartu-bento__img {
	height: 100%;
}

/* A gradient rather than a flat wash: the label sits at the bottom, so that is
   where the darkening is needed, and the top of the photograph stays itself. */
.urartu-bento__tile::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	background: linear-gradient(to top, rgba(0, 0, 0, .92) 0%, rgba(0, 0, 0, .55) 28%, rgba(0, 0, 0, .12) 60%, rgba(0, 0, 0, 0) 85%);
	/*
	 * The label sits in the bottom quarter, and a shop's photographs are often
	 * pale studio shots — a category name in white over one of those was
	 * legible only by luck. The gradient is now weighted to that quarter and
	 * strong enough there that the name reads whatever the photograph is,
	 * while the top of the picture is left almost untouched.
	 */
	opacity: .55;
	pointer-events: none;
}

.urartu-bento__body {
	display: flex;
	flex-direction: column;
	gap: 6px;
	padding: var(--sp-5, 20px);
	color: #fff;
}

.urartu-bento__name {
	font-family: var(--u-font-display, Georgia, serif);
	font-size: clamp(1.25rem, 1.05rem + .9vw, 2rem);
	font-weight: 400;
	line-height: 1.1;
	letter-spacing: .015em;
}

.urartu-bento__count {
	font-size: var(--fs-micro, .75rem);
	opacity: .8;
}

.urartu-bento__cta {
	margin-top: var(--sp-2, 8px);
	align-self: flex-start;
	padding-bottom: 2px;
	font-size: var(--fs-small, .875rem);
	font-weight: 600;
	border-bottom: 1px solid currentColor;
}

/* One column below the tablet breakpoint: a 2fr/1fr split at phone width makes
   the stacked tiles too narrow to carry a label. */
@media (max-width: 767px) {

	.urartu-bento {
		grid-template-columns: 1fr;
		grid-auto-rows: minmax(180px, auto);
	}

	.urartu-bento__tile--lead {
		grid-row: span 1;
		aspect-ratio: 4 / 3;
	}
}

/* ── Image beside text ────────────────────────────────────────────────────── */

.urartu-split {
	display: grid;
	grid-template-columns: var(--u-split, 50%) 1fr;
	gap: 56px;
	align-items: center;
}

/* Only the visual order changes: the picture stays after the text in the
   markup, so on a phone the reading order is still heading then paragraph. */
.urartu-split--flip .urartu-split__media {
	order: 2;
}

.urartu-split__media {
	aspect-ratio: 4 / 3;
	overflow: hidden;
	border-radius: var(--u-media-radius, 0);
	background-color: var(--u-sunken, #EDEAE4);
}

.urartu-split__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.urartu-split__body {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: var(--sp-4, 16px);
}

.urartu-split__title {
	margin: 0;
	font-family: var(--u-font-display, Georgia, serif);
	font-weight: 400;
	font-size: var(--fs-title, clamp(1.5rem, 1.32rem + .8vw, 2.25rem));
	line-height: 1.12;
	letter-spacing: .015em;
	color: var(--u-page-fg, #241F1C);
	text-wrap: balance;
}

.urartu-split__eyebrow,
.urartu-split__text {
	margin: 0;
}

.urartu-split__text {
	max-width: 52ch;
	font-size: var(--fs-body, 1rem);
	line-height: 1.65;
	color: var(--u-muted, rgba(36, 31, 28, .72));
}

.urartu-split__cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	margin-top: var(--sp-2, 8px);
	padding-inline: var(--sp-6, 24px);
	border-radius: var(--u-btn-radius, 2px);
	font-size: var(--u-btn-fs, 15px);
	font-weight: var(--u-btn-fw, 600);
	text-decoration: none;
	transition: background-color 220ms cubic-bezier(.2, 0, 0, 1), color 220ms cubic-bezier(.2, 0, 0, 1);
}

.urartu-split__cta--solid {
	background-color: var(--u-btn-bg, #2A6F62);
	color: var(--u-btn-fg, #fff);
	border: 1px solid transparent;
}

.urartu-split__cta--solid:hover {
	background-color: var(--u-btn-bg-h, #235D52);
}

.urartu-split__cta--outline {
	background-color: transparent;
	color: var(--u-btn-bg, #2A6F62);
	border: 1px solid currentColor;
}

.urartu-split__cta--outline:hover {
	background-color: var(--u-btn-bg, #2A6F62);
	color: var(--u-btn-fg, #fff);
	border-color: var(--u-btn-bg, #2A6F62);
}

/* The quietest of the three: no box at all, so it can sit under a paragraph
   without reading as a second call to action. */
.urartu-split__cta--link {
	min-height: 0;
	padding: 0 0 2px;
	border-radius: 0;
	background: none;
	color: var(--u-btn-bg, #2A6F62);
	border-bottom: 1px solid currentColor;
}

@media (max-width: 767px) {

	.urartu-split {
		grid-template-columns: 1fr;
		gap: var(--sp-6, 24px);
	}

	.urartu-split--flip .urartu-split__media {
		order: 0;
	}
}

/* ── Image strip ──────────────────────────────────────────────────────────── */

.urartu-strip__heading {
	margin: 0 0 var(--sp-5, 20px);
	font-family: var(--u-font-display, Georgia, serif);
	font-weight: 400;
	font-size: var(--fs-section, clamp(1.25rem, 1.16rem + .4vw, 1.625rem));
	letter-spacing: .015em;
	text-align: center;
	color: var(--u-page-fg, #241F1C);
}

.urartu-strip__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 12px;
}

.urartu-strip__cell {
	display: block;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	border-radius: var(--u-media-radius, 0);
	background-color: var(--u-sunken, #EDEAE4);
}

.urartu-strip__cell img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 600ms cubic-bezier(.2, 0, 0, 1), opacity 220ms linear;
}

.urartu-strip__cell:hover img {
	transform: scale(1.05);
	opacity: .88;
}

/* ── Signup band ──────────────────────────────────────────────────────────── */

.urartu-signup {
	padding-block: 72px;
	padding-inline: var(--sp-6, 24px);
	background-color: var(--u-page-fg, #241F1C);
	color: var(--u-page-bg, #F4F2EE);
	border-radius: var(--u-media-radius, 0);
	text-align: center;
}

.urartu-signup__inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: var(--sp-3, 12px);
	max-width: 560px;
	margin-inline: auto;
}

.urartu-signup__title {
	margin: 0;
	font-family: var(--u-font-display, Georgia, serif);
	font-weight: 400;
	font-size: var(--fs-title, clamp(1.5rem, 1.32rem + .8vw, 2.25rem));
	line-height: 1.12;
	letter-spacing: .015em;
	color: inherit;
	text-wrap: balance;
}

.urartu-signup__text {
	margin: 0;
	font-size: var(--fs-body, 1rem);
	line-height: 1.6;
	opacity: .82;
}

.urartu-signup__form {
	display: flex;
	flex-wrap: wrap;
	gap: var(--sp-2, 8px);
	width: 100%;
	margin-top: var(--sp-3, 12px);
}

.urartu-signup__input {
	flex: 1 1 220px;
	min-height: 48px;
	padding-inline: var(--sp-4, 16px);
	border: 1px solid transparent;
	border-radius: var(--u-field-radius, 2px);
	background-color: #fff;
	color: #241F1C;
	font-family: var(--u-font-body, inherit);
	font-size: var(--u-field-fs, 16px);
}

/* The band sets its own ink, so a focus ring has to be visible against the
   band rather than against the page. currentColor is the one value that is. */
.urartu-signup__input:focus-visible,
.urartu-signup__btn:focus-visible {
	outline: 2px solid currentColor;
	outline-offset: 2px;
}

.urartu-signup__btn {
	flex: 0 0 auto;
	min-height: 48px;
	padding-inline: var(--sp-6, 24px);
	border: 0;
	border-radius: var(--u-btn-radius, 2px);
	background-color: var(--u-btn-bg, #2A6F62);
	color: var(--u-btn-fg, #fff);
	font-family: var(--u-font-body, inherit);
	font-size: var(--u-btn-fs, 15px);
	font-weight: var(--u-btn-fw, 600);
	cursor: pointer;
	transition: background-color 220ms cubic-bezier(.2, 0, 0, 1);
}

.urartu-signup__btn:hover {
	background-color: var(--u-btn-bg-h, #235D52);
}

.urartu-signup__note {
	margin: 0;
	font-size: var(--fs-micro, .75rem);
	opacity: .66;
}

@media (prefers-reduced-motion: reduce) {

	.urartu-bento__img,
	.urartu-strip__cell img,
	.urartu-split__cta,
	.urartu-signup__btn {
		transition: none;
	}

	.urartu-bento__tile:hover .urartu-bento__img,
	.urartu-strip__cell:hover img {
		transform: none;
	}
}

/* ── The signup form's own two additions ──────────────────────────────────
 *
 * The honeypot, and the line that answers a submission.
 */

/*
 * Taken off the screen rather than hidden.
 *
 * display:none and visibility:hidden are both things a bot can check for, and
 * the ones worth catching do. A field a person cannot reach and a bot can is
 * the whole mechanism, so it stays in the layout and leaves the viewport.
 */
.urartu-signup__trap {
	position: absolute !important;
	left: -9999px;
	top: auto;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.urartu-signup__result {
	flex: 1 1 100%;
	margin: 8px 0 0;
	font-size: var(--fs-small, .875rem);
	line-height: 1.5;
	text-align: start;
}

.urartu-signup__result.is-ok {
	color: inherit;
	opacity: .9;
}

.urartu-signup__result.is-error {
	color: #FF8A80;
}

/* The button while the address is on its way. The band's ink is light, so the
   ring is drawn in it rather than in the page's. */
.urartu-signup__btn.loading {
	position: relative;
	color: transparent;
	pointer-events: none;
}

.urartu-signup__btn.loading::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 16px;
	height: 16px;
	margin: -8px 0 0 -8px;
	border: 2px solid var(--u-btn-fg, #fff);
	border-top-color: transparent;
	border-radius: 50%;
	animation: uSpin .7s linear infinite;
}

@keyframes uSpin {
	to { transform: rotate(360deg); }
}

@media (prefers-reduced-motion: reduce) {

	.urartu-signup__btn.loading::after {
		animation-duration: 2.4s;
	}
}

/* ── Deal of the day ──────────────────────────────────────────────────────
 *
 * One product across the width of the page, with a clock. It is the loudest
 * thing on a front page by design, so everything about it is stated rather
 * than inherited: a sunken ground so it separates from the sections either
 * side, a photograph that keeps its own proportions, and figures set in the
 * interface face at a size that can be read across a room.
 */

.urartu-deal {
	padding-block: clamp(32px, 5vw, 64px);
	padding-inline: var(--sp-6, 24px);
	background: var(--u-sunken, #EDF4FD);
	border-block: 1px solid var(--u-border, rgba(36, 31, 28, .14));
}

.urartu-deal__inner {
	display: grid;
	grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
	align-items: center;
	gap: clamp(24px, 4vw, 64px);
	max-width: var(--u-container, 1280px);
	margin-inline: auto;
}

@media (max-width: 900px) {

	.urartu-deal__inner {
		grid-template-columns: minmax(0, 1fr);
	}
}

.urartu-deal__media {
	position: relative;
	overflow: hidden;
	border-radius: var(--u-media-radius, 0);
	background: var(--u-surface, #fff);
}

.urartu-deal__image {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 4 / 3;
	object-fit: cover;
}

/* The saving, on the photograph, in the one place a shopper looks first. */
.urartu-deal__saving {
	position: absolute;
	top: 16px;
	inset-inline-start: 16px;
	padding: 6px 12px;
	border-radius: var(--u-badge-radius, 2px);
	background: var(--u-sale-bg, #BA1A1A);
	font-family: var(--u-font-ui, var(--u-font-body, inherit));
	font-size: .75rem;
	font-weight: 700;
	letter-spacing: .06em;
	text-transform: uppercase;
	color: #fff;
}

.urartu-deal__eyebrow {
	margin: 0 0 10px;
	font-family: var(--u-font-ui, var(--u-font-body, inherit));
	font-size: .6875rem;
	font-weight: 700;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: var(--u-btn-bg, #2A6F62);
}

.urartu-deal__title {
	margin: 0 0 12px;
	font-family: var(--u-font-display, inherit);
	font-weight: var(--u-display-weight, 700);
	font-size: clamp(1.75rem, 1.3rem + 2vw, 2.75rem);
	line-height: 1.1;
	letter-spacing: var(--u-display-track, -.02em);
}

.urartu-deal__title a {
	color: inherit;
	text-decoration: none;
}

.urartu-deal__text {
	margin: 0 0 18px;
	max-width: 52ch;
	font-size: 1.0625rem;
	line-height: 1.6;
	color: var(--u-muted-fg, rgba(36, 31, 28, .62));
}

.urartu-deal__price {
	margin: 0 0 20px;
	font-size: 1.5rem;
	font-weight: 700;
	font-variant-numeric: tabular-nums;
	color: var(--u-surface-fg, #241F1C);
}

.urartu-deal__price del {
	margin-inline-end: 10px;
	font-size: .75em;
	font-weight: 400;
	opacity: .55;
}

/* ── The clock ──────────────────────────────────────────────────────────
 *
 * Tabular figures, because a proportional font makes the seconds column jump
 * a pixel to the left every time a 1 goes past.
 */
.urartu-deal__clock {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin: 0 0 24px;
}

.urartu-deal__clock.is-over {
	display: none;
}

.urartu-deal__unit {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 4px;
	min-width: 64px;
	padding: 10px 8px;
	border: 1px solid var(--u-border, rgba(36, 31, 28, .14));
	border-radius: var(--u-global-radius, 0);
	background: var(--u-surface, #fff);
}

.urartu-deal__figure {
	font-family: var(--u-font-mono, 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace);
	font-size: 1.5rem;
	font-weight: 700;
	line-height: 1;
	font-variant-numeric: tabular-nums;
	color: var(--u-surface-fg, #241F1C);
}

.urartu-deal__label {
	font-family: var(--u-font-ui, var(--u-font-body, inherit));
	font-size: .625rem;
	font-weight: 600;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: var(--u-muted-fg, rgba(36, 31, 28, .55));
}

.urartu-deal__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: var(--u-btn-h, 48px);
	padding-inline: var(--u-btn-px, 24px);
	border-radius: var(--u-btn-radius, 2px);
	background: var(--u-btn-bg, #2A6F62);
	font-family: var(--u-font-ui, var(--u-font-body, inherit));
	font-size: var(--u-btn-fs, 15px);
	font-weight: var(--u-btn-fw, 600);
	color: var(--u-btn-fg, #fff);
	text-decoration: none;
	transition: filter 220ms cubic-bezier(.2, 0, 0, 1);
}

.urartu-deal__btn:hover {
	filter: brightness(1.1);
	color: var(--u-btn-fg, #fff);
}
