/*
 * VRD design system.
 *
 * Visual language: taken from the approved logo — deep navy for structure and trust, an aqua to
 * ocean range for links and discovery, and the brand's sunny yellow reserved for value and the
 * primary call to action. Backgrounds are white or very light so the colour has somewhere to sit.
 *
 * Bright and tropical, but not a coupon site: the yellow is a signal, not a decoration, and there
 * are no starbursts, countdowns or invented discounts anywhere in this file.
 *
 * Typography is deliberately webfont-free: a contemporary system sans, no external request and no
 * third-party dependency. The logo supplies the brand's letterforms where it matters.
 *
 * Brand tokens are all in :root and nowhere else, so the palette is replaceable in one place.
 */

:root {
	/* =====================================================================
	 * BRAND TOKENS — sampled from the approved logo, not invented.
	 *
	 * Source: Brands/vacationresortdeals - logo H.png and - icon.png, measured by
	 * Brands/make-runtime.py. The dominant areas of the artwork are deep navy (#00152a, 20% of
	 * the horizontal logo), sunny yellow (#fcbd00, 14%), orange (#fca800), and the aqua-to-ocean
	 * range in the pin (#00bde7, #0093d2, #007ea8, #005469).
	 *
	 * Used with intent rather than evenly: navy carries trust and structure, aqua and ocean carry
	 * links and discovery, yellow is reserved for value and the primary call to action, orange is
	 * a secondary accent, green is a small tropical/success note. Backgrounds stay white or very
	 * light so the colour has somewhere to sit.
	 * ===================================================================== */

	--vrd-navy:         #00152a;
	--vrd-navy-soft:    #123655;
	--vrd-ocean:        #0077b3;
	--vrd-ocean-deep:   #005b8a;
	--vrd-aqua:         #00bde7;
	--vrd-aqua-wash:    #e3f7fd;
	--vrd-teal:         #00a8bd;
	--vrd-teal-deep:    #006272;
	--vrd-yellow:       #fcbd00;
	--vrd-yellow-deep:  #e0a500;
	--vrd-yellow-wash:  #fff6dd;
	--vrd-orange:       #fc9300;
	--vrd-orange-deep:  #a34d05;
	--vrd-orange-wash:  #fff0e2;
	--vrd-green:        #15916a;
	--vrd-green-wash:   #e4f6ef;

	--vrd-ink:          #00152a;
	--vrd-ink-soft:     #3c5468;
	--vrd-muted:        #566c7d;
	--vrd-paper:        #ffffff;
	--vrd-surface:      #f4fafd;
	--vrd-surface-alt:  #e8f5fb;
	--vrd-border:       #cadfe9;
	--vrd-border-soft:  #e2eff5;

	/* ---- legacy aliases -------------------------------------------------
	 * The component CSS below was written against the previous token names. Aliasing rather than
	 * find-and-replacing keeps this change to one reviewable block and avoids touching 600 lines
	 * of rules that are otherwise correct. New rules should use the brand names above.
	 * ------------------------------------------------------------------- */
	--vrd-ink-faint:    var(--vrd-muted);
	--vrd-sand:         var(--vrd-surface);
	--vrd-sand-deep:    var(--vrd-surface-alt);
	--vrd-stone:        var(--vrd-border);
	--vrd-stone-soft:   var(--vrd-border-soft);
	--vrd-ocean-wash:   var(--vrd-aqua-wash);
	--vrd-clay:         var(--vrd-orange-deep);
	--vrd-clay-wash:    var(--vrd-orange-wash);

	/* ---- scale ---- */
	--vrd-wrap:         1180px;
	--vrd-wrap-prose:   43rem;
	--vrd-gap:          clamp(1rem, 2.5vw, 2rem);
	--vrd-radius:       8px;
	--vrd-radius-lg:    14px;

	/*
	 * Typography: contemporary sans throughout.
	 *
	 * The previous identity led with an editorial serif, which read as traditional and old-fashioned
	 * against this logo. The logo's wordmark is a bold geometric sans, so the page now matches it.
	 * No webfont: the system stack renders instantly, costs no request, and carries no third-party
	 * dependency. The logo supplies the brand's letterforms where it matters.
	 */
	--vrd-font-head:    ui-sans-serif, system-ui, -apple-system, "Segoe UI", "Inter", Roboto, "Helvetica Neue", Arial, sans-serif;
	--vrd-font-body:    ui-sans-serif, system-ui, -apple-system, "Segoe UI", "Inter", Roboto, "Helvetica Neue", Arial, sans-serif;

	--vrd-shadow:       0 1px 2px rgba(0, 21, 42, .05), 0 10px 28px -14px rgba(0, 21, 42, .22);
	--vrd-shadow-lift:  0 2px 6px rgba(0, 21, 42, .08), 0 18px 38px -18px rgba(0, 21, 42, .30);
	--vrd-focus:        3px solid var(--vrd-ocean);
}

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

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

body {
	margin: 0;
	background: var(--vrd-sand);
	color: var(--vrd-ink);
	font-family: var(--vrd-font-body);
	font-size: 1.0625rem;
	line-height: 1.65;
	/* Belt and braces against a wide table or a long token pushing the page sideways. */
	overflow-x: hidden;
}

img, svg, video, table { max-width: 100%; }
img { height: auto; }

a { color: var(--vrd-ocean-deep); text-decoration-thickness: 1px; text-underline-offset: .15em; }
a:hover { color: var(--vrd-clay); }

/*
 * Target size for text links.
 *
 * An inline link's hit area is its inline box, which is the font's content height — about 19 to
 * 22px at this type size, regardless of the line-height around it. That is under the 24px WCAG
 * 2.5.8 AA minimum, and no amount of line-height fixes it. A couple of pixels of vertical padding
 * on an inline-block does, without changing how the text looks or disturbing the line box.
 */
.vrd-prose p > a, .vrd-prose li > a,
.vrd-disclosure a, .vrd-related li a, .vrd-held li a, .vrd-sources li a, .vrd-basis a {
	display: inline-block;
	padding-block: 3px;
	margin-block: -3px; /* keep the visual rhythm identical to an unpadded link */
}

:where(a, button, input, select, textarea, summary):focus-visible {
	outline: var(--vrd-focus);
	outline-offset: 2px;
	border-radius: 2px;
}

h1, h2, h3, h4 {
	font-family: var(--vrd-font-head);
	font-weight: 700;
	line-height: 1.15;
	letter-spacing: -.02em;
	color: var(--vrd-navy);
	margin: 0 0 .5em;
}
h1 { font-size: clamp(1.85rem, 4.4vw, 2.85rem); }
h2 { font-size: clamp(1.4rem, 2.8vw, 1.9rem); margin-top: 2em; }
h3 { font-size: clamp(1.13rem, 2vw, 1.3rem); margin-top: 1.6em; }
h4 { font-size: 1.02rem; margin-top: 1.4em; }

p, ul, ol { margin: 0 0 1.1em; }
li + li { margin-top: .35em; }

.vrd-wrap { width: 100%; max-width: var(--vrd-wrap); margin-inline: auto; padding-inline: clamp(1rem, 4vw, 2rem); }

/* ------------------------------------------------------------------ skip link */

/*
 * Visually hidden until focused, using the clip-path technique rather than left: -9999px.
 * The old technique works, but it puts a real element 9999px outside the viewport, and any
 * honest overflow audit will flag it on every page — which it did. Clipping to zero area keeps
 * the link keyboard-reachable without ever contributing to layout.
 */
.vrd-skip {
	position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0; border: 0;
	overflow: hidden; clip-path: inset(50%); white-space: nowrap;
}
.vrd-skip:focus {
	position: fixed; left: 0; top: 0; z-index: 100;
	width: auto; height: auto; margin: 0; overflow: visible; clip-path: none;
	background: var(--vrd-ink); color: #fff; padding: .75rem 1rem;
	border-radius: 0 0 var(--vrd-radius) 0; min-height: 44px; display: inline-flex; align-items: center;
}

/* --------------------------------------------------------------- staging bar */

.vrd-staging {
	background: var(--vrd-ink); color: #f3ece1;
	font-size: .8125rem; letter-spacing: .01em;
	padding: .5rem clamp(1rem, 4vw, 2rem);
	text-align: center;
}

/* -------------------------------------------------------------------- header */

.vrd-header {
	background: var(--vrd-paper);
	border-bottom: 1px solid var(--vrd-stone);
	position: sticky; top: 0; z-index: 50;
}
.vrd-header__inner {
	display: flex; align-items: center; justify-content: space-between;
	flex-wrap: nowrap; gap: var(--vrd-gap); min-height: 68px;
}
/*
 * min-width: 0 is what stops the wordmark from pushing the menu button out of the header on a
 * narrow phone. Without it the logo's intrinsic width wins, the button is overlapped, and it
 * becomes unclickable — which is how the QA run found this: the toggle was there, visible and
 * enabled, and the logo was sitting on top of it.
 */
.vrd-logo { display: inline-flex; align-items: center; gap: .6rem; text-decoration: none; min-width: 0; flex: 0 1 auto; min-height: 44px; }

/*
 * The approved horizontal logo. Height-driven so the artwork keeps its own proportions; the
 * intrinsic width/height attributes on the img prevent layout shift while it loads.
 */
.vrd-logo__img { display: block; height: 42px; width: auto; }
@media (max-width: 600px) { .vrd-logo__img { height: 34px; } }
/*
 * The wordmark never shrinks. When the header ran out of room it was the first thing to collapse,
 * which left a site with no visible name in its own header — the kind of defect that passes every
 * DOM-level check and is obvious in a screenshot.
 */
.vrd-logo__mark {
	flex: 0 0 auto;
	font-family: var(--vrd-font-head); font-size: 1.22rem; font-weight: 600;
	color: var(--vrd-ink); letter-spacing: -.015em; white-space: nowrap;
}
.vrd-logo__rule { width: 22px; height: 2px; background: var(--vrd-ocean); display: inline-block; margin-bottom: .28em; }
.vrd-logo__desk {
	font-size: .72rem; text-transform: uppercase; letter-spacing: .12em;
	color: var(--vrd-ink-faint); white-space: nowrap;
}
.vrd-logo:hover .vrd-logo__mark { color: var(--vrd-ocean-deep); }

/* nav */
.vrd-nav__list { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: clamp(.5rem, 1.6vw, 1.5rem); list-style: none; margin: 0; padding: 0; }
.vrd-nav__item { margin: 0; }
.vrd-nav__link, .vrd-nav__list a {
	display: inline-flex; align-items: center; min-height: 44px;
	font-size: .94rem; color: var(--vrd-ink); text-decoration: none;
	border-bottom: 2px solid transparent;
}
.vrd-nav__link:hover, .vrd-nav__list a:hover,
.vrd-nav__list .current-menu-item > a { color: var(--vrd-ocean-deep); border-bottom-color: var(--vrd-ocean); }

.vrd-navtoggle {
	display: none;
	min-width: 44px; min-height: 44px;
	align-items: center; gap: .5rem;
	background: none; border: 1px solid var(--vrd-stone); border-radius: var(--vrd-radius);
	color: var(--vrd-ink); font: inherit; font-size: .9rem; padding: .4rem .7rem; cursor: pointer;
}

@media (max-width: 720px) {
	.vrd-logo__rule, .vrd-logo__desk { display: none; }
}

@media (max-width: 860px) {
	.vrd-navtoggle { display: inline-flex; flex: 0 0 auto; }
	.vrd-nav {
		display: none;
		position: absolute; left: 0; right: 0; top: 100%;
		background: var(--vrd-paper); border-bottom: 1px solid var(--vrd-stone);
		box-shadow: var(--vrd-shadow);
	}
	.vrd-nav.is-open { display: block; }
	.vrd-nav__list { flex-direction: column; gap: 0; padding: .5rem clamp(1rem, 4vw, 2rem) 1rem; }
	.vrd-nav__list li + li { border-top: 1px solid var(--vrd-stone-soft); margin-top: 0; }
	.vrd-nav__link, .vrd-nav__list a { width: 100%; min-height: 48px; border-bottom: 0; }
}

/* ---------------------------------------------------------------------- hero */

/*
 * The hero carries the brand's colour so the first screen reads as tropical rather than plain:
 * a soft aqua wash lifting out of white, with the sunny accent kept for the call to action.
 */
.vrd-hero {
	background:
		radial-gradient(1200px 400px at 15% -10%, var(--vrd-aqua-wash), transparent 60%),
		radial-gradient(900px 380px at 90% 0%, var(--vrd-yellow-wash), transparent 55%),
		linear-gradient(180deg, var(--vrd-surface-alt), var(--vrd-paper));
	border-bottom: 1px solid var(--vrd-border);
}
.vrd-hero__inner {
	padding-block: clamp(2.5rem, 7vw, 4.75rem);
	display: grid; gap: clamp(1.5rem, 4vw, 3rem);
	grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
	align-items: center;
}
.vrd-hero__text { max-width: 40rem; }
@media (max-width: 860px) {
	.vrd-hero__inner { grid-template-columns: 1fr; }
	.vrd-hero__text { max-width: none; }
}
.vrd-eyebrow {
	font-size: .74rem; text-transform: uppercase; letter-spacing: .14em;
	color: var(--vrd-teal-deep);
}
.vrd-hero__title { font-size: clamp(2rem, 5.2vw, 3.25rem); margin-bottom: .6em; text-wrap: balance; }
.vrd-hero__lede { font-size: clamp(1.05rem, 1.7vw, 1.22rem); color: var(--vrd-ink-soft); max-width: 40rem; }

.vrd-hero__actions { display: flex; flex-wrap: wrap; gap: .75rem; margin: 1.75rem 0 1.5rem; }
.vrd-btn {
	display: inline-flex; align-items: center; justify-content: center; gap: .4rem;
	min-height: 48px; padding: .6rem 1.25rem;
	border-radius: var(--vrd-radius); border: 1px solid transparent;
	font: inherit; font-size: .97rem; font-weight: 500; text-decoration: none; cursor: pointer;
}
/*
 * CTA hierarchy.
 *
 * Primary is the brand's yellow with navy text: the highest-contrast pairing available in this
 * palette, and the one the logo itself uses for the word "Deals". Yellow is reserved for this and
 * for value signals, and is never used as text on white, where it would fail badly.
 *
 * Secondary is ocean blue with white text. Tertiary is a navy outline for utility actions.
 */
.vrd-btn--primary {
	background: var(--vrd-yellow); color: var(--vrd-navy);
	font-weight: 700; box-shadow: 0 2px 0 var(--vrd-yellow-deep);
}
.vrd-btn--primary:hover { background: var(--vrd-yellow-deep); color: var(--vrd-navy); box-shadow: 0 2px 0 #c08e00; }

.vrd-btn--secondary { background: var(--vrd-ocean); color: #fff; font-weight: 600; }
.vrd-btn--secondary:hover { background: var(--vrd-ocean-deep); color: #fff; }

.vrd-btn--ghost { background: transparent; color: var(--vrd-navy); border-color: var(--vrd-border); font-weight: 600; }
.vrd-btn--ghost:hover { background: var(--vrd-navy); color: #fff; border-color: var(--vrd-navy); }
.vrd-btn[disabled] { opacity: .55; cursor: not-allowed; }

.vrd-hero__trust { display: flex; flex-wrap: wrap; gap: .5rem 1.4rem; margin: 0; padding: 0; list-style: none; }
.vrd-hero__trust li { display: flex; align-items: flex-start; gap: .45rem; font-size: .9rem; color: var(--vrd-ink-soft); margin: 0; }
.vrd-icon { width: 1.05em; height: 1.05em; flex: 0 0 auto; margin-top: .28em; color: var(--vrd-ocean); }

/* ------------------------------------------------------------------ sections */

.vrd-section { padding-block: clamp(2.25rem, 5vw, 3.5rem); border-bottom: 1px solid var(--vrd-stone-soft); }
.vrd-section:last-of-type { border-bottom: 0; }
.vrd-section--tint { background: var(--vrd-surface-alt); }

.vrd-section__head { display: grid; gap: .35rem; margin-bottom: 1.6rem; max-width: 46rem; }
.vrd-section__title { margin: 0; }
.vrd-section__lede { margin: 0; color: var(--vrd-ink-soft); }
.vrd-section__more {
	display: inline-flex; align-items: center; gap: .35rem; min-height: 44px;
	font-size: .94rem; font-weight: 500; text-decoration: none;
}
.vrd-section__more .vrd-icon { margin-top: 0; }

/* ------------------------------------------------------------------- grids */

.vrd-grid { display: grid; gap: var(--vrd-gap); }
.vrd-grid--2 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 22rem), 1fr)); }
.vrd-grid--3 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 17.5rem), 1fr)); }
.vrd-grid--4 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 15rem), 1fr)); }

/* ---------------------------------------------------------------------- media
 *
 * Every image on this site is a generated SVG scene. Three consequences shape this block:
 *
 * 1. One asset serves every width. There is no srcset, no derivative sizes and nothing to pick
 *    the wrong one of, because an SVG does not pixelate.
 * 2. The intrinsic canvas is 16:9 and the display ratios here are wider, so the rule is always
 *    object-fit: cover. A scene is composed to survive that crop: the horizon and the palms sit
 *    where a centre crop keeps them.
 * 3. Every box is sized before the asset arrives — explicit width/height on the element plus an
 *    aspect-ratio here — so no image in this system can shift layout, and the tinted background
 *    means a failed load leaves a brand-coloured panel rather than a broken-image glyph.
 */

.vrd-media { display: block; margin: 0; background: var(--vrd-surface-alt); }

/*
 * Photography rides on the same boxes as the illustrated scenes.
 *
 * <picture> takes display:contents so the <img> inside it is still the element the aspect-ratio
 * and object-fit rules below address. That keeps one set of sizing rules for both layers, which is
 * why a page can switch between them without any layout change at all.
 */
.vrd-media picture { display: contents; }

/* A photograph is opaque, so the tinted placeholder behind it is only ever seen while loading. A
 * hairline inset stops a bright sky sitting flush against a white card with no edge. */
.vrd-media--photo .vrd-media__img { background: var(--vrd-surface-alt); }
.vrd-media--photo.vrd-media--card { box-shadow: inset 0 -1px 0 rgba(0, 21, 42, .08); }
.vrd-media__img {
	display: block; width: 100%; height: 100%;
	object-fit: cover; object-position: center 62%;
	background: var(--vrd-surface-alt);
}

/* Card thumbnail. Short, because a card is mostly evidence and the artwork is an anchor, not the
 * content — a taller image would push the facts below the fold of the grid. */
.vrd-media--card {
	aspect-ratio: 16 / 7;
	border-bottom: 1px solid var(--vrd-stone-soft);
	overflow: hidden;
}
.vrd-media--card .vrd-media__img { transition: transform .3s ease; }
.vrd-card:hover .vrd-media--card .vrd-media__img { transform: scale(1.04); }

/* Page banner. */
.vrd-media--hero {
	margin: 0 0 1.75rem;
	border-radius: var(--vrd-radius-lg);
	overflow: hidden;
	border: 1px solid var(--vrd-stone);
}
.vrd-media--hero .vrd-media__img { aspect-ratio: 24 / 7; }
.vrd-media__credit {
	font-size: .78rem; line-height: 1.45; color: var(--vrd-muted);
	background: var(--vrd-surface); padding: .5rem .85rem;
	border-top: 1px solid var(--vrd-stone-soft);
}

/* The homepage hero panel. */
.vrd-media--split {
	border-radius: var(--vrd-radius-lg);
	overflow: hidden;
	border: 1px solid var(--vrd-stone);
	box-shadow: var(--vrd-shadow);
	align-self: center;
}
.vrd-media--split .vrd-media__img { aspect-ratio: 4 / 3; }

@media (max-width: 900px) {
	.vrd-media--hero .vrd-media__img { aspect-ratio: 2 / 1; }
	.vrd-media--split .vrd-media__img { aspect-ratio: 16 / 9; }
}

@media (prefers-reduced-motion: reduce) {
	.vrd-card, .vrd-media__img, .vrd-card:hover .vrd-media--card .vrd-media__img {
		transition: none; transform: none;
	}
}

/* -------------------------------------------------------------------- cards */

.vrd-card {
	background: var(--vrd-paper);
	border: 1px solid var(--vrd-stone);
	border-radius: var(--vrd-radius-lg);
	padding: 1.15rem 1.25rem 1.25rem;
	display: flex; flex-direction: column; gap: .55rem;
	overflow: hidden;
	transition: border-color .15s ease, box-shadow .15s ease, transform .15s ease;
}
.vrd-card:hover { border-color: var(--vrd-ocean); box-shadow: var(--vrd-shadow-lift); }

/*
 * A card with artwork puts the image flush to the card edge, so the padding moves off the card and
 * onto an inner body. Without that the thumbnail sits in a white frame and the card reads as a
 * document with a picture in it rather than as a card.
 */
.vrd-card--media { padding: 0; gap: 0; }
.vrd-card--media .vrd-card__body {
	padding: 1rem 1.25rem 1.25rem;
	display: flex; flex-direction: column; gap: .55rem; flex: 1 1 auto;
}
.vrd-card__kicker {
	font-size: .72rem; text-transform: uppercase; letter-spacing: .12em;
	color: var(--vrd-teal-deep);
}
.vrd-card__title { margin: 0; font-size: 1.15rem; line-height: 1.25; }
.vrd-card__title a { text-decoration: none; color: var(--vrd-ink); display: inline-block; padding-block: .15rem; }
.vrd-card__title a:hover { color: var(--vrd-ocean-deep); text-decoration: underline; }
.vrd-card__meta { margin: 0; font-size: .84rem; color: var(--vrd-ink-faint); }
.vrd-card__lede { margin: 0; font-size: .94rem; color: var(--vrd-ink-soft); }
.vrd-card__notfor {
	margin: 0; font-size: .88rem; color: var(--vrd-ink-soft);
	background: var(--vrd-clay-wash); border-left: 3px solid var(--vrd-clay);
	padding: .5rem .7rem; border-radius: 0 var(--vrd-radius) var(--vrd-radius) 0;
}
.vrd-card__notfor-label { font-weight: 600; color: var(--vrd-clay); }
.vrd-card__evidence { margin: auto 0 0; font-size: .78rem; color: var(--vrd-ink-faint); padding-top: .35rem; }

/* --------------------------------------------------------------- locality chips */

.vrd-chips { display: flex; flex-wrap: wrap; gap: .6rem; list-style: none; margin: 0; padding: 0; }
.vrd-chips li { margin: 0; }
.vrd-chip {
	display: inline-flex; align-items: center; gap: .45rem; min-height: 44px;
	padding: .4rem .9rem; background: var(--vrd-paper);
	border: 1px solid var(--vrd-stone); border-radius: 999px;
	font-size: .92rem; text-decoration: none; color: var(--vrd-ink);
}
.vrd-chip:hover { border-color: var(--vrd-ocean); color: var(--vrd-ocean-deep); }
.vrd-chip__count { font-size: .78rem; color: var(--vrd-ink-faint); }

/* ------------------------------------------------------- article / prose pages */

.vrd-main { display: block; }
.vrd-article { padding-block: clamp(1.75rem, 4vw, 3rem); }
.vrd-prose { max-width: var(--vrd-wrap-prose); }
.vrd-prose--wide { max-width: 60rem; }

.vrd-crumbs { margin: 0 0 1.25rem; font-size: .84rem; color: var(--vrd-ink-faint); }
.vrd-crumbs ol { display: flex; flex-wrap: wrap; gap: .35rem; list-style: none; margin: 0; padding: 0; }
.vrd-crumbs li + li::before { content: "/"; margin-right: .35rem; color: var(--vrd-stone); }
.vrd-crumbs li { margin: 0; }

.vrd-standfirst { font-size: clamp(1.05rem, 1.6vw, 1.2rem); color: var(--vrd-ink-soft); max-width: 42rem; }

/* evidence blocks */
.vrd-basis {
	background: var(--vrd-ocean-wash);
	border: 1px solid #c9dcdd;
	border-radius: var(--vrd-radius-lg);
	padding: 1rem 1.15rem; margin: 1.75rem 0;
}
.vrd-basis h2 { margin-top: 0; font-size: 1.05rem; }
.vrd-basis p:last-child { margin-bottom: 0; }

.vrd-unknowns, .vrd-fees, .vrd-sources, .vrd-price {
	border-top: 1px solid var(--vrd-stone); padding-top: 1.5rem; margin-top: 2rem;
}
.vrd-unknowns ul, .vrd-sources ul { margin: 0; padding-left: 1.1rem; }
.vrd-sources { font-size: .92rem; }
.vrd-sources a { overflow-wrap: anywhere; }
.vrd-note, .vrd-prov, .vrd-verified { font-size: .84rem; color: var(--vrd-ink-faint); }
.vrd-prov { white-space: nowrap; }
.vrd-unknown { color: var(--vrd-ink-faint); font-style: italic; }
.vrd-flag {
	display: inline-block; font-size: .72rem; text-transform: uppercase; letter-spacing: .08em;
	background: var(--vrd-clay-wash); color: var(--vrd-clay);
	border: 1px solid #e0c3b4; border-radius: 999px; padding: .1rem .5rem; cursor: help;
}

/* the no-price block */
.vrd-price--none { background: var(--vrd-stone-soft); border: 1px solid var(--vrd-stone); border-radius: var(--vrd-radius-lg); padding: 1.15rem 1.25rem; }
.vrd-price--none h2 { margin-top: 0; font-size: 1.05rem; }
.vrd-price__cta, .vrd-cta-note { font-size: .9rem; color: var(--vrd-ink-soft); margin-bottom: 0; }

/* disclosure */
.vrd-disclosure {
	font-size: .88rem; color: var(--vrd-ink-soft);
	background: var(--vrd-paper); border: 1px dashed var(--vrd-stone);
	border-radius: var(--vrd-radius); padding: .7rem .9rem; margin: 0 0 1.5rem;
}

/* who it suits / does not */
.vrd-notfor-list, .vrd-strengths-list, .vrd-limitations-list { list-style: none; margin: 0; padding: 0; display: grid; gap: .8rem; }
.vrd-notfor-list li, .vrd-strengths-list li, .vrd-limitations-list li {
	background: var(--vrd-paper); border: 1px solid var(--vrd-stone);
	border-left: 3px solid var(--vrd-stone); border-radius: 0 var(--vrd-radius) var(--vrd-radius) 0;
	padding: .75rem .95rem; margin: 0;
}
.vrd-notfor-list li { border-left-color: var(--vrd-clay); }
.vrd-strengths-list li { border-left-color: var(--vrd-ocean); }
.vrd-because { font-size: .84rem; color: var(--vrd-ink-faint); }

.vrd-fit ul { list-style: none; display: flex; flex-wrap: wrap; gap: .5rem; padding: 0; }
.vrd-fit li {
	margin: 0; background: var(--vrd-ocean-wash); border: 1px solid #c9dcdd;
	border-radius: 999px; padding: .25rem .8rem; font-size: .88rem; text-transform: capitalize;
}

/* tables — every wide table scrolls inside its own box, never the page */
.vrd-table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; margin: 0 0 1.3rem; border: 1px solid var(--vrd-stone); border-radius: var(--vrd-radius-lg); background: var(--vrd-paper); }
.vrd-table-scroll table { border-collapse: collapse; width: 100%; min-width: 34rem; font-size: .92rem; }
.vrd-table-scroll th, .vrd-table-scroll td { text-align: left; padding: .6rem .8rem; border-bottom: 1px solid var(--vrd-stone-soft); vertical-align: top; }
.vrd-table-scroll thead th { background: var(--vrd-sand-deep); font-family: var(--vrd-font-body); font-size: .82rem; text-transform: uppercase; letter-spacing: .06em; color: var(--vrd-ink-soft); }
.vrd-table-scroll tbody th[scope="row"] { width: 12rem; color: var(--vrd-ink); font-weight: 600; }
.vrd-table-scroll tr:last-child th, .vrd-table-scroll tr:last-child td { border-bottom: 0; }
.vrd-verdict { color: var(--vrd-ink-faint); font-size: .86rem; }

/* comparison extras */
.vrd-notfor-pair { display: grid; gap: var(--vrd-gap); grid-template-columns: repeat(auto-fit, minmax(min(100%, 20rem), 1fr)); }
.vrd-notfor-col h3 { margin-top: 0; }
.vrd-matrix { margin-top: 1.5rem; }

/* best list extras */
.vrd-criteria { background: var(--vrd-paper); border: 1px solid var(--vrd-stone); border-radius: var(--vrd-radius-lg); padding: 1.1rem 1.25rem; margin-bottom: 1.75rem; }
.vrd-criteria h2 { margin-top: 0; font-size: 1.05rem; }
.vrd-entry { border-top: 1px solid var(--vrd-stone); padding-top: 1.4rem; margin-top: 1.4rem; }
.vrd-limitation, .vrd-disqualifier { font-size: .94rem; }
.vrd-disqualifier { color: var(--vrd-clay); }

/* related */
.vrd-related { border-top: 1px solid var(--vrd-stone); margin-top: 2.5rem; padding-top: 1.5rem; }
.vrd-related ul { list-style: none; padding: 0; display: grid; gap: .5rem; }
.vrd-related li { margin: 0; }

/* guard alert, staging only */
.vrd-guard-alert { background: #fdf1e8; border: 2px solid var(--vrd-clay); color: #7a3c1f; border-radius: var(--vrd-radius); padding: .8rem 1rem; margin: 0 0 1.5rem; font-size: .92rem; }

/* ------------------------------------------------------------- newsletter */

.vrd-newsletter { background: var(--vrd-navy); color: #eaf4fb; border-radius: var(--vrd-radius-lg); padding: clamp(1.4rem, 3.5vw, 2.25rem); }
.vrd-newsletter h2 { color: #fff; margin-top: 0; }
.vrd-newsletter p { color: #ded5c7; max-width: 42rem; }
.vrd-newsletter__form { display: flex; flex-wrap: wrap; gap: .6rem; align-items: flex-end; margin-bottom: .8rem; }
.vrd-newsletter__label { display: block; font-size: .84rem; color: #ded5c7; margin-bottom: .3rem; }
.vrd-newsletter__input { min-height: 48px; padding: .55rem .8rem; border: 1px solid #43525d; border-radius: var(--vrd-radius); background: #1e2b36; color: #fff; font: inherit; min-width: 15rem; flex: 1 1 15rem; }
.vrd-newsletter__note { font-size: .82rem; color: #b9ae9d; margin-bottom: 0; }
.vrd-newsletter .vrd-btn--primary { background: var(--vrd-yellow); color: var(--vrd-navy); }

/* ------------------------------------------------------------------ footer */

.vrd-footer { background: var(--vrd-paper); border-top: 1px solid var(--vrd-stone); margin-top: clamp(2rem, 5vw, 4rem); padding-top: clamp(2rem, 4vw, 3rem); }
.vrd-footer__grid { display: grid; gap: var(--vrd-gap); grid-template-columns: repeat(auto-fit, minmax(min(100%, 14rem), 1fr)); padding-bottom: 2rem; }
.vrd-footer__h { font-size: .78rem; text-transform: uppercase; letter-spacing: .12em; font-family: var(--vrd-font-body); color: var(--vrd-ink-faint); margin: 0 0 .8rem; }
.vrd-footer__col ul { list-style: none; margin: 0; padding: 0; }
.vrd-footer__col li { margin: 0; }
.vrd-footer__col a { display: inline-flex; align-items: center; min-height: 40px; font-size: .94rem; text-decoration: none; color: var(--vrd-ink); }
.vrd-footer__col a:hover { color: var(--vrd-ocean-deep); text-decoration: underline; }
.vrd-footer__note { font-size: .86rem; color: var(--vrd-ink-soft); margin: .5rem 0 0; }
.vrd-footer__note--staging { color: var(--vrd-clay); font-weight: 500; }
.vrd-footer__base { border-top: 1px solid var(--vrd-stone-soft); padding-block: 1.1rem; }
.vrd-footer__base p { margin: 0; font-size: .82rem; color: var(--vrd-ink-faint); }

/* ---------------------------------------------------------------- listings */

.vrd-listing__intro { max-width: 42rem; color: var(--vrd-ink-soft); }
.vrd-held {
	margin-top: 2.5rem; padding: 1.15rem 1.25rem;
	background: var(--vrd-stone-soft); border: 1px solid var(--vrd-stone); border-radius: var(--vrd-radius-lg);
	font-size: .92rem;
}
.vrd-held h2 { margin-top: 0; font-size: 1.02rem; }
.vrd-held ul { margin: 0; padding-left: 1.1rem; }
.vrd-held li { color: var(--vrd-ink-soft); }

/* -------------------------------------------------------------- 404 / search */

.vrd-searchform { display: flex; gap: .5rem; flex-wrap: wrap; margin: 1.25rem 0 2rem; }
.vrd-searchform input[type="search"] { min-height: 48px; flex: 1 1 16rem; padding: .55rem .8rem; border: 1px solid var(--vrd-stone); border-radius: var(--vrd-radius); font: inherit; background: var(--vrd-paper); color: var(--vrd-ink); }

@media (prefers-reduced-motion: reduce) {
	* { animation-duration: .01ms !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
}

@media print {
	.vrd-header, .vrd-footer, .vrd-newsletter, .vrd-staging, .vrd-navtoggle { display: none; }
	body { background: #fff; }
}


/* ---------------------------------------------------------- value signal */

/*
 * The deal and value language for a site whose brand says "Deals" but whose editorial policy
 * forbids fake urgency, invented discounts and crossed-out prices.
 *
 * Yellow marks value and price-relevant guidance. It is a calm left rule and a small label, not
 * a starburst — the signal is "this is about cost", not "buy now". Nothing here can render a
 * price: that is still the render guard's decision, and it currently says no on every page.
 */
.vrd-value {
	background: var(--vrd-yellow-wash);
	border-left: 4px solid var(--vrd-yellow);
	border-radius: 0 var(--vrd-radius) var(--vrd-radius) 0;
	padding: .9rem 1.1rem;
}
.vrd-value__label {
	display: inline-block; font-size: .7rem; font-weight: 800;
	text-transform: uppercase; letter-spacing: .1em;
	color: var(--vrd-navy); background: var(--vrd-yellow);
	padding: .15rem .55rem; border-radius: 999px; margin-bottom: .4rem;
}

/* The no-price block is value-coded rather than grey: it is about cost, and it is honest. */
.vrd-price--none {
	background: var(--vrd-yellow-wash);
	border: 1px solid #f2dfa4;
	border-left: 4px solid var(--vrd-yellow);
}
.vrd-price--none h2 { color: var(--vrd-navy); }

/* Evidence stays cool and calm: it is the counterweight to the warm value colour. */
.vrd-basis { background: var(--vrd-aqua-wash); border-color: #b9e4f2; }
