:root {
	--navy: #0b1147;
	--navy-dark: #070b2c;
	--navy-overlay: rgba(11, 17, 71, 0.78);
	--surface: #ffffff;
	--surface-muted: #f6f6f6;
	--text: #1b1b1b;
	--text-muted: #575757;
	--text-soft: #d9d9e1;
	--border: #dadada;
	--shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.08);
	--shadow-banner: 0 10px 24px rgba(0, 0, 0, 0.16);
	--content-width: 1280px;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	min-width: 320px;
	color: var(--text);
	font-family: "Source Sans 3", Arial, sans-serif;
	font-size: 16px;
	line-height: 1.5;
	background: var(--surface-muted);
}

a {
	color: inherit;
}

button,
input,
textarea {
	font: inherit;
}

.site-shell {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}

main {
	flex: 1;
}

.container {
	width: min(calc(100% - 48px), var(--content-width));
	margin: 0 auto;
}

.site-header__brandband {
	background: var(--navy);
}

.site-header__brandwrap {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	padding: 22px 24px 26px;
}

.site-logo {
	display: block;
	color: #fff;
	text-decoration: none;
	text-align: center;
	font-family: "Libre Baskerville", Georgia, serif;
	font-size: clamp(1.6rem, 3vw, 2.5rem);
	line-height: 1.2;
	letter-spacing: 1px;
}

.site-header__navband {
	background: #fff;
	border-bottom: 1px solid var(--border);
}

.site-header__navwrap {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 50px;
}

.primary-nav {
	display: flex;
	gap: 44px;
	align-items: center;
}

.primary-nav__link,
.mobile-drawer__link {
	color: var(--text);
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: 0.143em;
	font-size: 1rem;
	padding: 6px;
}

.primary-nav__link--active,
.mobile-drawer__link--active {
	color: var(--navy);
	font-weight: 700;
}

.primary-nav__link:hover,
.mobile-drawer__link:hover,
.site-footer a:hover,
.contact-panel a:hover {
	color: #2734a6;
}

.nav-toggle {
	position: absolute;
	left: 0;
	display: none;
	width: 44px;
	height: 44px;
	padding: 0;
	border: 0;
	background: transparent;
	cursor: pointer;
}

.nav-toggle span {
	display: block;
	width: 24px;
	height: 2px;
	margin: 5px auto;
	background: var(--navy);
}

.mobile-drawer {
	position: fixed;
	inset: 0 auto 0 0;
	z-index: 40;
	display: flex;
	flex-direction: column;
	gap: 16px;
	width: min(78vw, 320px);
	padding: 88px 24px 24px;
	background: var(--navy);
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
	transform: translateX(-110%);
	transition: transform 0.3s ease-in-out;
}

.mobile-drawer.is-open {
	transform: translateX(0);
}

.mobile-drawer__close {
	position: absolute;
	top: 16px;
	right: 16px;
	border: 0;
	background: transparent;
	color: #fff;
	font-size: 2rem;
	line-height: 1;
	cursor: pointer;
}

.mobile-drawer__link {
	color: #fff;
	padding: 10px 0;
}

.mobile-drawer__scrim {
	position: fixed;
	inset: 0;
	z-index: 30;
	background: rgba(0, 0, 0, 0.34);
}

.hero {
	position: relative;
	overflow: hidden;
}

.hero--home {
	min-height: clamp(300px, 42vh, 520px);
	background-image: url("assets/rs=w_1023,m.jpg");
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	image-rendering: -webkit-optimize-contrast;
	background-attachment: fixed;
}

.hero-text-bar {
	background: var(--navy);
	padding: 20px 24px;
	text-align: center;
}

.hero-text-bar__text {
	max-width: 700px;
	margin: 0 auto;
	color: var(--text-soft);
	font-size: 1.3rem;
	line-height: 1.6;
	font-weight: 300;
}

/* Disable fixed backgrounds on mobile for smoother scrolling */
@media (max-width: 767px) {
	.hero--home {
		min-height: 280px;
		background-attachment: scroll;
	}

	.hero-text-bar {
		padding: 28px 20px;
	}

	.hero-text-bar__text {
		font-size: 0.95rem;
	}
}

.hero__overlay {
	position: absolute;
	inset: 0;
}

.hero__content {
	position: relative;
	z-index: 1;
	display: flex;
	min-height: inherit;
}

.hero__content--bottom {
	align-items: flex-end;
	justify-content: center;
	padding-top: 56px;
	padding-bottom: 64px;
}

.hero__lead {
	max-width: 780px;
	margin: 0;
	color: var(--text-soft);
	text-align: center;
	font-size: clamp(1.25rem, 1.2rem + 0.3vw, 1.45rem);
	line-height: 1.55;
}

.cards-section {
	padding: 40px 0;
	background: var(--surface-muted);
}

.cards-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0;
	border-top: 1px solid var(--border);
	border-left: 1px solid var(--border);
}

.info-card {
	min-height: 16rem;
	padding: 72px 40px;
	background: var(--surface);
	border-right: 1px solid var(--border);
	border-bottom: 1px solid var(--border);
}

.info-card__title,
.section-heading h1,
.contact-panel__title {
	margin: 0 0 24px;
	color: var(--text);
	font-family: "Fjalla One", Arial, sans-serif;
	text-transform: uppercase;
	letter-spacing: normal;
}

.info-card__title {
	font-size: clamp(2rem, 1.8rem + 0.5vw, 2.25rem);
	line-height: 1.25;
}

.info-card p,
.info-card li,
.contact-panel p,
.contact-form__policy {
	color: var(--text-muted);
	font-size: 1.35rem;
	line-height: 1.5;
}

.info-card ul {
	margin: 0 0 20px 18px;
	padding: 0;
}

.info-card li {
	font-weight: 700;
}

.info-card__subhead {
	margin: 20px 0 10px;
	font-size: 1.35rem;
	color: var(--text);
	font-weight: 700;
}

.info-card__emphasis {
	margin-top: 20px;
	color: var(--text);
	font-weight: 700;
	text-decoration: underline;
}

.section-heading--contact {
	padding: 56px 0 0;
	background: #fff;
}

.section-heading h1 {
	color: var(--navy);
	text-align: center;
	font-size: clamp(3rem, 2.7rem + 0.8vw, 4rem);
	line-height: 1.4;
}

.section-heading__rule {
	display: block;
	width: 50px;
	height: 2px;
	margin: 24px auto 0;
	background: #e2e2e2;
}

.contact-page {
	background: #fff;
}

.contact-content {
	padding: 40px 0 56px;
	border-bottom: 1px solid var(--border);
}

.contact-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 48px;
}

.contact-panel__title {
	font-size: clamp(2rem, 1.8rem + 0.2vw, 2.25rem);
	text-transform: none;
}

.contact-form {
	display: grid;
	gap: 18px;
}

.field-label {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	border: 0;
}

.field-input,
.field-textarea {
	width: 100%;
	border: 1px solid var(--border);
	padding: 23px 16px 7px;
	color: #474747;
	font-size: 1.35rem;
	background: #fff;
}

.field-input::placeholder,
.field-textarea::placeholder {
	color: #474747;
}

.field-input:focus,
.field-textarea:focus {
	outline: none;
	box-shadow: inset 0 0 0 1px var(--navy);
}

.field-input {
	min-height: 56px;
}

.field-textarea {
	resize: vertical;
	min-height: 236px;
}

.contact-form__submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 56px;
	padding: 8px 32px;
	border: 0;
	border-radius: 4px;
	background: var(--navy);
	color: #dddde1;
	text-transform: uppercase;
	letter-spacing: 0.143em;
	font-weight: 700;
	cursor: pointer;
}

.contact-form__submit:hover {
	background: #000;
}

.contact-form__policy {
	margin: 0;
	font-size: 0.75rem;
}

.contact-panel--info {
	margin-top: 40px;
}

.contact-panel--info p {
	margin: 0 0 12px;
}

.site-footer {
	padding: 32px 0;
	border-top: 1px solid var(--border);
	background: var(--surface-muted);
}

.site-footer__row {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.site-footer p {
	margin: 0;
	color: #525252;
	font-size: 0.95rem;
}

.cookie-banner {
	position: fixed;
	right: 24px;
	bottom: 24px;
	z-index: 50;
	width: min(640px, calc(100% - 32px));
	max-width: 640px;
	padding: 24px;
	background: var(--navy);
	color: #fff;
	box-shadow: var(--shadow-banner);
	transition: transform 0.25s ease, opacity 0.25s ease;
}

.cookie-banner.is-hidden {
	opacity: 0;
	pointer-events: none;
	transform: translateY(24px);
}

.cookie-banner__title {
	margin: 0 0 16px;
	font-size: clamp(2rem, 1.8rem + 0.2vw, 2.25rem);
	font-weight: 400;
}

.cookie-banner__body {
	margin: 0 0 24px;
	color: var(--text-soft);
	font-size: 1.15rem;
}

.cookie-banner__button {
	width: 100%;
	min-height: 62px;
	border: 0;
	border-radius: 4px;
	background: #fff;
	color: #303030;
	text-transform: uppercase;
	letter-spacing: 0.143em;
	font-weight: 700;
	cursor: pointer;
}

.cookie-banner__button:hover {
	background: #f5f5f5;
}

body.nav-open {
	overflow: hidden;
}

@media (max-width: 1023px) {
	.primary-nav {
		display: none;
	}

	.nav-toggle {
		display: inline-block;
	}

	.cards-grid,
	.contact-grid,
	.site-footer__row {
		grid-template-columns: 1fr;
	}

	.contact-panel--info {
		margin-top: 0;
	}
}

@media (max-width: 767px) {
	.container {
		width: min(calc(100% - 32px), var(--content-width));
	}

	.site-header__brandwrap {
		padding-top: 40px;
		padding-bottom: 40px;
	}

	.site-logo {
		font-size: clamp(1.4rem, 5vw, 2rem);
	}

	.site-header__navwrap {
		min-height: 72px;
	}

	.hero__content--bottom {
		padding-bottom: 40px;
	}

	.hero__lead,
	.info-card p,
	.info-card li,
	.contact-panel p {
		font-size: 1.15rem;
	}

	.info-card {
		padding: 40px 32px;
	}

	.section-heading--contact {
		padding-top: 40px;
	}

	.contact-content {
		padding-bottom: 40px;
	}

	.cookie-banner {
		right: 16px;
		bottom: 16px;
		padding: 20px;
	}
	
	html {
  overflow-y: scroll;
  scrollbar-gutter: stable both-edges;
  
}

.site-header,
.nav {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.site-title {
  display: block;
  width: 100%;
  text-align: center;
}


/* Force header/title/nav to center against full browser width */
.site-header__brandband,
.site-header__navband {
	width: 100%;
}

.site-header__brandwrap,
.site-header__navwrap {
	width: 100%;
	max-width: none;
	margin: 0 auto;
}

.site-logo {
	display: block;
	width: 100%;
	text-align: center;
}

}
