/* ============================================================================
   Jeffrey A Bruce — portfolio
   Design system: light-editorial, engineer-restrained. One accent, system type,
   monospace reserved for technical metadata.
   ========================================================================= */

/* ---------------------------------------------------------------- tokens */

:root {
	/* palette — light */
	--bg:          #FBFAF8;
	--surface:     #FFFFFF;
	--surface-2:   #F3F1ED;
	--border:      #E4E0D9;
	--border-strong: #CFC9BF;
	--text:        #14181C;
	--text-muted:  #5A6570;
	--accent:      #2F5D8C;
	--accent-ink:  #244A70;
	--accent-soft: #EAF0F6;
	--on-accent:   #FFFFFF;
	--danger:      #C0392B;
	--shadow-sm:   0 1px 2px rgba(20, 24, 28, .05);
	--shadow-md:   0 6px 24px -12px rgba(20, 24, 28, .28);
	--shadow-lg:   0 18px 48px -24px rgba(20, 24, 28, .35);

	/* type */
	--font-sans: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
	             "Helvetica Neue", Arial, sans-serif;
	--font-mono: ui-monospace, "Cascadia Code", "SF Mono", SFMono-Regular, Menlo,
	             Consolas, "Liberation Mono", monospace;

	/* rhythm */
	--shell:       1200px;
	--measure:     68ch;
	--gutter:      clamp(1.25rem, 4vw, 3rem);
	--section-y:   1rem;
	--radius:      8px;
	--radius-lg:   8px;
	--header-h:    64px;
}

@media (prefers-color-scheme: dark) {
	:root:not([data-theme="light"]) {
		--bg:          #0F1214;
		--surface:     #171B1F;
		--surface-2:   #1E242A;
		--border:      #2A3138;
		--border-strong: #3A434C;
		--text:        #E8EBED;
		--text-muted:  #98A4AF;
		--accent:      #7FB3E3;
		--accent-ink:  #A9CDEE;
		--accent-soft: #17293A;
		--on-accent:   #0F1214;
		--danger:      #F1948A;
		--shadow-sm:   0 1px 2px rgba(0, 0, 0, .4);
		--shadow-md:   0 6px 24px -12px rgba(0, 0, 0, .7);
		--shadow-lg:   0 18px 48px -24px rgba(0, 0, 0, .8);
	}
}

:root[data-theme="dark"] {
	--bg:          #0F1214;
	--surface:     #171B1F;
	--surface-2:   #1E242A;
	--border:      #2A3138;
	--border-strong: #3A434C;
	--text:        #E8EBED;
	--text-muted:  #98A4AF;
	--accent:      #7FB3E3;
	--accent-ink:  #A9CDEE;
	--accent-soft: #17293A;
	--on-accent:   #0F1214;
	--danger:      #F1948A;
	--shadow-sm:   0 1px 2px rgba(0, 0, 0, .4);
	--shadow-md:   0 6px 24px -12px rgba(0, 0, 0, .7);
	--shadow-lg:   0 18px 48px -24px rgba(0, 0, 0, .8);
}

/* ----------------------------------------------------------------- reset */

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

html {
	-webkit-text-size-adjust: 100%;
	scroll-behavior: smooth;
	color-scheme: light dark;
}

body {
	margin: 0;
	background: var(--bg);
	color: var(--text);
	font-family: var(--font-sans);
	font-size: 1.0625rem;
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}

h1, h2, h3, p, ul, ol, dl, dd, figure { margin: 0; }
ul { padding: 0; list-style: none; }
img { max-width: 100%; height: auto; display: block; }

a { color: var(--accent); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--accent-ink); }

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

.icon {
	width: 1em;
	height: 1em;
	flex: none;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.4;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.skip-link {
	position: absolute;
	left: -9999px;
	top: 0;
	z-index: 2000;
	background: var(--accent);
	color: #fff;
	padding: .75rem 1.25rem;
	border-radius: 0 0 var(--radius) 0;
	text-decoration: none;
}
.skip-link:focus { left: 0; color: #fff; }

/* --------------------------------------------------------------- layout */

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

.section { padding-block: var(--section-y) 2rem; }

/* Keep anchor targets clear of the sticky header. */
#top, #about, #selected-work, #contact {
	scroll-margin-top: calc(var(--header-h) + 1rem);
}
.section-alt {
	background: var(--surface-2);
	border-block: 1px solid var(--border);
}

.section-grid {
	display: grid;
	gap: clamp(2rem, 5vw, 4rem);
	grid-template-columns: 1fr;
}
@media (min-width: 900px) {
	.section-grid { grid-template-columns: minmax(220px, 300px) 1fr; }
	.section-aside {
		position: sticky;
		top: calc(var(--header-h) + 2rem);
		align-self: start;
	}
}

.section-head { margin-bottom: clamp(2rem, 4vw, 3rem); }

/* Desktop only: the Selected Work heading and each case-study heading stick
   flush under the site nav, then release and hand off to the next one as
   their own section scrolls past (standard position: sticky behaviour, each
   header scoped to its own section's containing block). Same 900px gate as
   .section-aside, so mobile is completely unchanged. */
@media (min-width: 900px) {
	.section-head,
	.case-header {
		position: sticky;
		/* --header-h is the nav's min-height; +1px covers its bottom border so
		   these headers sit flush against it, with no gap and no overlap. */
		top: calc(var(--header-h) + 1px);
		z-index: 5;
		padding-top: 1.25rem;
		/* 1rem of air between the heading and the copy that scrolls beneath it */
		padding-bottom: 1rem;
		/* frosted-glass, matching .site-header: translucent fill + blur */
		backdrop-filter: saturate(180%) blur(12px);
	}
	.section-head { background: color-mix(in srgb, var(--surface-2) 85%, transparent); margin-bottom: 0; }
	.case-header  { background: color-mix(in srgb, var(--bg) 85%, transparent); }
	.case-header .case-blurb { margin-bottom: 0; }
}

/* ------------------------------------------------------------- typography */

.eyebrow {
	font-family: var(--font-mono);
	font-size: .75rem;
	letter-spacing: .08em;
	text-transform: uppercase;
	color: var(--text-muted);
	margin-bottom: .75rem;
}

.section-title {
	font-size: clamp(1.75rem, 3.2vw, 2.5rem);
	line-height: 1.15;
	letter-spacing: -.02em;
	font-weight: 650;
	text-wrap: balance;
}

.section-blurb {
	margin-top: .75rem;
	color: var(--text-muted);
	font-size: 1.125rem;
}

.prose { max-width: var(--measure); }
.prose-wide { max-width: 78ch; }
.prose p + p { margin-top: 1.15em; }
.prose a { text-decoration: underline; }

.tech-stack {
	font-family: var(--font-mono);
	font-size: .75rem;
	line-height: 1.5;
	color: var(--text-muted);
	letter-spacing: .01em;
}

.fine-print {
	margin-top: 1.5rem;
	font-size: .8125rem;
	line-height: 1.55;
	color: var(--text-muted);
}

/* ---------------------------------------------------------------- buttons */

.btn {
	display: inline-flex;
	align-items: center;
	gap: .55em;
	padding: .5rem .9rem;
	border: 1px solid transparent;
	border-radius: var(--radius);
	font-size: .9375rem;
	font-weight: 550;
	line-height: 1.2;
	text-decoration: none;
	cursor: pointer;
	font-family: inherit;
	transition: background-color .18s ease, border-color .18s ease,
	            color .18s ease, transform .18s ease;
}
.btn-lg { padding: .7rem 1.15rem; font-size: 1rem; }
.btn-block { width: 100%; justify-content: center; }

.btn-primary {
	background: var(--accent);
	border-color: var(--accent);
	color: var(--on-accent);
}
.btn-primary:hover {
	background: var(--accent-ink);
	border-color: var(--accent-ink);
	color: var(--on-accent);
	transform: translateY(-1px);
}

.btn-ghost {
	background: transparent;
	border-color: var(--border-strong);
	color: var(--text);
}
.btn-ghost:hover {
	border-color: var(--accent);
	color: var(--accent);
	background: var(--accent-soft);
	transform: translateY(-1px);
}

.btn[disabled] { opacity: .55; pointer-events: none; }

.icon-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	padding: 0;
	font-size: 1.05rem;
	background: transparent;
	color: var(--text);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	cursor: pointer;
	transition: border-color .18s ease, color .18s ease, background-color .18s ease;
}
.icon-btn:hover { border-color: var(--accent); color: var(--accent); }

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

.site-header {
	position: sticky;
	top: 0;
	z-index: 1000;
	background: color-mix(in srgb, var(--bg) 85%, transparent);
	backdrop-filter: saturate(180%) blur(12px);
	border-bottom: 1px solid transparent;
	transition: border-color .2s ease, box-shadow .2s ease;
}
.site-header.is-scrolled {
	border-bottom-color: var(--border);
	box-shadow: var(--shadow-sm);
}

.header-inner {
	min-height: var(--header-h);
	display: flex;
	align-items: center;
	gap: 1rem;
}

.brand {
	display: flex;
	flex-direction: column;
	line-height: 1.25;
	text-decoration: none;
	color: var(--text);
	margin-right: auto;
}
.brand-name { font-weight: 650; letter-spacing: -.01em; }
.brand-role {
	font-family: var(--font-mono);
	font-size: .6875rem;
	letter-spacing: .04em;
	color: var(--text-muted);
}

.site-nav {
	display: flex;
	align-items: center;
	gap: 1.5rem;
}
.site-nav a {
	color: var(--text-muted);
	text-decoration: none;
	font-size: .9375rem;
	font-weight: 500;
	position: relative;
	transition: color .18s ease;
}
.site-nav a:not(.btn):hover { color: var(--text); }
.site-nav a.is-active { color: var(--text); }
.site-nav a:not(.btn).is-active::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: -6px;
	height: 2px;
	border-radius: 2px;
	background: var(--accent);
}
.site-nav .btn { color: var(--on-accent); }

.header-actions { display: flex; align-items: center; gap: .5rem; }
.nav-toggle { display: none; }

/* theme toggle icon swap */
#theme-toggle .icon-moon { display: none; }
:root[data-theme="dark"] #theme-toggle .icon-sun { display: none; }
:root[data-theme="dark"] #theme-toggle .icon-moon { display: block; }
@media (prefers-color-scheme: dark) {
	:root:not([data-theme="light"]) #theme-toggle .icon-sun { display: none; }
	:root:not([data-theme="light"]) #theme-toggle .icon-moon { display: block; }
}
:root[data-theme="light"] #theme-toggle .icon-sun { display: block; }
:root[data-theme="light"] #theme-toggle .icon-moon { display: none; }

.nav-toggle .icon-close { display: none; }
.nav-toggle[aria-expanded="true"] .icon-menu { display: none; }
.nav-toggle[aria-expanded="true"] .icon-close { display: block; }

@media (max-width: 860px) {
	.nav-toggle { display: inline-flex; }
	.site-nav {
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		flex-direction: column;
		align-items: stretch;
		gap: .25rem;
		padding: 1rem var(--gutter) 1.25rem;
		background: var(--surface);
		border-bottom: 1px solid var(--border);
		box-shadow: var(--shadow-md);
		display: none;
	}
	.site-nav.is-open { display: flex; }
	.site-nav a { padding: .6rem 0; font-size: 1.0625rem; }
	.site-nav a:not(.btn).is-active::after { display: none; }
	.site-nav .btn { justify-content: center; margin-top: .5rem; }
}

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

.hero {
	padding-top: 2rem;
	padding-bottom: 2rem;
	position: relative;
	overflow: hidden;
	/* Full-bleed tint so the hero reads as its own band, distinct from the
	   About section below it. */
	background: var(--surface-2);
}
.hero::before {
	content: "";
	position: absolute;
	inset: -40% 40% 40% -20%;
	background: radial-gradient(closest-side, var(--accent-soft), transparent 70%);
	opacity: .8;
	pointer-events: none;
	z-index: -1;
}

.hero-name {
	font-size: clamp(2.5rem, 7vw, 4.5rem);
	line-height: 1.02;
	letter-spacing: -.035em;
	font-weight: 680;
}

.hero-role-row {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: .5rem 1.5rem;
	margin-top: .5rem;
}

.hero-role {
	font-size: clamp(1.05rem, 2.2vw, 1.375rem);
	color: var(--text-muted);
	font-weight: 500;
}
.hero-role .dot { color: var(--accent); padding-inline: .15em; }

.hero-status-group {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: .5rem;
}

/* Paired pills next to the role: status is filled, LinkedIn is outline-only
   so it reads as the lighter of the two. */
.hero-status,
.hero-linkedin {
	display: inline-flex;
	align-items: center;
	gap: .4rem;
	padding: .3rem .75rem;
	border: 1px solid transparent;
	border-radius: 999px;
	font-size: .875rem;
	font-weight: 500;
	white-space: nowrap;
}
.hero-status {
	color: var(--accent);
	background: var(--surface);
	border-color: var(--accent);
}
.hero-linkedin {
	color: var(--text-muted);
	border-color: var(--border-strong);
	text-decoration: none;
	transition: color .18s ease, border-color .18s ease, background-color .18s ease;
}
.hero-linkedin:hover {
	color: var(--accent);
	border-color: var(--accent);
	background: var(--accent-soft);
}

@media (max-width: 480px) {
	.hero-role-row { flex-direction: column; align-items: flex-start; gap: .5rem; }
	.hero-status-group { flex-direction: column; align-items: flex-start; }
}

.hero-lede {
	margin-top: clamp(1.25rem, 3vw, 2rem);
	max-width: 62ch;
	font-size: clamp(1.0625rem, 1.6vw, 1.25rem);
	line-height: 1.55;
	border-left: 2px solid var(--accent);
	padding-left: clamp(1rem, 2vw, 1.5rem);
}

.hero-summary {
	margin-top: .75rem;
	max-width: 62ch;
	font-size: clamp(1rem, 1.5vw, 1.125rem);
	line-height: 1.55;
	color: var(--text-muted);
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: .75rem;
	margin-top: clamp(1.5rem, 3vw, 2.25rem);
}

.stat-rail {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 1px;
	margin-top: clamp(2.5rem, 6vw, 4rem);
	background: var(--border);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	overflow: hidden;
}
.stat {
	background: var(--surface);
	padding: 1.25rem 1.5rem;
}
.stat dt {
	font-size: 1.375rem;
	font-weight: 650;
	letter-spacing: -.02em;
}
.stat dd {
	margin: .35rem 0 0;
	font-size: .875rem;
	line-height: 1.5;
	color: var(--text-muted);
}

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

.chip-block { margin-top: clamp(2rem, 4vw, 3rem); }
.chip-block-label {
	font-family: var(--font-mono);
	font-size: .6875rem;
	letter-spacing: .08em;
	text-transform: uppercase;
	color: var(--text-muted);
	margin-bottom: .75rem;
}
.chips {
	display: flex;
	flex-wrap: wrap;
	gap: .5rem;
}
.chips li {
	font-family: var(--font-mono);
	font-size: .75rem;
	padding: .3rem .6rem;
	border: 1px solid var(--border);
	border-radius: 999px;
	background: var(--surface);
	color: var(--text-muted);
}

/* -------------------------------------------------------------- work grid */

.work-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
	gap: clamp(1rem, 2vw, 1.5rem);
	margin-top: clamp(2rem, 4vw, 3rem);
}

.work-card {
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	overflow: hidden;
	transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.work-card:hover {
	transform: translateY(-3px);
	border-color: var(--border-strong);
	box-shadow: var(--shadow-lg);
}
.work-card a {
	display: flex;
	flex-direction: column;
	height: 100%;
	color: inherit;
	text-decoration: none;
}
.work-card a:focus-visible { outline-offset: -2px; }

.work-shot {
	aspect-ratio: 1920 / 912;
	background: var(--surface-2);
	border-bottom: 1px solid var(--border);
	overflow: hidden;
}
.work-shot img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top center;
	transition: transform .35s ease;
}
.work-card:hover .work-shot img { transform: scale(1.03); }

.work-body {
	display: flex;
	flex-direction: column;
	gap: .6rem;
	padding: 1.15rem 1.25rem 1.35rem;
	flex: 1;
}
.work-title {
	font-size: 1rem;
	font-weight: 600;
	line-height: 1.35;
	letter-spacing: -.01em;
	color: var(--accent);
	display: flex;
	align-items: flex-start;
	gap: .4em;
}
.work-title .icon-out {
	margin-top: .25em;
	opacity: .55;
	font-size: .8em;
	transition: opacity .2s ease, transform .2s ease;
}
.work-card:hover .work-title .icon-out {
	opacity: 1;
	transform: translate(1px, -1px);
}
.work-desc {
	font-size: .875rem;
	line-height: 1.55;
	color: var(--text-muted);
	flex: 1;
}
.work-body .tech-stack {
	padding-top: .6rem;
	border-top: 1px solid var(--border);
}

/* ------------------------------------------------------------ case studies */

/* Mobile: a plain vertical stack (screenshot, heading, body). Row rhythm is
   set with margins rather than grid gap so it matches the pre-sticky layout
   exactly even though .case-header is now its own element. */
.case { display: block; margin-top: 0; }
.case-media { margin-bottom: clamp(1.75rem, 4vw, 3.5rem); }

/* Reveal the cases with opacity only. A translate on .case would make it a
   containing block for the sticky .case-header inside it, shifting the stuck
   header away from its intended offset under the nav. */
.case.reveal { transform: none; }

@media (min-width: 900px) {
	.case {
		display: grid;
		grid-template-columns: 1fr 1fr;
		column-gap: clamp(1.75rem, 4vw, 3.5rem);
		row-gap: 0;
		align-items: start;
	}
	.case-media { margin-bottom: 0; }
	/* Full-width frosted band above the case, the same treatment .section-head
	   gets above the work grid. Its own matching 2-column grid keeps the heading
	   text aligned with the body column that scrolls beneath it. */
	.case-header {
		grid-column: 1 / -1;
		order: -1;
		display: grid;
		grid-template-columns: 1fr 1fr;
		column-gap: clamp(1.75rem, 4vw, 3.5rem);
	}
	.case-header > * { grid-column: 2; }
	.case-reverse .case-header > * { grid-column: 1; }
	.case-reverse .case-media { order: 2; }
}

.case-media {
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	overflow: hidden;
	background: var(--surface);
	box-shadow: var(--shadow-md);
}
.case-media img { width: 100%; }

.case-title {
	font-size: clamp(1.6rem, 3vw, 2.25rem);
	line-height: 1.15;
	letter-spacing: -.02em;
	font-weight: 650;
}
.case-blurb {
	margin-top: .4rem;
	margin-bottom: 1.25rem;
	color: var(--text-muted);
	font-size: 1.0625rem;
}
.case-body .tech-stack { margin-top: 1.25rem; }
.case-cta { margin-top: 1.5rem; }
.case-note {
	margin-top: .6rem;
	font-size: .8125rem;
	color: var(--text-muted);
}

/* --------------------------------------------------------------- contact */

.contact-grid {
	display: grid;
	gap: clamp(2rem, 5vw, 4rem);
	grid-template-columns: 1fr;
	align-items: start;
}
@media (min-width: 900px) {
	.contact-grid { grid-template-columns: 1fr minmax(380px, 460px); }
}

.contact-links {
	display: flex;
	flex-direction: column;
	gap: .5rem;
	margin: 1.5rem 0;
	font-size: .9375rem;
	color: var(--text-muted);
}
.contact-links a {
	display: inline-flex;
	align-items: center;
	gap: .5em;
	text-decoration: none;
}
.contact-links a:hover { text-decoration: underline; }

.contact-card {
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	padding: clamp(1.25rem, 3vw, 2rem);
	box-shadow: var(--shadow-md);
}

.field { display: flex; flex-direction: column; gap: .4rem; }
.field + .field { margin-top: 1.1rem; }
.field label {
	font-size: .8125rem;
	font-weight: 600;
	letter-spacing: .01em;
	color: var(--text-muted);
}

.field input,
.field textarea {
	width: 100%;
	font: inherit;
	font-size: .9375rem;
	color: var(--text);
	background: var(--bg);
	border: 1px solid var(--border-strong);
	border-radius: var(--radius);
	padding: .65rem .8rem;
	transition: border-color .18s ease, box-shadow .18s ease;
}
.field textarea { resize: vertical; min-height: 8rem; }
.field input::placeholder,
.field textarea::placeholder { color: var(--text-muted); }
.field input:focus,
.field textarea:focus {
	outline: none;
	border-color: var(--accent);
	box-shadow: 0 0 0 3px var(--accent-soft);
}

.field-error {
	display: none;
	font-size: .8125rem;
	color: var(--danger);
}
.field.has-error .field-error { display: block; }
.field.has-error input,
.field.has-error textarea { border-color: var(--danger); }

#submit { margin-top: 1.5rem; }

.form-status {
	display: none;
	margin-top: 1rem;
	padding: 1rem 1.15rem;
	border-radius: var(--radius);
	font-size: .9375rem;
	border: 1px solid var(--border);
	background: var(--surface-2);
}
.form-status.is-visible { display: block; }
.form-status.is-success { border-color: var(--accent); background: var(--accent-soft); }

.hp-field { position: absolute; left: -9999px; }

/* Hide the reCAPTCHA v3 floating badge. Google's terms allow this as long as
   the required attribution is shown in the flow — it is, in .fine-print by
   the contact form. Use visibility, not display:none, which can interfere
   with the script initialising the element it scores. */
.grecaptcha-badge { visibility: hidden; }

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

.site-footer {
	border-top: 1px solid var(--border);
	padding-block: 2rem;
	font-size: .8125rem;
	color: var(--text-muted);
}
.footer-inner {
	display: flex;
	flex-wrap: wrap;
	gap: .75rem 1.5rem;
	justify-content: space-between;
	align-items: center;
}
.footer-links { display: flex; gap: .6rem; align-items: center; }
.footer-links a { color: var(--text-muted); text-decoration: none; }
.footer-links a:hover { color: var(--accent); text-decoration: underline; }

/* ---------------------------------------------------------------- motion */

.reveal {
	opacity: 0;
	transform: translateY(14px);
	transition: opacity .55s ease, transform .55s ease;
}
.reveal.is-visible { opacity: 1; transform: none; }

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

/* ----------------------------------------------------------------- print */

@media print {
	.site-header, .hero-actions, .contact-card, .nav-toggle, .skip-link { display: none !important; }
	body { background: #fff; color: #000; font-size: 11pt; }
	.section { padding-block: 1.5rem; }
	.work-card, .case-media { break-inside: avoid; box-shadow: none; }
	a[href^="http"]::after { content: " (" attr(href) ")"; font-size: 9pt; color: #555; }
}
