@charset "UTF-8";
/* CSS Document */
@import url("https://use.typekit.net/ebv5fau.css");
:root {
  --dark: #2B2F36;
  --red: #D42F34;
  --blue: #5A8ABF;
	--lightblue: #9ABCE3;
  --midblue: #507AA8;
  --light: #FFFFFF;
  --grey: #cfd2d7;
 --darkgrey: #B2B4B6;
  --darkbl: #384048;
	
	--background: #007377;
	--copper: #CF8B52;
	--copperlight: #EDBE93;
	
	 --hairline: #E1E6EB;
}

* {
  box-sizing: border-box;
}


body {
  margin: 0;
  font-family: "neulis-sans", system-ui, sans-serif;
  line-height: 1.6;
  
	background-color: var(--background);

}

p {
  display: block;
  margin-top: 1em;
  margin-bottom: 1em;
  margin-left: 0;
  margin-right: 0;
}

h1 {
  display: block;
  font-size: 3rem;
  margin-top: 0.67em;
  margin-bottom: 0.67em;
  margin-left: 0;
  margin-right: 0;
  font-weight:normal;
}

h2 {
  display: block;
  font-size: 1.5em;
  margin-top: 0.83em;
  margin-bottom: 0.83em;
  margin-left: 0;
  margin-right: 0;
  font-weight: bold;
}

h3 {
	
	margin-top: 0em;
	font-size: 1.05em;
}

h4 {
  display: block;
  font-size: 1em;
  margin-top: 1.33em;
  margin-bottom: 1.33em;
  margin-left: 0;
  margin-right: 0;
  font-weight: bold;
}

a:link {
	text-decoration: none;
	color:var(--copper);
}
a:visited {
	text-decoration: none;
	color:var(--copper);
}
a:hover {
	text-decoration: underline;
}
a:active {
	text-decoration: none;
}


.container {
  max-width: 1200px;
  padding: 0 1.5rem;
  margin: auto;
}

.container-noPad {
  max-width: 1200px;
  padding: 0rem;
  margin: auto;
}


.center {
  display: flex;
  justify-content: center;
  align-items: center;
	height: 100dvh;
	color: var(--copper);
	flex-direction: column;
	
}

.logoBox {
  height: clamp(120px, 25vw, 200px);
  width: clamp(280px, 75%, 90vw);
  background-image: url("images/HPD_mixed.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}



/* Header */
.site-header {
  background: var(--background);
	 position: relative;
 
}


@keyframes fadeInDown {
  0% {
    transform: translateY(-100%);
    opacity: 0;
  }
  100% {
    transform: translateY(0%);
    opacity: 1;
  }
}

.fadeInDown-animation {
  animation: 1.5s fadeInDown;
}


.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
	
}

.header-contact {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.5rem 1.5rem;
  color: var(--light);
  font-size: 0.9rem;
  line-height: 1.5;
}

.header-contact a {
  color: var(--light);
}

.header-contact-item {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 500;
  white-space: nowrap;
	font-size: 1rem;
}

.header-contact-item:hover {
  color: var(--copperlight);
  text-decoration: none;
}

.header-contact-icon {
  display: inline-flex;
  flex-shrink: 0;
  width: 17px;
  height: 17px;
  color: var(--copperlight);
}

.header-contact-icon svg {
  width: 100%;
  height: 100%;
}

@media (min-width:901px) {
	.headerContainer {
	background-image:url(images/header2.png);
	background-size: 283px 75px;
	background-position: left;
	background-repeat:no-repeat;
	width: 283px;
	height:105px;
	flex: 0 0 auto;
		
		
}
	
}


@media (max-width:900px) {
	.header-top {
	flex-direction: column;
	justify-content: center;
}

	.headerContainer {
	width:100%; 

	background-image:url(images/header2.png); 
	background-repeat:no-repeat;
	background-position:center;
	height:75px;
	background-size:contain;
		
}

	.header-contact {
	align-items: center;
	justify-content: center;
	text-align: center;
}
	
}

/* Navigation */
.site-nav {
  background: var(--dark);
	position: relative;
	z-index: 4;
	box-shadow: 0 8px 16px -6px rgba(0, 0, 0, 0.55);
	
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: center;
	
}

.nav-menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-menu a {
  display: block;
  color: var(--light);
  text-decoration: none;
  font-size: 1rem;
  padding: 0.9rem 1.1rem;
  border-bottom: 3px solid transparent;
  transition: background 0.2s ease, border-bottom-color 0.2s ease, color 0.2s ease;
}

.nav-menu a:hover,
.nav-menu a:focus-visible {
  background: rgba(255, 255, 255, 0.07);
  border-bottom-color: var(--copper);
  color: var(--light);
  text-decoration: none;
}

.nav-menu a.active {
  color: var(--copper);
  border-bottom-color: var(--copper);
}

/* Mobile toggle button - hidden on desktop */
.nav-toggle {
  display: none;
  align-items: center;
  gap: 0.6rem;
  width: 100%;
  background: none;
  border: 0;
  color: var(--light);
  font-family: inherit;
  font-size: 1rem;
  padding: 0.9rem 0;
  cursor: pointer;
}

.nav-toggle-bars,
.nav-toggle-bars::before,
.nav-toggle-bars::after {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--light);
  transition: transform 0.25s ease, opacity 0.2s ease;
}

.nav-toggle-bars {
  position: relative;
}

.nav-toggle-bars::before,
.nav-toggle-bars::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle-bars::before {
  top: -7px;
}

.nav-toggle-bars::after {
  top: 7px;
}

/* Animate bars into an X when open */
.nav-toggle[aria-expanded="true"] .nav-toggle-bars {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bars::before {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bars::after {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 900px) {
	.nav-inner {
	flex-direction: column;
	align-items: stretch;
}

	.nav-toggle {
	display: flex;
}

	.nav-menu {
	display: none;
	flex-direction: column;
	width: 100%;
	padding-bottom: 0.5rem;
}

	.nav-menu.is-open {
	display: flex;
}

	.nav-menu a {
	padding: 0.85rem 0.25rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.12);
	border-left: 3px solid transparent;
}

	.nav-menu a:hover,
	.nav-menu a:focus-visible {
	border-bottom-color: rgba(255, 255, 255, 0.12);
	border-left-color: var(--copper);
	padding-left: 0.75rem;
}

	.nav-menu a.active {
	border-bottom-color: rgba(255, 255, 255, 0.12);
	border-left-color: var(--copper);
	padding-left: 0.75rem;
}
}


/*banners*/

.banner {
 
  color: var(--light);
  padding: 4rem 0;
  position: relative;
  z-index: 3;
  box-shadow: 0 8px 16px -6px rgba(0, 0, 0, 0.45);
	
}

.banner-home {
	 background: 
    url("images/indexImg.jpg") center / cover no-repeat;
	
}

.banner-digi {
  background: 
    url("images/digiImg.jpg") center / cover no-repeat;
	
}

.banner-lf {
  background: 
    url("images/lfImg.jpg") center / cover no-repeat;
	
}


.banner-contact {
  background: 
    url("images/contactImg.jpg") center / cover no-repeat;
	
}

.banner-signs {
  background: 
    url("images/signImg.jpg") center / cover no-repeat;
	
}

.banner-design {
  background: 
    url("images/designImg.jpg") center / cover no-repeat;
	
}

.banner-about {
  background: 
    url("images/aboutImg.jpg") center / cover no-repeat;
	
}




.banner-text{
  color: var(--light);
	background: linear-gradient(
      rgba(0,115,119,0.8),
      rgba(0,115,119,0.8)
    );
  max-width: 850px;
 border-radius: 8px;
padding: 0.2rem 1rem;
  box-sizing: border-box;
	box-shadow: 4px 4px 15px rgba(0, 0, 0, 0.5);
	margin: auto;
	
}

.banner-text h1 {
  font-size: 2rem;
	text-shadow: 2px 4px 6px rgba(0, 0, 0, 0.4);
}



/* Features */
.features {
  background: var(--light);
  color: var(--dark);
  padding: 3rem 0;
	display: block;
	align-content: center;
	margin: 0px;
	 position: relative;
  z-index: 2;
  box-shadow: 0 8px 16px -6px rgba(0, 0, 0, 0.45);
	
	
	
}

.featurebox {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	list-style: none;
	padding: 0px;
  	margin: 0px;
	gap: 1.5rem;
	
	
}

@media (max-width:900px) {
	.featurebox {
	grid-template-columns: repeat(2, 1fr);
}
}

@media (max-width:560px) {
	.featurebox {
	grid-template-columns: 1fr;
}
}

.featureItem {
	
background: var(--light);
  border: 1px solid var(--hairline);
  border-top: 4px solid var(--background);
  border-radius: 6px;
  padding: 1.75rem 1rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-top-color 0.25s ease;
}

.featureItem h3 {
	text-align: center;
}


.featureItem h3 {
	color: var(--copper);
}

.featureItem p {
	font-size: 0.95rem;

}

.featureItem:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 30px rgba(43, 47, 54, 0.13);
  border-top-color: var(--copper);
	transition: transform 0.25s ease, box-shadow 0.25s ease, border-top-color 0.25s ease;
}

.featureicon {
	width: 100%;
	height: 50px;
	margin: 0.75rem 0;
	background-repeat:no-repeat;
	background-position:top left;
	background-size: contain;
}

.dpIcon
{
	background-image: url("images/dp.png");
	background-repeat: no-repeat;
	  background-size: contain;
	  background-position: center;
	
}

.lfIcon
{
	background-image: url("images/lf.png");
	background-repeat: no-repeat;
	  background-size: contain;
	  background-position: center;
	
}

.siIcon
{
	background-image: url("images/si.png");
	background-repeat: no-repeat;
	  background-size: contain;
	  background-position: center;
	
}

.gdIcon
{
	background-image: url("images/gd.png");
	background-repeat: no-repeat;
	  background-size: contain;
	  background-position: center;
	
}







.flex-button-container
{
	
	display: flex;
	list-style: none;
	padding: 0px;
  	margin: 0;
	justify-content:center;
	flex-wrap: wrap;
	
	
	

	
}


/*contact box index page */


.main-contact {
  
  color: var(--light);
  padding: 3rem 0 1rem;
	background: 
    url("images/footerImg.jpg") center / cover no-repeat;
		 position: relative;
  z-index: 1;
  box-shadow: 0 8px 16px -6px rgba(255, 255, 255, 0.45);
	border-top-color: var(--copper);



	
}

.main-contact h2 {
	color: var(--light);
	text-shadow: 2px 4px 6px rgba(0, 0, 0, 0.4);
	
}

.main-contact-grid {
	display: grid;
	grid-template-columns: 3fr 2fr;
	gap: 2rem;
	max-width: 1100px;
	margin: auto;
	align-items: stretch;
}

@media (max-width:700px) {
	.main-contact-grid {
	grid-template-columns: 1fr;
}
}

.main-contact-text {
	background: linear-gradient(
       rgba(0,115,119,0.9),
      rgba(0,115,119,0.9)
    );
	border-radius: 8px;
	padding: 0.2rem 1rem;
  box-sizing: border-box;
	box-shadow: 4px 4px 15px rgba(0, 0, 0, 0.5);
	margin: 0;
	width: 100%;
	
	border-top: 4px solid var(--background);
	
	border-top-color: var(--copper);
	

	
}

.main-contact-text address {
	font-style: normal;
	margin: 1em 0;
	
}

.contact-details {
	list-style: none;
	margin: 1em 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.contact-details li {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	padding: 0.5rem 0.75rem;
	border-radius: 6px;
	background: rgba(0, 0, 0, 0.35);
	transition: background 0.2s ease;
}




.contact-details li:hover {
	background: rgba(0, 0, 0, 0.5);
}

.contact-detail-icon {
	display: inline-flex;
	flex-shrink: 0;
	width: 22px;
	height: 22px;
	color: var(--copper);
}

.contact-detail-icon svg {
	width: 100%;
	height: 100%;
}

.contact-detail-body {
	display: flex;
	flex-direction: column;
	line-height: 1.3;
	min-width: 0;
}

.contact-detail-label {
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--copperlight);
}

.contact-details a {
	color: var(--light);
	font-weight: 700;
	word-break: break-word;
}

.contact-details a:hover {
	color: var(--copper);
	text-decoration: none;
}

.whatsapp-cta {
	display: inline-block;
	line-height: 0;
	border-radius: 8px;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-cta img {
	display: block;
	width: 189px;
	height: auto;
	max-width: 100%;
}

.whatsapp-cta:hover,
.whatsapp-cta:focus-visible {
	transform: translateY(-2px);
	box-shadow: 0 6px 14px rgba(0, 0, 0, 0.4);
	text-decoration: none;
}







/*footer section for each page*/



.site-footer-bottom {
  background: var(--dark);
  color: var(--light);
  padding: 3rem 0 1rem;
	
}



.footer-grid-bottom {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 2rem;
}

@media (max-width:900px) {
	.footer-grid-bottom {
	grid-template-columns: repeat(2, 1fr);
}
}

@media (max-width:560px) {
	.footer-grid-bottom {
	grid-template-columns: 1fr;
}
}


.site-footer-bottom a {
  color: var(--grey);
  text-decoration: none;
  display: block;
  margin: 0.25rem 0;
font-size: 0.9em;
}

.addr {
	border: 0.5px solid var(--hairline);
	padding: 0 0.4rem;
	border-radius: 8px;
  box-sizing: border-box;
	box-shadow: 4px 4px 15px rgba(0, 0, 0, 0.5);
	border-top: 4px solid var(--copper);

	
	
	
	
}

.addr p {
	font-size: 0.9em;
	color: var(--light);
	
}

.addr a {
	display: inline;
	font-size: inherit;
	margin: 0;
}

.addr a:link,
.addr a:visited {
	color: var(--light);
}

.addr a:hover {
	color: var(--copperlight);
}



.copyright-container {
	
	max-width: 400px;
	
	padding: 0.3rem 0.2rem;
 
	margin: auto;
	
}



.copyright {
	
  text-align: center;
	font-size: 0.6rem;
	color: var(--light);
	border-top: 0.5px solid var(--hairline);
	margin-top: 1rem;
	padding-top: 0.5rem;
}



.general-contact-text {
	
  
  border-top: 4px solid var(--background);
	background-color: var(--background);
	color: var(--light);
	max-width: 700px;
	border-radius: 8px;
	padding: 0.2rem 1rem;
  box-sizing: border-box;
	box-shadow: 4px 4px 15px rgba(0, 0, 0, 0.5);
	margin: auto;
	border-top-color: var(--copper);
	
}



.general-contact-text h2 {
	color: var(--light);
	text-shadow: 2px 4px 6px rgba(0, 0, 0, 0.4);
	
}

/*general page main section*/

.general-main {
	background: var(--light);
  color: var(--dark);
  padding: 3rem 0;
	display: block;
	align-content: center;
	margin: 0px;
	 position: relative;
  z-index: 0;
  box-shadow: 0 8px 16px -6px rgba(255, 255, 255, 0.45);
	
}




/*printing page*/


.digi-lead {
	font-size: 1.4rem;
	font-weight: 700;
	color: var(--copper);
	margin-top: 0;
	margin-bottom: 1.5rem;
}

.digi-lead--secondary {
	margin-top: 2.5rem;
}

.digi-list {
	list-style: none;
	margin: 0 0 2rem 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1rem;
}

@media (max-width:900px) {
	.digi-list {
	grid-template-columns: repeat(2, 1fr);
}
}

@media (max-width:560px) {
	.digi-list {
	grid-template-columns: 1fr;
}
}

.digi-list li {
	background: var(--light);
	border: 1px solid var(--hairline);
	border-left: 4px solid var(--copper);
	border-radius: 6px;
	padding: 0.85rem 1rem;
	font-size: 0.95rem;
	text-transform: capitalize;
	display: flex;
	align-items: center;
	gap: 0.6rem;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.digi-icon {
	display: inline-flex;
	flex-shrink: 0;
	width: 22px;
	height: 22px;
	color: var(--copper);
}

.digi-icon svg {
	width: 100%;
	height: 100%;
}

.digi-list li:hover {
	transform: translateY(-4px);
	box-shadow: 0 10px 20px rgba(43, 47, 54, 0.13);
}

.digi-note {
	max-width: 700px;
	border-left: 4px solid var(--background);
	background: rgba(0, 115, 119, 0.06);
	border-radius: 4px;
	padding: 0.9rem 1.25rem;
	
}



/*contact page */

.main-contact2 {
  
  background: var(--light);
  color: var(--light);
  padding: 3rem 0;
	display: block;
	align-content: center;
	margin: 0px;
	 position: relative;
  z-index: 0;
  box-shadow: 0 8px 16px -6px rgba(255, 255, 255, 0.45);



	
}

.main-contact2 h2 {
	color: var(--light);
	text-shadow: 2px 4px 6px rgba(0, 0, 0, 0.4);
	
}

/*contact form*/

.contact-form-wrap {
	max-width: 800px;
	margin: auto;
	color: var(--dark);
}

.contact-form-wrap h2 {
	color: var(--background);
	margin-top: 0;
}

.req {
	color: #B3261E;
	font-weight: 700;
}

.form-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1rem 1.5rem;
}

@media (max-width:700px) {
	.form-grid {
	grid-template-columns: 1fr;
}
}

.form-field {
	display: flex;
	flex-direction: column;
}

.form-field--full {
	grid-column: 1 / -1;
}

.form-field label {
	font-weight: 600;
	font-size: 0.9rem;
	margin-bottom: 0.3rem;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea {
	width: 100%;
	padding: 0.7rem 0.8rem;
	font-family: inherit;
	font-size: 1rem;
	color: var(--dark);
	background: var(--light);
	border: 1px solid var(--darkgrey);
	border-radius: 6px;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form textarea {
	resize: vertical;
	min-height: 140px;
}

.contact-form input:focus,
.contact-form textarea:focus {
	outline: none;
	border-color: var(--background);
	box-shadow: 0 0 0 3px rgba(0, 115, 119, 0.25);
}

.contact-form [aria-invalid="true"] {
	border-color: #B3261E;
}

.form-error {
	color: #B3261E;
	font-size: 0.85rem;
	margin-top: 0.3rem;
}

.form-check {
	display: flex;
	align-items: flex-start;
	gap: 0.6rem;
	font-weight: 400 !important;
	font-size: 0.95rem !important;
	cursor: pointer;
}

.form-check input {
	width: 1.15rem;
	height: 1.15rem;
	flex-shrink: 0;
	margin-top: 0.15rem;
	accent-color: var(--background);
}

.form-submit {
	background: var(--background);
	color: var(--light);
	font-family: inherit;
	font-size: 1rem;
	font-weight: 700;
	border: 0;
	border-radius: 6px;
	padding: 0.8rem 2rem;
	cursor: pointer;
	justify-self: start;
	transition: background 0.2s ease, transform 0.2s ease;
}

.form-submit:hover,
.form-submit:focus-visible {
	background: var(--dark);
	transform: translateY(-2px);
}

.form-message {
	border-radius: 6px;
	padding: 0.9rem 1.25rem;
	font-weight: 600;
}

.form-message--ok {
	background: rgba(0, 115, 119, 0.1);
	border-left: 4px solid var(--background);
	color: var(--background);
}

.form-message--error {
	background: rgba(179, 38, 30, 0.08);
	border-left: 4px solid #B3261E;
	color: #B3261E;
}

/* honeypot - hidden from people, visible to bots */
.hp-field {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

/*cookie consent*/

.cookie-banner {
	display: none;
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 100;
	background: var(--dark);
	color: var(--light);
	box-shadow: 0 -6px 20px rgba(0, 0, 0, 0.35);
	border-top: 4px solid var(--copper);
}

.cookie-banner.is-visible {
	display: block;
}

.cookie-banner-inner {
	max-width: 1200px;
	margin: auto;
	padding: 1.25rem 1.5rem;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 1rem 2rem;
}

.cookie-banner-body {
	flex: 1 1 380px;
}

.cookie-banner-title {
	font-size: 1.05rem;
	font-weight: 700;
	margin: 0 0 0.35rem;
	color: var(--copperlight);
}

.cookie-banner-body p {
	margin: 0;
	font-size: 0.9rem;
	line-height: 1.55;
}

.cookie-banner-body a {
	color: var(--copperlight);
	text-decoration: underline;
}

.cookie-banner-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	flex-shrink: 0;
}

/* Both buttons are deliberately the same size and weight: rejecting
   must be as easy as accepting. */
.cookie-btn {
	font-family: inherit;
	font-size: 0.95rem;
	font-weight: 700;
	line-height: 1.2;
	padding: 0.75rem 1.25rem;
	border: 2px solid transparent;
	border-radius: 6px;
	cursor: pointer;
	transition: background 0.2s ease, border-color 0.2s ease;
}

.cookie-btn--accept {
	background: var(--background);
	color: var(--light);
	border-color: var(--background);
}

.cookie-btn--accept:hover,
.cookie-btn--accept:focus-visible {
	background: #005B5E;
	border-color: #005B5E;
}

.cookie-btn--reject {
	background: transparent;
	color: var(--light);
	border-color: var(--light);
}

.cookie-btn--reject:hover,
.cookie-btn--reject:focus-visible {
	background: rgba(255, 255, 255, 0.14);
}

.cookie-btn:focus-visible {
	outline: 3px solid var(--copperlight);
	outline-offset: 2px;
}

@media (max-width:700px) {
	.cookie-banner-inner {
	flex-direction: column;
	align-items: stretch;
	padding: 1rem 1.25rem;
	gap: 1rem;
}

	.cookie-banner-body {
	flex: 0 0 auto;
}

	.cookie-banner-actions {
	flex-direction: column;
	gap: 0.6rem;
}

	.cookie-btn {
	width: 100%;
}
}

/*legal pages - privacy, terms*/

.legal {
	max-width: 820px;
	margin: auto;
	color: var(--dark);
}

.legal h1 {
	font-size: 2rem;
	color: var(--background);
	margin-top: 0;
	margin-bottom: 0.5rem;
}

.legal h2 {
	font-size: 1.35rem;
	color: var(--background);
	border-bottom: 2px solid var(--hairline);
	padding-bottom: 0.35rem;
	margin-top: 2.75rem;
	scroll-margin-top: 1.5rem;
}

.legal h3 {
	font-size: 1.05rem;
	color: var(--copper);
	margin-top: 1.75rem;
	margin-bottom: 0.5rem;
}

.legal p,
.legal li {
	font-size: 0.98rem;
}

.legal ul {
	padding-left: 1.25rem;
	margin: 0.75rem 0;
}

.legal li {
	margin: 0.45rem 0;
}

/* Copper fails contrast on white, so legal text links use the teal. */
.legal a {
	color: var(--background);
	text-decoration: underline;
}

.legal a:hover {
	color: var(--dark);
}

.legal-intro {
	font-size: 1.1rem !important;
	margin-top: 0;
}

.legal-toc {
	background: rgba(0, 115, 119, 0.06);
	border-left: 4px solid var(--background);
	border-radius: 4px;
	padding: 1rem 1.25rem;
	margin: 1.75rem 0;
}

.legal-toc-title {
	font-size: 1rem !important;
	color: var(--dark) !important;
	border: 0 !important;
	margin: 0 0 0.5rem !important;
	padding: 0 !important;
}

.legal-toc ul {
	margin: 0;
	padding-left: 1.1rem;
}

.legal-dl {
	margin: 1rem 0;
}

.legal-dl dt {
	font-weight: 700;
	color: var(--copper);
	font-size: 0.8rem;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	margin-top: 0.9rem;
}

.legal-dl dd {
	margin: 0.15rem 0 0;
}

.legal-address {
	font-style: normal;
	border-left: 3px solid var(--hairline);
	padding-left: 1rem;
	margin: 0.75rem 0;
}

.legal-updated {
	margin-top: 2.5rem;
	padding-top: 1rem;
	border-top: 1px solid var(--hairline);
	font-size: 0.85rem !important;
	color: #5A6069;
}

.legal-table-wrap {
	overflow-x: auto;
	margin: 1rem 0 1.5rem;
}

.legal-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 0.9rem;
}

.legal-table th {
	text-align: left;
	background: rgba(0, 115, 119, 0.08);
	color: var(--background);
	font-weight: 700;
	padding: 0.6rem 0.75rem;
	border-bottom: 2px solid var(--hairline);
}

.legal-table td {
	padding: 0.6rem 0.75rem;
	border-bottom: 1px solid var(--hairline);
	vertical-align: top;
}

.legal-table code {
	background: rgba(0, 115, 119, 0.08);
	border-radius: 3px;
	padding: 0.1rem 0.35rem;
	font-size: 0.85em;
	white-space: nowrap;
}

/* Stack the table into cards on small screens */
@media (max-width:640px) {
	.legal-table thead {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(0 0 0 0);
}

	.legal-table tr {
	display: block;
	border: 1px solid var(--hairline);
	border-radius: 6px;
	padding: 0.5rem;
	margin-bottom: 0.85rem;
}

	.legal-table td {
	display: flex;
	gap: 0.75rem;
	border: 0;
	padding: 0.3rem 0.4rem;
}

	.legal-table td::before {
	content: attr(data-label);
	flex: 0 0 5rem;
	font-weight: 700;
	color: var(--copper);
	font-size: 0.8rem;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	padding-top: 0.1rem;
}
}

/*meet the team*/

.team {
	max-width: 1100px;
	margin: auto;
	color: var(--dark);
}

.team h2 {
	color: var(--background);
	margin-top: 0;
}

.team-intro {
	margin-top: 0;
	margin-bottom: 2rem;
	font-size: 1.05rem;
}

/* Flex rather than grid so an incomplete last row stays centred */
.team-grid {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 1.5rem;
	margin-bottom: 2.5rem;
}

.team-card {
	flex: 1 1 280px;
	max-width: 340px;
	background: var(--light);
	border: 1px solid var(--hairline);
	border-top: 4px solid var(--background);
	border-radius: 6px;
	padding: 1.5rem 1.25rem;
	transition: transform 0.25s ease, box-shadow 0.25s ease, border-top-color 0.25s ease;
}

.team-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 14px 30px rgba(43, 47, 54, 0.13);
	border-top-color: var(--copper);
}

/* Placeholder until photographs are added - swap for an <img> when ready */
.team-initials {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: var(--background);
	color: var(--light);
	font-size: 1.15rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	margin-bottom: 1rem;
}

.team-card h3 {
	font-size: 1.15rem;
	color: var(--background);
	margin: 0 0 0.15rem;
}

.team-role {
	margin: 0 0 0.85rem;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--copper);
}

.team-card p {
	font-size: 0.95rem;
	margin: 0;
}

@media (max-width:560px) {
	.team-card {
	max-width: none;
}
}

/* Temporary: with 4 team members, force a 2x2 grid on wide screens.
   Delete this block to return to the automatic 3-across layout. */
@media (min-width:901px) {
	.team-card {
	flex: 1 1 calc(50% - 0.75rem);
	max-width: calc(50% - 0.75rem);
}
}

/*sitemap*/

.sitemap-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
	margin: 2rem 0;
}

@media (max-width:900px) {
	.sitemap-grid {
	grid-template-columns: repeat(2, 1fr);
}
}

@media (max-width:560px) {
	.sitemap-grid {
	grid-template-columns: 1fr;
}
}

.sitemap-group h2 {
	font-size: 1.1rem;
	margin-top: 0;
}

.sitemap-group ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.sitemap-group li {
	margin: 0 0 1rem;
	padding-left: 0.9rem;
	border-left: 3px solid var(--hairline);
	transition: border-left-color 0.2s ease;
}

.sitemap-group li:hover {
	border-left-color: var(--copper);
}

.sitemap-group li a {
	font-weight: 700;
}

.sitemap-desc {
	display: block;
	font-size: 0.85rem;
	color: #5A6069;
	margin-top: 0.15rem;
}

/*accessibility helper - visible to screen readers and search engines only*/

.visually-hidden {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

/*logo is now a link back to the home page*/

a.headerContainer {
	display: block;
	text-decoration: none;
}

a.headerContainer:hover,
a.headerContainer:focus-visible {
	text-decoration: none;
}

a.headerContainer:focus-visible {
	outline: 3px solid var(--copperlight);
	outline-offset: 4px;
}

/*clickable service tiles on the home page*/

.features h2 {
	color: var(--background);
	text-align: center;
	margin-top: 0;
	margin-bottom: 2rem;
}

a.featureItem:link,
a.featureItem:visited {
	display: flex;
	flex-direction: column;
	color: var(--dark);
	text-decoration: none;
}

a.featureItem:hover,
a.featureItem:focus-visible {
	text-decoration: none;
}

a.featureItem:focus-visible {
	outline: 3px solid var(--copper);
	outline-offset: 3px;
}

.featureMore {
	margin-top: auto;
	align-self: flex-start;
	padding-top: 1rem;
	font-size: 0.9rem;
	font-weight: 700;
	color: var(--background);
}

.featureMore::after {
	content: " \2192";
	transition: transform 0.2s ease;
}

a.featureItem:hover .featureMore,
a.featureItem:focus-visible .featureMore {
	color: var(--copper);
	text-decoration: underline;
}

/*footer column headings - h2 for correct document outline, sized like the old h4*/

.footer-heading {
	font-size: 1em;
	font-weight: bold;
	margin-top: 1.33em;
	margin-bottom: 1.33em;
}