/* ==========================================================================
   DSAB 2026
   Navy + warm gold. Three hues total, gold on under 5% of any page.
   --------------------------------------------------------------------------
   1.  Tokens
   2.  Reset & base
   3.  Utilities
   4.  Layout
   5.  Typography
   6.  Buttons
   7.  Header & navigation
   8.  Hero & trust bar
   9.  Cards
   10. Values, process, stats, people
   11. Software row
   12. Quotes & rail
   13. Panels, tick lists, checklists
   14. Service rows
   15. Page head & breadcrumb
   16. Forms & contact
   17. Article, comments, results, pagination
   18. CTA & footer
   19. Motion
   20. Responsive
   21. Print
   ========================================================================== */


/* 1. Tokens
   ========================================================================== */

:root {
	/* Brand */
	--navy-900: #0f2740;
	--navy-800: #14314f;
	--navy-700: #1b3e63;
	--navy-600: #24507e;
	--navy-500: #2e5f8f;
	--navy-100: #dbe4ee;
	--navy-50:  #eef3f8;

	--gold-700: #9a6f22;
	--gold-600: #b8862f;
	--gold-500: #c99a44;
	--gold-200: #ecdcb9;
	--gold-50:  #faf4e7;

	/* Neutrals */
	--white:     #ffffff;
	--warm-50:   #f7f5f1;
	--warm-100:  #efebe4;
	--line:      #e4e1db;
	--line-soft: #f0ede8;

	--slate-900: #16202b;
	--slate-700: #37424f;
	--slate-500: #5b6470;
	--slate-400: #8a929c;

	/* Semantic */
	--text:        var(--slate-700);
	--text-strong: var(--navy-900);
	--text-muted:  var(--slate-500);
	--bg:          var(--white);
	--bg-tint:     var(--warm-50);
	--border:      var(--line);
	--accent:      var(--gold-600);

	/* Type */
	--font-display: "Source Serif 4", "Iowan Old Style", Georgia, "Times New Roman", serif;
	--font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

	--fs-h1: clamp(2.25rem, 1.45rem + 3.1vw, 3.85rem);
	--fs-h2: clamp(1.75rem, 1.28rem + 1.9vw, 2.7rem);
	--fs-h3: clamp(1.2rem, 1.09rem + 0.42vw, 1.45rem);
	--fs-h4: 1.0625rem;
	--fs-body: 1.0625rem;
	--fs-sm: 0.9375rem;
	--fs-xs: 0.8125rem;

	/* Space */
	--gutter: clamp(1.25rem, 0.65rem + 2.4vw, 2.5rem);
	--section-y: clamp(2.75rem, 1.95rem + 3.2vw, 4.75rem);
	--max: 1200px;
	--measure: 68ch;

	/* Form */
	--radius: 5px;
	--radius-lg: 10px;
	--shadow: 0 1px 2px rgba(15, 39, 64, .04), 0 8px 28px -12px rgba(15, 39, 64, .14);
	--shadow-lift: 0 2px 4px rgba(15, 39, 64, .05), 0 18px 44px -16px rgba(15, 39, 64, .22);

	/* Motion */
	--ease: cubic-bezier(.22, .61, .36, 1);
	--dur: .32s;
}


/* 2. Reset & base
   ========================================================================== */

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

html {
	-webkit-text-size-adjust: 100%;
	scroll-behavior: smooth;
	scroll-padding-top: 96px;
}

body {
	margin: 0;
	background: var(--bg);
	color: var(--text);
	font-family: var(--font-body);
	font-size: var(--fs-body);
	line-height: 1.7;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	overflow-wrap: break-word;

	/* The off-canvas nav parks itself past the right edge, which otherwise widens the
	   document and gives every page a horizontal scrollbar on small screens. `clip`
	   rather than `hidden` because `hidden` would turn body into a scroll container
	   and break the sticky header. */
	overflow-x: clip;
}

body.is-nav-open { overflow: hidden; }

img, svg, video, iframe { max-width: 100%; }
img, video { height: auto; display: block; }

a { color: var(--navy-700); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--navy-500); }

:focus-visible {
	outline: 2px solid var(--gold-600);
	outline-offset: 3px;
	border-radius: 2px;
}

button { font: inherit; color: inherit; }

hr { border: 0; border-top: 1px solid var(--border); margin: 2.5rem 0; }

::selection { background: var(--navy-900); color: #fff; }


/* 3. Utilities
   ========================================================================== */

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

.ds-skip-link {
	position: absolute;
	left: 50%; top: 0;
	transform: translate(-50%, -120%);
	z-index: 999;
	background: var(--navy-900);
	color: #fff;
	padding: .75rem 1.25rem;
	border-radius: 0 0 var(--radius) var(--radius);
	text-decoration: none;
	font-size: var(--fs-sm);
	font-weight: 600;
	transition: transform var(--dur) var(--ease);
}
.ds-skip-link:focus { transform: translate(-50%, 0); color: #fff; }

.ds-icon { width: 1em; height: 1em; flex: none; }

.ds-empty {
	text-align: center;
	color: var(--text-muted);
	padding: 3rem 0;
	font-size: 1.0625rem;
}


/* 4. Layout
   ========================================================================== */

.ds-container {
	width: 100%;
	max-width: var(--max);
	margin-inline: auto;
	padding-inline: var(--gutter);
}

.ds-main { display: block; }

.ds-section { padding-block: var(--section-y); }
.ds-section--tint { background: var(--bg-tint); }
.ds-section--dark { background: var(--navy-900); color: rgba(255, 255, 255, .82); }

.ds-section__foot { margin-top: 2rem; }
.ds-section-head--center + .ds-grid + .ds-section__foot,
.ds-section-head--center ~ .ds-section__foot { text-align: center; }

.ds-section__utility {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding-bottom: 2rem;
	margin-bottom: 2.5rem;
	border-bottom: 1px solid var(--border);
}
.ds-section__utility-text { margin: 0; color: var(--text-muted); font-size: var(--fs-sm); }

.ds-grid { display: grid; gap: clamp(1.25rem, .8rem + 1.4vw, 1.85rem); }
.ds-grid--2 { grid-template-columns: repeat(2, 1fr); }
.ds-grid--3 { grid-template-columns: repeat(3, 1fr); }
.ds-grid--4 { grid-template-columns: repeat(4, 1fr); }

.ds-split {
	display: grid;
	grid-template-columns: 1.15fr .85fr;
	gap: clamp(2rem, 1rem + 4vw, 4.5rem);
	align-items: start;
}
.ds-split--wide { grid-template-columns: 1.35fr .65fr; }
.ds-split--article { grid-template-columns: minmax(0, 1fr) 340px; }
/* Centres a short aside against a tall text column instead of stranding it at the top. */
.ds-split--middle { align-items: center; }

/* Breathing room when a button directly follows a block of copy. */
.ds-split__body > .ds-prose + .ds-btn { margin-top: 1.75rem; }

.ds-sticky { position: sticky; top: 104px; display: grid; gap: 1.25rem; }


/* 5. Typography
   ========================================================================== */

h1, h2, h3, h4, h5, h6 {
	margin: 0 0 .6em;
	color: var(--text-strong);
	font-weight: 600;
	line-height: 1.18;
	letter-spacing: -.015em;
}

h1, .ds-h1 { font-family: var(--font-display); font-size: var(--fs-h1); line-height: 1.07; letter-spacing: -.022em; }
h2, .ds-h2 { font-family: var(--font-display); font-size: var(--fs-h2); line-height: 1.14; letter-spacing: -.018em; }
h3, .ds-h3 { font-size: var(--fs-h3); }
h4 { font-size: var(--fs-h4); }

p { margin: 0 0 1.15em; }
p:last-child { margin-bottom: 0; }

.ds-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: .6rem;
	margin: 0 0 1rem;
	color: var(--gold-700);
	font-size: var(--fs-xs);
	font-weight: 600;
	letter-spacing: .13em;
	text-transform: uppercase;
}
.ds-eyebrow::before {
	content: "";
	width: 28px;
	height: 2px;
	background: var(--gold-600);
	flex: none;
}

.ds-section-head { max-width: 46rem; margin-bottom: clamp(1.75rem, 1.25rem + 1.6vw, 2.5rem); }
.ds-section-head--center { margin-inline: auto; text-align: center; }
.ds-section-head--center .ds-eyebrow { justify-content: center; }
.ds-section-head--split {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
	justify-content: space-between;
	gap: 1.5rem;
	max-width: none;
}
.ds-section-head--split > div:first-child { max-width: 40rem; }
.ds-section-head__title { font-family: var(--font-display); font-size: var(--fs-h2); margin: 0; }
.ds-section-head__intro { margin-top: 1.1rem; color: var(--text-muted); max-width: 42rem; }
.ds-section-head--center .ds-section-head__intro { margin-inline: auto; }

.ds-section--dark .ds-section-head__title,
.ds-section--dark h2, .ds-section--dark h3 { color: #fff; }
.ds-section--dark .ds-eyebrow { color: var(--gold-500); }
.ds-section--dark .ds-eyebrow::before { background: var(--gold-500); }

/* Long-form content */
.ds-prose { max-width: var(--measure); color: var(--text); }
.ds-prose > * + * { margin-top: 1.15em; }
.ds-prose h2 { font-size: clamp(1.4rem, 1.2rem + .8vw, 1.9rem); margin-top: 2.2em; }
.ds-prose h3 { font-size: var(--fs-h3); margin-top: 1.9em; }
.ds-prose h2:first-child, .ds-prose h3:first-child { margin-top: 0; }
.ds-prose a { color: var(--navy-600); font-weight: 500; }
.ds-prose strong { color: var(--text-strong); font-weight: 600; }
.ds-prose ul, .ds-prose ol { padding-left: 1.25rem; margin-block: 1.15em; }
.ds-prose li { margin-bottom: .5em; }
.ds-prose li > p { margin: 0; }
.ds-prose ul { list-style: none; padding-left: 0; }
.ds-prose ul > li {
	position: relative;
	padding-left: 1.65rem;
}
.ds-prose ul > li::before {
	content: "";
	position: absolute;
	left: .1rem; top: .72em;
	width: 7px; height: 7px;
	border-radius: 50%;
	background: var(--gold-600);
}
.ds-prose ol { list-style: decimal; }
.ds-prose blockquote {
	margin: 1.8em 0;
	padding: .25rem 0 .25rem 1.5rem;
	border-left: 3px solid var(--gold-600);
	color: var(--text-strong);
	font-family: var(--font-display);
	font-size: 1.15rem;
}
.ds-prose img { border-radius: var(--radius-lg); }
.ds-prose table { width: 100%; border-collapse: collapse; font-size: var(--fs-sm); }
.ds-prose th, .ds-prose td { padding: .75rem 1rem; border-bottom: 1px solid var(--border); text-align: left; }
.ds-prose th { color: var(--text-strong); font-weight: 600; }
.ds-prose code {
	background: var(--warm-100);
	padding: .15em .45em;
	border-radius: 3px;
	font-size: .9em;
}
/* Wix leftovers in imported content */
.ds-prose .wixGuard { display: none; }
.ds-prose p:empty { display: none; }


/* 6. Buttons
   ========================================================================== */

.ds-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: .55rem;
	padding: .85rem 1.5rem;
	border: 1px solid transparent;
	border-radius: var(--radius);
	font-size: var(--fs-sm);
	font-weight: 600;
	line-height: 1.3;
	text-decoration: none;
	cursor: pointer;
	transition: background-color var(--dur) var(--ease), border-color var(--dur) var(--ease),
	            color var(--dur) var(--ease), transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.ds-btn__icon { width: 1.05em; height: 1.05em; transition: transform var(--dur) var(--ease); }
.ds-btn:hover .ds-btn__icon:not(.ds-btn__icon--lead) { transform: translateX(3px); }
.ds-btn--sm { padding: .6rem 1.05rem; font-size: var(--fs-xs); }
.ds-btn--block { width: 100%; }

.ds-btn--primary { background: var(--navy-900); border-color: var(--navy-900); color: #fff; }
.ds-btn--primary:hover { background: var(--navy-700); border-color: var(--navy-700); color: #fff; box-shadow: var(--shadow); }

.ds-btn--secondary { background: transparent; border-color: var(--navy-900); color: var(--navy-900); }
.ds-btn--secondary:hover { background: var(--navy-900); color: #fff; }

.ds-btn--gold { background: var(--gold-600); border-color: var(--gold-600); color: #1c1405; }
.ds-btn--gold:hover { background: var(--gold-500); border-color: var(--gold-500); color: #1c1405; }

.ds-btn--ghost { background: transparent; border-color: var(--border); color: var(--navy-900); }
.ds-btn--ghost:hover { background: var(--warm-50); border-color: var(--navy-100); color: var(--navy-900); }

.ds-btn--ghost-light { background: transparent; border-color: rgba(255, 255, 255, .3); color: #fff; }
.ds-btn--ghost-light:hover { background: rgba(255, 255, 255, .1); border-color: rgba(255, 255, 255, .55); color: #fff; }

.ds-btn--link {
	padding: 0;
	background: none;
	border: 0;
	border-bottom: 2px solid var(--gold-600);
	border-radius: 0;
	color: var(--navy-900);
	padding-bottom: .3rem;
}
.ds-btn--link:hover { color: var(--gold-700); border-color: var(--gold-700); }


/* 7. Header & navigation
   ========================================================================== */

.ds-topbar {
	background: var(--navy-900);
	color: rgba(255, 255, 255, .72);
	font-size: var(--fs-xs);
}
.ds-topbar__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
	min-height: 42px;
}
.ds-topbar__note {
	display: inline-flex;
	align-items: center;
	gap: .45rem;
	margin: 0;
	letter-spacing: .01em;
	min-width: 0;
}
.ds-topbar__note .ds-icon { width: .95em; height: .95em; flex: none; color: var(--gold-500); }
.ds-topbar__note span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.ds-topbar__contact { display: flex; gap: 1.75rem; margin: 0; padding: 0; list-style: none; }
.ds-topbar__contact a {
	display: inline-flex;
	align-items: center;
	gap: .45rem;
	color: rgba(255, 255, 255, .82);
	text-decoration: none;
	transition: color var(--dur) var(--ease);
}
.ds-topbar__contact a:hover { color: #fff; }
.ds-topbar__contact .ds-icon { width: .95em; height: .95em; color: var(--gold-500); }

.ds-header {
	position: sticky;
	top: 0;
	z-index: 100;
	/* Solid, not frosted, on purpose: backdrop-filter would make this element a
	   containing block for position:fixed descendants, which traps the off-canvas
	   nav inside the header box and widens the document on small screens. */
	background: var(--white);
	border-bottom: 1px solid var(--line-soft);
	transition: box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.ds-header.is-stuck { box-shadow: 0 1px 0 var(--line), 0 10px 30px -18px rgba(15, 39, 64, .3); }

.ds-header__inner {
	display: flex;
	align-items: center;
	gap: 1.5rem;
	min-height: 78px;
	transition: min-height var(--dur) var(--ease);
}
.ds-header.is-stuck .ds-header__inner { min-height: 66px; }

.ds-logo { display: inline-flex; flex: none; }
.ds-logo img { width: auto; height: 52px; transition: height var(--dur) var(--ease); }
.ds-header.is-stuck .ds-logo img { height: 42px; }

.ds-nav { margin-left: auto; }
.ds-nav__list {
	display: flex;
	align-items: center;
	gap: .35rem;
	margin: 0;
	padding: 0;
	list-style: none;
}
.ds-nav__item { position: relative; }
.ds-nav__link {
	display: inline-flex;
	align-items: center;
	padding: .55rem .8rem;
	border-radius: var(--radius);
	color: var(--slate-700);
	font-size: var(--fs-sm);
	font-weight: 500;
	text-decoration: none;
	white-space: nowrap;
	transition: color var(--dur) var(--ease), background-color var(--dur) var(--ease);
}
.ds-nav__link > span { position: relative; display: inline-block; padding-bottom: 2px; }
.ds-nav__link > span::after {
	content: "";
	position: absolute;
	left: 0; right: 0; bottom: 0;
	height: 2px;
	background: var(--gold-600);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform var(--dur) var(--ease);
}
.ds-nav__link:hover { color: var(--navy-900); }
.ds-nav__link:hover > span::after,
.ds-nav__item.is-current > .ds-nav__link > span::after { transform: scaleX(1); }
.ds-nav__item.is-current > .ds-nav__link { color: var(--navy-900); font-weight: 600; }

.ds-nav__toggle {
	display: none;
	background: none;
	border: 0;
	padding: .4rem;
	cursor: pointer;
	color: var(--slate-500);
}

.ds-nav__submenu {
	position: absolute;
	top: calc(100% + 8px);
	left: 0;
	min-width: 230px;
	margin: 0;
	padding: .5rem;
	list-style: none;
	background: #fff;
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-lift);
	opacity: 0;
	visibility: hidden;
	transform: translateY(6px);
	transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease), visibility var(--dur);
}
.ds-nav__item--parent:hover > .ds-nav__submenu,
.ds-nav__item--parent:focus-within > .ds-nav__submenu {
	opacity: 1; visibility: visible; transform: translateY(0);
}
.ds-nav__submenu .ds-nav__link { display: flex; width: 100%; padding: .55rem .75rem; }
.ds-nav__submenu .ds-nav__link:hover { background: var(--warm-50); }

.ds-nav__footer { display: none; }

.ds-header__actions { display: flex; align-items: center; gap: .75rem; flex: none; }

.ds-burger {
	display: none;
	align-items: center;
	justify-content: center;
	width: 44px; height: 44px;
	background: none;
	border: 1px solid var(--border);
	border-radius: var(--radius);
	cursor: pointer;
}
.ds-burger__box { display: grid; gap: 5px; width: 20px; }
.ds-burger__box span {
	display: block;
	height: 2px;
	background: var(--navy-900);
	border-radius: 2px;
	transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease);
}
.ds-burger[aria-expanded="true"] .ds-burger__box span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.ds-burger[aria-expanded="true"] .ds-burger__box span:nth-child(2) { opacity: 0; }
.ds-burger[aria-expanded="true"] .ds-burger__box span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.ds-nav-overlay {
	position: fixed;
	inset: 0;
	z-index: 90;
	background: rgba(15, 39, 64, .45);
	opacity: 0;
	transition: opacity var(--dur) var(--ease);
}
.ds-nav-overlay.is-visible { opacity: 1; }


/* 8. Hero & trust bar
   ========================================================================== */

.ds-hero {
	position: relative;
	padding-top: clamp(3rem, 1.6rem + 5vw, 5.5rem);
	background:
		radial-gradient(1200px 420px at 88% -8%, var(--navy-50), transparent 70%),
		var(--white);
}

.ds-hero__grid {
	display: grid;
	grid-template-columns: 1.05fr .95fr;
	gap: clamp(2rem, 1rem + 4vw, 4.5rem);
	align-items: center;
	padding-bottom: clamp(3rem, 1.8rem + 4.5vw, 5.5rem);
}

.ds-hero__title {
	max-width: 15ch;
	margin-bottom: 1.4rem;
	color: var(--navy-900);
}
.ds-hero__intro {
	max-width: 46ch;
	margin-bottom: 2.1rem;
	color: var(--text-muted);
	font-size: 1.125rem;
	line-height: 1.72;
}
.ds-hero__actions { display: flex; flex-wrap: wrap; gap: .85rem; }

.ds-hero__figure { position: relative; }
.ds-hero__frame {
	position: relative;
	aspect-ratio: 14 / 15;
	overflow: hidden;
	border-radius: var(--radius-lg);
	background: var(--warm-100);
	box-shadow: var(--shadow-lift);
}
/* Direct child only — the fallback panel nests its own logo mark, which must keep
   its intrinsic size rather than being stretched to fill the frame. */
.ds-hero__frame > img { width: 100%; height: 100%; object-fit: cover; }
.ds-hero__frame::after {
	content: "";
	position: absolute;
	inset: 0;
	box-shadow: inset 0 0 0 1px rgba(15, 39, 64, .08);
	border-radius: inherit;
	pointer-events: none;
}

/* Shown until a hero photo is uploaded. Deliberately composed so the page still
   looks finished rather than broken. */
.ds-hero__fallback {
	display: flex;
	flex-direction: column;
	justify-content: center;
	height: 100%;
	padding: clamp(1.75rem, 1rem + 3vw, 3rem);
	background: var(--navy-900);
	background-image: radial-gradient(600px 340px at 100% 0%, rgba(184, 134, 47, .2), transparent 65%);
}
.ds-hero__fallback-mark { width: 190px; height: auto; margin-bottom: 2rem; }
.ds-hero__fallback-list { margin: 0; padding: 0; list-style: none; display: grid; gap: .9rem; }
.ds-hero__fallback-list li {
	position: relative;
	padding-left: 1.6rem;
	color: rgba(255, 255, 255, .82);
	font-size: var(--fs-sm);
	line-height: 1.5;
}
.ds-hero__fallback-list li::before {
	content: "";
	position: absolute;
	left: 0; top: .62em;
	width: 7px; height: 7px;
	border-radius: 50%;
	background: var(--gold-500);
}
.ds-hero__fallback-hint {
	margin: 1.75rem 0 0;
	padding-top: 1.25rem;
	border-top: 1px solid rgba(255, 255, 255, .16);
	color: rgba(255, 255, 255, .5);
	font-size: var(--fs-xs);
	line-height: 1.5;
}

.ds-hero__badge {
	position: absolute;
	left: -28px;
	bottom: 34px;
	display: grid;
	gap: .1rem;
	padding: 1.15rem 1.4rem;
	background: var(--navy-900);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-lift);
	color: #fff;
}
.ds-hero__badge-num {
	font-family: var(--font-display);
	font-size: 2.1rem;
	font-weight: 600;
	line-height: 1;
	letter-spacing: -.02em;
}
.ds-hero__badge-num span { color: var(--gold-500); }
.ds-hero__badge-label {
	max-width: 12ch;
	color: rgba(255, 255, 255, .68);
	font-size: var(--fs-xs);
	line-height: 1.4;
}

.ds-trustbar {
	border-block: 1px solid var(--border);
	background: var(--warm-50);
	background-image: linear-gradient(180deg, rgba(15, 39, 64, .022), transparent 60%);
}
.ds-trustbar__list {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	margin: 0;
	padding: 0;
	list-style: none;
}
.ds-trustbar__list li {
	display: flex;
	align-items: center;
	gap: .85rem;
	padding: 1.5rem 1.75rem;
	color: var(--navy-900);
	font-size: var(--fs-sm);
	font-weight: 500;
	line-height: 1.4;
	/* Hairline dividers between items rather than floating text in a row. */
	border-left: 1px solid var(--border);
}
.ds-trustbar__list li:first-child { border-left: 0; padding-left: 0; }
.ds-trustbar__list li:last-child { padding-right: 0; }

.ds-trustbar__list .ds-icon {
	width: 1rem; height: 1rem;
	flex: none;
	padding: .5rem;
	color: var(--gold-700);
	background: var(--white);
	border: 1px solid var(--gold-200);
	border-radius: 50%;
	box-sizing: content-box;
	box-shadow: 0 1px 2px rgba(15, 39, 64, .05);
}


/* 9. Cards
   ========================================================================== */

.ds-card {
	position: relative;
	display: flex;
	flex-direction: column;
	background: #fff;
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.ds-card:hover { transform: translateY(-3px); border-color: var(--navy-100); box-shadow: var(--shadow-lift); }

.ds-card__overlay-link { position: absolute; inset: 0; z-index: 1; border-radius: inherit; }

.ds-card--service { padding: 1.85rem 1.6rem; }

/* Two-up service card: icon rail on the left, content on the right. The extra width
   at two-per-row is enough to show four features instead of three. */
.ds-card--wide {
	flex-direction: row;
	gap: 1.6rem;
	padding: 2rem 1.9rem;
}
.ds-card__aside {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: .9rem;
	flex: none;
}
.ds-card--wide .ds-card__icon { margin-bottom: 0; }
.ds-card--wide .ds-card__aside::after {
	content: "";
	flex: 1;
	width: 1px;
	min-height: 12px;
	background: linear-gradient(180deg, var(--line), transparent);
}
.ds-card__main { display: flex; flex-direction: column; flex: 1; min-width: 0; }
.ds-card__list--two { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .55rem 1.25rem; }

.ds-card__icon {
	display: grid;
	place-items: center;
	width: 54px; height: 54px;
	margin-bottom: 1.35rem;
	background: var(--navy-50);
	border: 1px solid var(--navy-100);
	border-radius: var(--radius);
	color: var(--navy-700);
	transition: background-color var(--dur) var(--ease), color var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.ds-card__icon .ds-icon { width: 26px; height: 26px; stroke-width: 1.5; }
.ds-card:hover .ds-card__icon { background: var(--navy-900); border-color: var(--navy-900); color: #fff; }

.ds-card__title { font-size: var(--fs-h3); margin-bottom: .6rem; line-height: 1.28; }
.ds-card__title a { position: relative; z-index: 2; color: inherit; text-decoration: none; }
.ds-card__title a:hover { color: var(--navy-600); }

.ds-card__text { margin: 0; color: var(--text-muted); font-size: var(--fs-sm); }

.ds-card__list { margin: 1.15rem 0 0; padding: 0; list-style: none; display: grid; gap: .5rem; }
.ds-card__list li { display: flex; gap: .55rem; font-size: var(--fs-xs); color: var(--slate-500); line-height: 1.5; }
.ds-card__list .ds-icon { width: .95rem; height: .95rem; margin-top: .18rem; color: var(--gold-600); }

.ds-card__more {
	display: inline-flex;
	align-items: center;
	gap: .4rem;
	margin-top: auto;
	padding-top: 1.35rem;
	color: var(--navy-900);
	font-size: var(--fs-xs);
	font-weight: 600;
	letter-spacing: .02em;
}
.ds-card__more .ds-icon { width: 1rem; height: 1rem; transition: transform var(--dur) var(--ease); }
.ds-card:hover .ds-card__more { color: var(--gold-700); }
.ds-card:hover .ds-card__more .ds-icon { transform: translateX(4px); }

/* News card */
.ds-card--news { overflow: hidden; }

.ds-card__media {
	position: relative;
	display: block;
	aspect-ratio: 16 / 10;
	overflow: hidden;
	background: var(--warm-100);
}
.ds-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.ds-card--news:hover .ds-card__media img { transform: scale(1.05); }
/* Keeps the date legible over any photograph. */
.ds-card__media::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(160deg, rgba(15, 39, 64, .28) 0 38%, transparent 62%);
	pointer-events: none;
}
.ds-card__media-fallback {
	display: grid;
	place-items: center;
	height: 100%;
	color: var(--slate-400);
}
.ds-card__media-fallback .ds-icon { width: 2rem; height: 2rem; }

.ds-card__date {
	position: absolute;
	top: .9rem; left: .9rem;
	z-index: 1;
	display: grid;
	justify-items: center;
	gap: 1px;
	padding: .5rem .7rem .45rem;
	background: rgba(255, 255, 255, .95);
	border-radius: var(--radius);
	box-shadow: 0 2px 10px -4px rgba(15, 39, 64, .4);
	line-height: 1;
}
.ds-card__date-day {
	color: var(--navy-900);
	font-family: var(--font-display);
	font-size: 1.15rem;
	font-weight: 600;
}
.ds-card__date-mon {
	color: var(--gold-700);
	font-size: .625rem;
	font-weight: 700;
	letter-spacing: .1em;
	text-transform: uppercase;
}

.ds-card__body { display: flex; flex-direction: column; flex: 1; padding: 1.4rem 1.5rem 1.6rem; }

.ds-card__meta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: .75rem;
	margin: 0 0 .8rem;
	color: var(--slate-400);
	font-size: var(--fs-xs);
	letter-spacing: .02em;
}
.ds-card__tag {
	padding: .2rem .55rem;
	background: var(--gold-50);
	border: 1px solid var(--gold-200);
	border-radius: 100px;
	color: var(--gold-700);
	font-size: .6875rem;
	font-weight: 600;
	letter-spacing: .07em;
	text-transform: uppercase;
}
.ds-card__read { white-space: nowrap; }

/* Even rhythm across a row regardless of how long each title or excerpt runs. */
.ds-clamp-2, .ds-clamp-3 {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.ds-clamp-2 { -webkit-line-clamp: 2; }
.ds-clamp-3 { -webkit-line-clamp: 3; }

.ds-card--news .ds-card__title { font-size: 1.1875rem; line-height: 1.34; margin-bottom: .55rem; }
.ds-card--news .ds-card__text { min-height: calc(3 * 1.6em); }
.ds-card--news .ds-card__more {
	margin-top: 1.15rem;
	padding-top: 1.1rem;
	border-top: 1px solid var(--line-soft);
	width: 100%;
}


/* 10. Values, process, stats, people
   ========================================================================== */

.ds-value { text-align: center; padding: .5rem; }
.ds-value__icon {
	display: grid;
	place-items: center;
	width: 58px; height: 58px;
	margin: 0 auto 1.25rem;
	background: var(--gold-50);
	border: 1px solid var(--gold-200);
	border-radius: 50%;
	color: var(--gold-700);
}
.ds-value__icon .ds-icon { width: 1.5rem; height: 1.5rem; }
.ds-value__title { font-size: 1.125rem; margin-bottom: .45rem; }
.ds-value__text { margin: 0; color: var(--text-muted); font-size: var(--fs-sm); max-width: 30ch; margin-inline: auto; }

.ds-process {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: clamp(1.5rem, 1rem + 2vw, 2.75rem);
	margin: 0;
	padding: 0;
	list-style: none;
	counter-reset: step;
}
.ds-process__step { position: relative; padding-top: 2.25rem; }
.ds-process__step::before {
	content: "";
	position: absolute;
	top: 0; left: 0; right: 0;
	height: 1px;
	background: rgba(255, 255, 255, .16);
}
.ds-process__step::after {
	content: "";
	position: absolute;
	top: -3px; left: 0;
	width: 7px; height: 7px;
	background: var(--gold-500);
	border-radius: 50%;
}
.ds-process__num {
	display: block;
	margin-bottom: .85rem;
	color: var(--gold-500);
	font-family: var(--font-display);
	font-size: .9rem;
	font-weight: 600;
	letter-spacing: .08em;
}
.ds-process__title { font-size: 1.125rem; margin-bottom: .55rem; color: #fff; }
.ds-process__text { margin: 0; color: rgba(255, 255, 255, .68); font-size: var(--fs-sm); }

.ds-stats {
	display: grid;
	grid-template-columns: repeat(3, auto);
	justify-content: start;
	gap: clamp(1.5rem, 1rem + 2.5vw, 3rem);
	margin: 2.25rem 0;
	padding: 1.6rem 0;
	border-block: 1px solid var(--border);
}
/* Grid areas rather than column-reverse: this puts every value in row 1 and every
   label in row 2, so the numbers share a baseline even when labels wrap to two lines. */
.ds-stats__item {
	display: grid;
	grid-template-areas: "value" "label";
	grid-template-rows: auto 1fr;
	align-content: start;
}
.ds-stats__value { grid-area: value; }
.ds-stats__label { grid-area: label; }
.ds-stats__value {
	margin: 0;
	color: var(--navy-900);
	font-family: var(--font-display);
	font-size: clamp(1.85rem, 1.5rem + 1.2vw, 2.4rem);
	font-weight: 600;
	line-height: 1;
	letter-spacing: -.02em;
	font-variant-numeric: tabular-nums;
}
.ds-stats__label { margin-top: .5rem; color: var(--text-muted); font-size: var(--fs-xs); max-width: 16ch; }

/* Full-width variant used under the welcome split. */
.ds-stats--band {
	grid-template-columns: repeat(4, 1fr);
	justify-content: stretch;
	gap: 1.5rem;
	margin: clamp(2.5rem, 1.6rem + 3vw, 4rem) 0 0;
	padding-top: 2rem;
	border-bottom: 0;
}
.ds-stats--band .ds-stats__label { max-width: 18ch; }

.ds-people {
	padding: 1.85rem 1.75rem;
	background: #fff;
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow);
}
.ds-people__title { font-size: 1rem; letter-spacing: .01em; margin-bottom: 1.35rem; }
.ds-people__list { margin: 0 0 1.5rem; padding: 0; list-style: none; display: grid; gap: 1.1rem; }
.ds-people__item { display: flex; align-items: center; gap: .95rem; }
.ds-people__avatar {
	display: grid;
	place-items: center;
	width: 48px; height: 48px;
	flex: none;
	overflow: hidden;
	border-radius: 50%;
	background: var(--navy-50);
	color: var(--navy-600);
	font-weight: 600;
}
.ds-people__avatar img { width: 100%; height: 100%; object-fit: cover; }
.ds-people__name { margin: 0; color: var(--text-strong); font-size: var(--fs-sm); font-weight: 600; }
.ds-people__role { margin: 0; color: var(--text-muted); font-size: var(--fs-xs); }
.ds-people__link {
	display: inline-flex;
	align-items: center;
	gap: .4rem;
	color: var(--navy-900);
	font-size: var(--fs-xs);
	font-weight: 600;
	text-decoration: none;
	border-bottom: 2px solid var(--gold-600);
	padding-bottom: .25rem;
}
.ds-people__link .ds-icon { width: 1rem; height: 1rem; transition: transform var(--dur) var(--ease); }
.ds-people__link:hover .ds-icon { transform: translateX(3px); }

.ds-member {
	background: #fff;
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	overflow: hidden;
	transition: box-shadow var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.ds-member:hover { transform: translateY(-3px); box-shadow: var(--shadow-lift); }
.ds-member__photo {
	position: relative;
	display: grid;
	place-items: center;
	aspect-ratio: 4 / 5;
	background: var(--white);
	color: var(--navy-600);
	font-family: var(--font-display);
	font-size: 3.5rem;
}
.ds-member__photo img { width: 100%; height: 100%; object-fit: cover; }
/* These are cut-out studio portraits, so the subject stops abruptly at the foot of the
   frame. A short fade to the card colour dissolves that edge. */
.ds-member__photo::after {
	content: "";
	position: absolute;
	inset-inline: 0;
	bottom: 0;
	height: 22%;
	background: linear-gradient(to top, var(--white), rgba(255, 255, 255, 0));
	pointer-events: none;
}
.ds-member__photo:has(.ds-member__initials)::after { display: none; }
.ds-member__body { padding: 1.5rem 1.6rem 1.75rem; }
.ds-member__name { font-size: 1.15rem; margin-bottom: .2rem; }
.ds-member__role {
	margin: 0 0 .9rem;
	color: var(--gold-700);
	font-size: var(--fs-xs);
	font-weight: 600;
	letter-spacing: .06em;
	text-transform: uppercase;
}
.ds-member__bio { color: var(--text-muted); font-size: var(--fs-sm); }
.ds-member__creds { margin: .9rem 0 0; padding-top: .9rem; border-top: 1px solid var(--line-soft); color: var(--slate-400); font-size: var(--fs-xs); }


/* 11. Software row
   ========================================================================== */

.ds-section--software { padding-block: clamp(2.5rem, 1.6rem + 3vw, 4rem); border-top: 1px solid var(--line-soft); }
.ds-software__heading {
	margin: 0 0 2rem;
	color: var(--slate-400);
	font-size: var(--fs-xs);
	font-weight: 600;
	letter-spacing: .13em;
	text-transform: uppercase;
	text-align: center;
}
.ds-software__list {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: clamp(2rem, 1rem + 4vw, 4.5rem);
	margin: 0;
	padding: 0;
	list-style: none;
}
.ds-software__item img {
	width: auto;
	max-height: 42px;
	object-fit: contain;
	/* brightness() as well as grayscale(): these logos range from near-black to pale
	   blue, and grayscale alone leaves the light ones almost invisible on white. */
	filter: grayscale(1) brightness(.7);
	opacity: .85;
	transition: filter var(--dur) var(--ease), opacity var(--dur) var(--ease);
}
.ds-software__item:hover img { filter: grayscale(0); opacity: 1; }


/* 12. Quotes & rail
   ========================================================================== */

.ds-rail {
	display: grid;
	grid-auto-flow: column;
	grid-auto-columns: minmax(300px, 1fr);
	gap: 1.5rem;
	margin: 0;
	padding: 0 0 1rem;
	list-style: none;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scrollbar-width: thin;
	overscroll-behavior-x: contain;
}
.ds-rail::-webkit-scrollbar { height: 4px; }
.ds-rail::-webkit-scrollbar-thumb { background: var(--line); border-radius: 4px; }
.ds-rail__item { scroll-snap-align: start; }

.ds-rail__nav { display: flex; gap: .5rem; }
.ds-rail__btn {
	display: grid;
	place-items: center;
	width: 42px; height: 42px;
	background: #fff;
	border: 1px solid var(--border);
	border-radius: 50%;
	color: var(--navy-900);
	cursor: pointer;
	transition: background-color var(--dur) var(--ease), border-color var(--dur) var(--ease), opacity var(--dur) var(--ease);
}
.ds-rail__btn:hover:not(:disabled) { background: var(--navy-900); border-color: var(--navy-900); color: #fff; }
.ds-rail__btn:disabled { opacity: .35; cursor: default; }
.ds-rail__btn .ds-icon { width: 1.1rem; height: 1.1rem; }
[data-rail-prev] .ds-icon { transform: rotate(180deg); }

.ds-quote {
	display: flex;
	flex-direction: column;
	height: 100%;
	margin: 0;
	padding: 2rem 1.85rem;
	background: #fff;
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
}
.ds-quote--card { transition: box-shadow var(--dur) var(--ease), transform var(--dur) var(--ease); }
.ds-quote--card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lift); }
.ds-quote__mark { width: 1.6rem; height: 1.6rem; margin-bottom: 1.1rem; color: var(--gold-500); }
.ds-quote__text {
	flex: 1;
	margin: 0 0 1.5rem;
	color: var(--text-strong);
	font-family: var(--font-display);
	font-size: 1.125rem;
	line-height: 1.6;
}
.ds-quote__by {
	display: flex;
	align-items: center;
	gap: .85rem;
	padding-top: 1.25rem;
	border-top: 1px solid var(--line-soft);
}
.ds-quote__avatar {
	display: grid;
	place-items: center;
	width: 44px; height: 44px;
	flex: none;
	overflow: hidden;
	border-radius: 50%;
	background: var(--navy-50);
	color: var(--navy-600);
	font-weight: 600;
}
.ds-quote__avatar img { width: 100%; height: 100%; object-fit: cover; }
.ds-quote__name { display: block; color: var(--text-strong); font-size: var(--fs-sm); font-weight: 600; }
.ds-quote__role { display: block; color: var(--text-muted); font-size: var(--fs-xs); }


/* 13. Panels, tick lists, checklists
   ========================================================================== */

.ds-panel {
	padding: 1.85rem 1.75rem;
	background: #fff;
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
}
.ds-panel--flush { background: #fff; padding: 2.25rem 2rem; }
.ds-panel--navy { background: var(--navy-900); border-color: var(--navy-900); color: rgba(255, 255, 255, .78); }
.ds-panel--navy .ds-panel__title { color: #fff; }
.ds-panel--navy p { font-size: var(--fs-sm); }
.ds-panel__title { font-size: 1.0625rem; margin-bottom: 1.1rem; }
.ds-panel__icon {
	display: grid;
	place-items: center;
	width: 48px; height: 48px;
	margin-bottom: 1.15rem;
	background: var(--gold-50);
	border-radius: var(--radius);
	color: var(--gold-700);
}
.ds-panel__icon .ds-icon { width: 1.35rem; height: 1.35rem; }
.ds-panel__icon--navy { background: var(--navy-50); color: var(--navy-700); }
.ds-panel__icon--navy .ds-icon { width: 1.45rem; height: 1.45rem; stroke-width: 1.5; }
.ds-panel .ds-btn { margin-top: 1.35rem; }
.ds-panel__phone {
	display: flex;
	align-items: center;
	gap: .5rem;
	margin: 1.1rem 0 0;
	font-size: var(--fs-sm);
}
.ds-panel__phone .ds-icon { color: var(--gold-500); }
.ds-panel__phone a { color: #fff; text-decoration: none; }
.ds-panel__phone a:hover { color: var(--gold-500); }

.ds-ticklist { margin: 0; padding: 0; list-style: none; display: grid; gap: .7rem; }
.ds-ticklist li { display: flex; gap: .7rem; font-size: var(--fs-sm); line-height: 1.55; }
.ds-ticklist .ds-icon { width: 1.05rem; height: 1.05rem; margin-top: .28rem; flex: none; color: var(--gold-600); }
.ds-ticklist a { color: var(--slate-700); text-decoration: none; }
.ds-ticklist a:hover { color: var(--navy-600); text-decoration: underline; }
.ds-ticklist--two { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .7rem 1.75rem; }

.ds-checklist {
	display: flex;
	flex-direction: column;
	padding: 1.85rem 1.75rem;
	background: #fff;
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
}
.ds-checklist__head { padding-bottom: 1.25rem; margin-bottom: 1.25rem; border-bottom: 1px solid var(--line-soft); }
.ds-checklist__icon {
	display: grid;
	place-items: center;
	width: 44px; height: 44px;
	margin-bottom: 1rem;
	background: var(--navy-50);
	border-radius: var(--radius);
	color: var(--navy-700);
}
.ds-checklist__icon .ds-icon { width: 1.25rem; height: 1.25rem; }
.ds-checklist__title { font-size: 1.125rem; margin-bottom: .3rem; }
.ds-checklist__count { margin: 0; color: var(--slate-400); font-size: var(--fs-xs); letter-spacing: .04em; text-transform: uppercase; }
.ds-checklist__items { margin: 0; padding: 0; list-style: none; display: grid; gap: .1rem; }
.ds-checklist__items li { display: flex; align-items: flex-start; gap: .7rem; padding: .45rem 0; }
.ds-checklist__box {
	width: 1.05rem; height: 1.05rem;
	margin: .3rem 0 0;
	flex: none;
	accent-color: var(--gold-600);
	cursor: pointer;
}
.ds-checklist__items label { font-size: var(--fs-sm); line-height: 1.55; cursor: pointer; transition: color var(--dur) var(--ease); }
.ds-checklist__box:checked + label { color: var(--slate-400); text-decoration: line-through; }
.ds-checklist__note { margin-top: 1.25rem; font-size: var(--fs-sm); }


/* 14. Service rows
   ========================================================================== */

.ds-servicerow {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(2rem, 1rem + 4vw, 4.5rem);
	padding-block: clamp(2.5rem, 1.6rem + 3vw, 4rem);
	border-top: 1px solid var(--border);
}
.ds-servicerow:first-child { border-top: 0; padding-top: 0; }

.ds-servicerow__head { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.25rem; }
.ds-servicerow__icon {
	display: grid;
	place-items: center;
	width: 56px; height: 56px;
	background: var(--navy-50);
	border: 1px solid var(--navy-100);
	border-radius: var(--radius);
	color: var(--navy-700);
}
.ds-servicerow__icon .ds-icon { width: 28px; height: 28px; stroke-width: 1.5; }

.ds-servicerow__title { font-size: clamp(1.4rem, 1.2rem + .8vw, 1.9rem); margin-bottom: 1rem; }
.ds-servicerow__title a { color: inherit; text-decoration: none; }
.ds-servicerow__title a:hover { color: var(--navy-600); }
.ds-servicerow__text { margin-bottom: 1.75rem; color: var(--text-muted); }

.ds-servicerow__features {
	padding: 1.85rem 1.75rem;
	background: var(--warm-50);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	align-self: start;
}
.ds-servicerow__features-title {
	font-size: var(--fs-xs);
	font-weight: 600;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: var(--slate-400);
	margin-bottom: 1.25rem;
}


/* 15. Page head & breadcrumb
   ========================================================================== */

.ds-pagehead {
	position: relative;
	overflow: hidden;
	padding-block: clamp(2rem, 1.4rem + 2.4vw, 3.25rem) clamp(2.25rem, 1.5rem + 2.8vw, 3.75rem);
	background: var(--warm-50);
	border-bottom: 1px solid var(--border);
}
/* Two soft washes and a hairline grid keep the band from reading as a flat slab. */
.ds-pagehead::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		radial-gradient(760px 300px at 88% -30%, rgba(46, 95, 143, .13), transparent 70%),
		radial-gradient(520px 260px at 6% 120%, rgba(184, 134, 47, .09), transparent 70%);
	pointer-events: none;
}
.ds-pagehead::after {
	content: "";
	position: absolute;
	inset-inline: 0;
	bottom: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--gold-600) 0 96px, var(--border) 96px);
}
.ds-pagehead > .ds-container { position: relative; z-index: 1; }

.ds-pagehead__title { max-width: 20ch; margin-bottom: 0; color: var(--navy-900); }
.ds-pagehead__intro { max-width: 54ch; margin-top: 1.1rem; color: var(--text-muted); font-size: 1.0625rem; }
.ds-pagehead--article .ds-pagehead__title { max-width: 26ch; }

/* Jump links — the one thing the sticky nav does not already give you. */
.ds-pagehead--has-jump { padding-bottom: 0; }

.ds-jump {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: .7rem 1rem;
	margin-top: clamp(1.5rem, 1.1rem + 1.4vw, 2.25rem);
	padding: 1.1rem 0 1.35rem;
	border-top: 1px solid var(--border);
}
.ds-jump__label {
	color: var(--slate-400);
	font-size: var(--fs-xs);
	font-weight: 600;
	letter-spacing: .1em;
	text-transform: uppercase;
	margin-right: .35rem;
}
.ds-jump__list { display: flex; flex-wrap: wrap; gap: .55rem; margin: 0; padding: 0; list-style: none; }
.ds-jump__link {
	display: inline-flex;
	align-items: center;
	gap: .35rem;
	padding: .45rem .85rem;
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: 100px;
	color: var(--navy-800);
	font-size: var(--fs-xs);
	font-weight: 500;
	text-decoration: none;
	transition: background-color var(--dur) var(--ease), border-color var(--dur) var(--ease), color var(--dur) var(--ease);
}
.ds-jump__link .ds-icon { width: .85rem; height: .85rem; color: var(--gold-600); transition: transform var(--dur) var(--ease); }
.ds-jump__link:hover {
	background: var(--navy-900);
	border-color: var(--navy-900);
	color: #fff;
}
.ds-jump__link:hover .ds-icon { color: var(--gold-500); transform: translateY(2px); }

.ds-breadcrumb {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: .5rem;
	margin-bottom: 1.5rem;
	color: var(--slate-400);
	font-size: var(--fs-xs);
}
.ds-breadcrumb a { color: var(--slate-500); text-decoration: none; }
.ds-breadcrumb a:hover { color: var(--navy-700); text-decoration: underline; }
.ds-breadcrumb [aria-current] { color: var(--navy-900); font-weight: 500; }


/* 16. Forms & contact
   ========================================================================== */

.ds-contact { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(2rem, 1rem + 4vw, 4rem); align-items: start; }

.ds-contact__list { margin: 1.75rem 0 0; padding: 0; list-style: none; display: grid; gap: 1.6rem; }
.ds-contact__item { display: flex; gap: 1.1rem; }
.ds-contact__icon {
	display: grid;
	place-items: center;
	width: 46px; height: 46px;
	flex: none;
	background: var(--navy-50);
	border-radius: var(--radius);
	color: var(--navy-700);
}
.ds-contact__icon .ds-icon { width: 1.2rem; height: 1.2rem; }
.ds-contact__label {
	margin: 0 0 .35rem;
	font-size: var(--fs-xs);
	font-weight: 600;
	letter-spacing: .09em;
	text-transform: uppercase;
	color: var(--slate-400);
}
.ds-contact__item p { margin: 0 0 .2rem; font-size: var(--fs-sm); }
.ds-contact__item a { color: var(--slate-700); text-decoration: none; }
.ds-contact__item a:hover { color: var(--navy-600); text-decoration: underline; }

.ds-contact__form {
	padding: clamp(1.75rem, 1.1rem + 2vw, 2.75rem);
	background: #fff;
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow);
}
.ds-contact__form-note { margin-bottom: 1.75rem; color: var(--text-muted); font-size: var(--fs-sm); }

.ds-form { display: grid; gap: 1.15rem; }
.ds-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.15rem; }
.ds-form__hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.ds-field { display: grid; gap: .45rem; }
.ds-field label,
.ds-form label {
	color: var(--text-strong);
	font-size: var(--fs-xs);
	font-weight: 600;
	letter-spacing: .03em;
}
.ds-field span[aria-hidden] { color: var(--gold-700); }

.ds-field input,
.ds-field select,
.ds-field textarea,
.ds-form input[type="text"],
.ds-form input[type="email"],
.ds-form input[type="url"],
.ds-form textarea,
.ds-search__input {
	width: 100%;
	padding: .8rem .95rem;
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	color: var(--text-strong);
	font-family: inherit;
	font-size: var(--fs-sm);
	line-height: 1.5;
	transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.ds-field textarea, .ds-form textarea { resize: vertical; min-height: 140px; }
.ds-field input:focus,
.ds-field select:focus,
.ds-field textarea:focus,
.ds-form input:focus,
.ds-form textarea:focus,
.ds-search__input:focus {
	outline: none;
	border-color: var(--navy-500);
	box-shadow: 0 0 0 3px rgba(46, 95, 143, .12);
}
.ds-field select {
	appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235b6470' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right .85rem center;
	background-size: 1.05rem;
	padding-right: 2.5rem;
}
::placeholder { color: var(--slate-400); opacity: 1; }

.ds-notice {
	display: flex;
	align-items: flex-start;
	gap: .75rem;
	padding: 1rem 1.15rem;
	margin-bottom: 1.5rem;
	border-radius: var(--radius);
	font-size: var(--fs-sm);
	border: 1px solid;
}
.ds-notice p { margin: 0; }
.ds-notice .ds-icon { width: 1.1rem; height: 1.1rem; margin-top: .25rem; flex: none; }
.ds-notice--success { background: #f0f7f1; border-color: #cbe4d0; color: #1f5130; }
.ds-notice--error { background: #fdf2f2; border-color: #f2d2d2; color: #8a2a2a; }

.ds-searchbar { max-width: 34rem; margin-bottom: 2.5rem; }
.ds-search { position: relative; display: flex; gap: .6rem; }
.ds-search__icon {
	position: absolute;
	left: .9rem; top: 50%;
	transform: translateY(-50%);
	color: var(--slate-400);
	pointer-events: none;
}
.ds-search__icon .ds-icon { width: 1.05rem; height: 1.05rem; }
.ds-search__input { padding-left: 2.65rem; }

.ds-map { line-height: 0; border-top: 1px solid var(--border); background: var(--warm-100); }
.ds-map iframe {
	display: block;
	/* Set here as well as on the attributes: if the embed is slow or blocked, the
	   element still reserves its box instead of collapsing to a 300×150 default. */
	width: 100%;
	height: clamp(320px, 34vw, 460px);
	border: 0;
	filter: grayscale(.35) contrast(1.02);
}


/* 17. Article, comments, results, pagination
   ========================================================================== */

/* The space below the image comes from .ds-article__body's top padding. Setting a bottom
   margin here as well doubled it, while the top was flush against the page header. */
.ds-article__hero {
	margin: clamp(1.75rem, 1.2rem + 1.8vw, 2.75rem) 0 0;
	border-radius: var(--radius-lg);
	overflow: hidden;
	/* A 3:2 photo at full container width runs ~750px tall and pushes the article off
	   screen. Crop to a banner instead. */
	aspect-ratio: 21 / 9;
}
.ds-article__hero img { width: 100%; height: 100%; object-fit: cover; }
.ds-article__body { max-width: var(--measure); margin-inline: auto; padding-block: clamp(2rem, 1.4rem + 2vw, 3rem); }
.ds-article__meta { margin: 1.1rem 0 0; display: flex; gap: .5rem; color: var(--slate-400); font-size: var(--fs-sm); }

.ds-postnav {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.25rem;
	max-width: var(--measure);
	margin: 0 auto;
	padding-block: 2.5rem;
	border-top: 1px solid var(--border);
}
.ds-postnav__link {
	display: grid;
	gap: .35rem;
	padding: 1.25rem 1.4rem;
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	text-decoration: none;
	transition: border-color var(--dur) var(--ease), background-color var(--dur) var(--ease);
}
.ds-postnav__link:hover { border-color: var(--navy-100); background: var(--warm-50); }
.ds-postnav__link--next { text-align: right; }
.ds-postnav__label { color: var(--gold-700); font-size: var(--fs-xs); font-weight: 600; letter-spacing: .09em; text-transform: uppercase; }
.ds-postnav__title { color: var(--text-strong); font-size: var(--fs-sm); font-weight: 500; line-height: 1.45; }

.ds-comments { max-width: var(--measure); margin: 0 auto; padding-block: 2.5rem; border-top: 1px solid var(--border); }
.ds-comments__title { font-size: 1.25rem; margin-bottom: 1.5rem; }
.ds-comments__list { list-style: none; margin: 0 0 2.5rem; padding: 0; }
.ds-comments__list ol { list-style: none; padding-left: 1.5rem; }
.ds-comments .comment-body { padding: 1.25rem 0; border-bottom: 1px solid var(--line-soft); }
.ds-comments .comment-author { display: flex; align-items: center; gap: .75rem; font-size: var(--fs-sm); }
.ds-comments .comment-author img { border-radius: 50%; }
.ds-comments .comment-metadata { font-size: var(--fs-xs); color: var(--slate-400); margin-bottom: .6rem; }
.ds-comments .comment-metadata a { color: inherit; }

.ds-results { list-style: none; margin: 0; padding: 0; display: grid; gap: 1.25rem; }
.ds-results__item { padding: 1.6rem 1.75rem; border: 1px solid var(--border); border-radius: var(--radius-lg); transition: border-color var(--dur) var(--ease), background-color var(--dur) var(--ease); }
.ds-results__item:hover { border-color: var(--navy-100); background: var(--warm-50); }
.ds-results__type { margin: 0 0 .4rem; color: var(--gold-700); font-size: var(--fs-xs); font-weight: 600; letter-spacing: .09em; text-transform: uppercase; }
.ds-results__title { font-size: 1.2rem; margin-bottom: .4rem; }
.ds-results__title a { color: inherit; text-decoration: none; }
.ds-results__title a:hover { color: var(--navy-600); }
.ds-results__text { margin: 0; color: var(--text-muted); font-size: var(--fs-sm); }

.ds-pagination {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: .5rem;
	margin-top: 3rem;
}
.ds-pagination .page-numbers {
	display: grid;
	place-items: center;
	min-width: 42px;
	height: 42px;
	padding-inline: .85rem;
	border: 1px solid var(--border);
	border-radius: var(--radius);
	color: var(--slate-700);
	font-size: var(--fs-sm);
	font-weight: 500;
	text-decoration: none;
	transition: background-color var(--dur) var(--ease), border-color var(--dur) var(--ease), color var(--dur) var(--ease);
}
.ds-pagination .page-numbers:hover { border-color: var(--navy-500); color: var(--navy-900); }
.ds-pagination .page-numbers.current { background: var(--navy-900); border-color: var(--navy-900); color: #fff; }
.ds-pagination .dots { border-color: transparent; }

.ds-404 { text-align: center; }
.ds-404__inner { max-width: 40rem; margin-inline: auto; }
.ds-404__inner .ds-eyebrow { justify-content: center; }
.ds-404__title { font-size: clamp(1.85rem, 1.4rem + 2vw, 2.75rem); margin-bottom: 1rem; }
.ds-404__text { color: var(--text-muted); margin-bottom: 2rem; }
.ds-404 .ds-searchbar { margin-inline: auto; }
.ds-404__links { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.5rem; margin: 0; padding: 0; list-style: none; font-size: var(--fs-sm); }


/* 18. CTA & footer
   ========================================================================== */

.ds-cta { padding-block: 0 var(--section-y); }
/* Following a tinted or navy band there is no shared whitespace to borrow, so the
   card would sit flush against the colour change. */
.ds-section--dark + .ds-cta,
.ds-section--tint + .ds-cta,
.ds-map + .ds-cta { padding-top: var(--section-y); }
.ds-cta__inner {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 2rem;
	padding: clamp(2.25rem, 1.4rem + 3vw, 3.75rem) clamp(1.75rem, 1rem + 3vw, 3.5rem);
	background: var(--navy-900);
	border-radius: var(--radius-lg);
	background-image: radial-gradient(700px 300px at 100% 0%, rgba(184, 134, 47, .16), transparent 65%);
}
.ds-cta__body { max-width: 34rem; }
.ds-cta__title { color: #fff; font-size: clamp(1.6rem, 1.25rem + 1.4vw, 2.25rem); margin-bottom: .75rem; }
.ds-cta__text { margin: 0; color: rgba(255, 255, 255, .72); font-size: var(--fs-sm); }
.ds-cta__actions { display: flex; flex-wrap: wrap; gap: .85rem; }

.ds-footer {
	position: relative;
	background: var(--navy-900);
	color: rgba(255, 255, 255, .68);
	font-size: var(--fs-sm);
}
.ds-footer__top {
	display: grid;
	grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
	gap: clamp(2rem, 1rem + 3vw, 3.5rem);
	padding-block: clamp(3rem, 2rem + 3vw, 4.5rem);
}
.ds-footer .ds-logo img { height: 42px; }
.ds-footer__blurb { margin: 1.5rem 0 0; max-width: 34ch; color: rgba(255, 255, 255, .58); font-size: var(--fs-sm); }

.ds-footer__social { display: flex; gap: .6rem; margin: 1.75rem 0 0; padding: 0; list-style: none; }
.ds-footer__social a {
	display: grid;
	place-items: center;
	width: 40px; height: 40px;
	border: 1px solid rgba(255, 255, 255, .18);
	border-radius: 50%;
	color: rgba(255, 255, 255, .78);
	transition: background-color var(--dur) var(--ease), border-color var(--dur) var(--ease), color var(--dur) var(--ease);
}
.ds-footer__social a:hover { background: var(--gold-600); border-color: var(--gold-600); color: #1c1405; }
.ds-footer__social .ds-icon { width: 1.05rem; height: 1.05rem; }

.ds-footer__heading {
	margin-bottom: 1.35rem;
	color: #fff;
	font-family: var(--font-body);
	font-size: var(--fs-xs);
	font-weight: 600;
	letter-spacing: .12em;
	text-transform: uppercase;
}
.ds-footer__nav { margin: 0; padding: 0; list-style: none; display: grid; gap: .7rem; }
.ds-footer__nav-link {
	color: rgba(255, 255, 255, .68);
	text-decoration: none;
	transition: color var(--dur) var(--ease);
}
.ds-footer__nav-link:hover { color: var(--gold-500); }

.ds-footer__contact { margin: 0; padding: 0; list-style: none; display: grid; gap: 1rem; }
.ds-footer__contact li { display: flex; gap: .7rem; line-height: 1.55; }
.ds-footer__contact .ds-icon { width: 1.05rem; height: 1.05rem; margin-top: .3rem; flex: none; color: var(--gold-500); }
.ds-footer__contact a { color: rgba(255, 255, 255, .68); text-decoration: none; }
.ds-footer__contact a:hover { color: #fff; }

.ds-footer__bottom {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding-block: 1.5rem;
	border-top: 1px solid rgba(255, 255, 255, .12);
	font-size: var(--fs-xs);
	color: rgba(255, 255, 255, .5);
}
.ds-footer__copy { margin: 0; }
.ds-footer__legal { display: flex; flex-wrap: wrap; gap: 1.5rem; margin: 0; padding: 0; list-style: none; }

.ds-to-top {
	position: fixed;
	right: clamp(1rem, .5rem + 1.5vw, 2rem);
	bottom: clamp(1rem, .5rem + 1.5vw, 2rem);
	z-index: 80;
	display: grid;
	place-items: center;
	width: 46px; height: 46px;
	background: var(--navy-900);
	border: 1px solid rgba(255, 255, 255, .16);
	border-radius: 50%;
	color: #fff;
	cursor: pointer;
	opacity: 0;
	visibility: hidden;
	transform: translateY(10px);
	transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease), visibility var(--dur), background-color var(--dur) var(--ease);
}
.ds-to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.ds-to-top:hover { background: var(--gold-600); color: #1c1405; }
.ds-to-top .ds-icon { width: 1.15rem; height: 1.15rem; }


/* 19. Motion
   ========================================================================== */

/* Gated on .has-js, which an inline script in <head> sets. If scripting is off or
   main.js fails to load, the rule never applies and every section renders visible. */
.has-js [data-reveal] {
	opacity: 0;
	transform: translateY(14px);
	transition: opacity .62s var(--ease), transform .62s var(--ease);
	transition-delay: calc(var(--reveal-delay, 0) * 70ms);
	will-change: opacity, transform;
}
.has-js [data-reveal].is-revealed { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	*, *::before, *::after {
		animation-duration: .01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: .01ms !important;
		scroll-behavior: auto !important;
	}
	[data-reveal] { opacity: 1 !important; transform: none !important; }
}


/* 20. Responsive
   ========================================================================== */

@media (max-width: 1100px) {
	.ds-footer__top { grid-template-columns: 1.4fr 1fr 1.2fr; }
	.ds-footer__col--contact { grid-column: 1 / -1; }
	.ds-split--article { grid-template-columns: minmax(0, 1fr) 300px; }
}

@media (max-width: 1024px) {
	.ds-topbar__note { display: none; }
	.ds-topbar__inner { justify-content: center; }

	/* Off-canvas navigation */
	.ds-nav {
		position: fixed;
		top: 0; right: 0; bottom: 0;
		z-index: 95;
		width: min(380px, 86vw);
		margin: 0;
		padding: 5.5rem 1.75rem 2rem;
		background: #fff;
		border-left: 1px solid var(--border);
		box-shadow: -20px 0 60px -30px rgba(15, 39, 64, .45);
		overflow-y: auto;
		transform: translateX(100%);
		visibility: hidden;
		transition: transform .38s var(--ease), visibility .38s;
	}
	.ds-nav.is-open { transform: translateX(0); visibility: visible; }

	.ds-nav__list { flex-direction: column; align-items: stretch; gap: 0; }
	.ds-nav__item { border-bottom: 1px solid var(--line-soft); }
	.ds-nav__item--parent { display: grid; grid-template-columns: 1fr auto; align-items: center; }
	.ds-nav__link { padding: .95rem .25rem; font-size: 1.0625rem; }
	.ds-nav__link > span::after { display: none; }
	.ds-nav__item.is-current > .ds-nav__link { color: var(--navy-900); }
	.ds-nav__item.is-current > .ds-nav__link > span { border-bottom: 2px solid var(--gold-600); padding-bottom: 2px; }

	.ds-nav__toggle { display: grid; place-items: center; transition: transform var(--dur) var(--ease); }
	.ds-nav__toggle[aria-expanded="true"] { transform: rotate(180deg); }

	.ds-nav__submenu {
		position: static;
		grid-column: 1 / -1;
		min-width: 0;
		margin: 0 0 .5rem;
		padding: 0 0 0 .9rem;
		border: 0;
		border-left: 2px solid var(--line);
		border-radius: 0;
		box-shadow: none;
		opacity: 1;
		visibility: visible;
		transform: none;
		display: none;
	}
	.ds-nav__submenu.is-open { display: block; }
	.ds-nav__submenu .ds-nav__item { border-bottom: 0; }
	.ds-nav__submenu .ds-nav__link { font-size: var(--fs-sm); padding: .6rem .25rem; }

	.ds-nav__footer { display: grid; gap: .85rem; margin-top: 2rem; }
	.ds-nav__phone {
		display: inline-flex;
		align-items: center;
		gap: .5rem;
		color: var(--navy-900);
		font-weight: 600;
		text-decoration: none;
	}
	.ds-nav__phone .ds-icon { color: var(--gold-600); }

	.ds-burger { display: inline-flex; }
	.ds-header__actions { margin-left: auto; }
	.ds-header__actions .ds-btn { display: none; }

	.ds-split, .ds-split--wide, .ds-split--article { grid-template-columns: 1fr; }
	.ds-sticky { position: static; }
	.ds-grid--4 { grid-template-columns: repeat(2, 1fr); }
	.ds-process { grid-template-columns: repeat(2, 1fr); }
	.ds-hero__grid { grid-template-columns: 1fr; }
	.ds-hero__figure { order: -1; max-width: 560px; }
	.ds-hero__frame { aspect-ratio: 16 / 11; }
	.ds-hero__badge { left: auto; right: -12px; bottom: -20px; }
	.ds-hero__title { max-width: 18ch; }
	.ds-contact { grid-template-columns: 1fr; }
	.ds-servicerow { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
	.ds-grid--3 { grid-template-columns: repeat(2, 1fr); }
	.ds-trustbar__list { grid-template-columns: repeat(2, 1fr); }
	.ds-trustbar__list li:nth-child(odd) { border-left: 0; padding-left: 0; }
	.ds-trustbar__list li:nth-child(3),
	.ds-trustbar__list li:nth-child(4) { border-top: 1px solid var(--border); }
	.ds-card__list--two { grid-template-columns: 1fr; }
	.ds-footer__top { grid-template-columns: repeat(2, 1fr); }
	.ds-footer__brand { grid-column: 1 / -1; }
	.ds-footer__col--contact { grid-column: 1 / -1; }
	.ds-ticklist--two { grid-template-columns: 1fr; }
	.ds-stats--band { grid-template-columns: repeat(2, 1fr); gap: 1.75rem 1.5rem; }
	.ds-section-head--split { align-items: flex-start; }
}

@media (max-width: 640px) {
	:root { --fs-body: 1rem; }

	.ds-grid--2, .ds-grid--3, .ds-grid--4 { grid-template-columns: 1fr; }
	.ds-card--wide { flex-direction: column; gap: 0; padding: 1.75rem 1.5rem; }
	.ds-card--wide .ds-card__aside {
		flex-direction: row;
		align-items: center;
		justify-content: flex-start;
		gap: .85rem;
		margin-bottom: 1.25rem;
	}
	.ds-card--wide .ds-card__aside::after { display: none; }
	.ds-trustbar__list { grid-template-columns: 1fr; }
	.ds-trustbar__list li {
		border-left: 0;
		border-top: 1px solid var(--border);
		padding: 1rem 0;
	}
	.ds-trustbar__list li:first-child { border-top: 0; }
	.ds-process { grid-template-columns: 1fr; gap: 1.75rem; }
	.ds-trustbar__list { grid-template-columns: 1fr; gap: .75rem; }
	.ds-stats { grid-template-columns: 1fr; gap: 1.25rem; text-align: left; }
	.ds-stats--band { grid-template-columns: repeat(2, 1fr); gap: 1.5rem 1rem; }
	.ds-stats__label { max-width: none; }
	.ds-form__row { grid-template-columns: 1fr; }
	.ds-postnav { grid-template-columns: 1fr; }
	.ds-postnav__link--next { text-align: left; }
	.ds-footer__top { grid-template-columns: 1fr; }
	.ds-footer__bottom { flex-direction: column; align-items: flex-start; }
	.ds-cta__inner { flex-direction: column; align-items: flex-start; }
	.ds-cta__actions { width: 100%; }
	.ds-cta__actions .ds-btn { flex: 1 1 auto; }
	/* Sits inside the photo on small screens — no negative offsets to overflow the gutter. */
	.ds-hero__badge { left: 14px; right: auto; bottom: 14px; margin-top: 0; padding: .9rem 1.05rem; }
	.ds-hero__badge-num { font-size: 1.75rem; }
	.ds-topbar__contact { gap: 1rem; flex-wrap: wrap; justify-content: center; }
	.ds-topbar { font-size: .75rem; }
	.ds-rail { grid-auto-columns: minmax(84%, 1fr); }
	.ds-search { flex-direction: column; }
	.ds-search .ds-btn { width: 100%; }
	.ds-section__utility { flex-direction: column; align-items: flex-start; }
}


/* 21. Print
   ========================================================================== */

@media print {
	.ds-topbar, .ds-header, .ds-footer, .ds-cta, .ds-to-top,
	.ds-nav-overlay, .ds-section__utility, .ds-map, .ds-breadcrumb { display: none !important; }

	body { color: #000; font-size: 11pt; }
	[data-reveal] { opacity: 1 !important; transform: none !important; }

	.ds-section, .ds-pagehead { padding-block: 0.75rem; background: none; }
	.ds-checklist, .ds-panel, .ds-card { border: 1px solid #999; break-inside: avoid; box-shadow: none; }
	.ds-grid--3, .ds-grid--2 { grid-template-columns: 1fr 1fr; }
	.ds-checklist__box { -webkit-appearance: checkbox; appearance: checkbox; }
	a[href^="http"]::after { content: " (" attr(href) ")"; font-size: .75em; color: #555; }
}
