/* Nota Bene Global — main stylesheet
   Minimal reset only. */

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

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

body {
	margin: 0;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
	line-height: 1.5;
}

img,
picture,
video {
	max-width: 100%;
	display: block;
}

a {
	color: inherit;
}

.container {
	width: 100%;
	max-width: 1600px;
	margin-inline: auto;
	padding-inline: 1.5rem;
}

@font-face {
	font-family: 'Century Expanded LT W01';
	src: url('../fonts/705949/ada50358-aeee-4f99-8544-6add4e108878.woff2') format('woff2');
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Century Expanded LT W01';
	src: url('../fonts/705946/e71300fe-b525-4c62-8152-5c4c1e0b9053.woff2') format('woff2');
	font-weight: 400;
	font-style: italic;
	font-display: swap;
}

:root {
	--hero-overlay: rgba(24, 16, 8, 0.45);
	--nbg-black: #353535;
}

/* Utility clases */

.br-hide {
	display: none;
}

@media (min-width: 992px) {
	.br-hide {
		display: block;
	}
}

.admin-bar .site-header {
	top: 32px;
}

@media (max-width: 782px) {
	.admin-bar .site-header {
		top: 46px;
	}
}


/* Navigation */

.site-header {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	z-index: 10;
	background: var(--nbg-black);
}

.home .site-header {
	background: transparent; /* hero's own overlay handles contrast */
}

.site-header_inner {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	padding: 1.25rem 1rem
}

.site-header_contact-btn {
	padding: 0.5em 1.25em;
	font-size: 0.85rem;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: #fff;
	text-decoration: none;
	justify-self: start;
}

.site-header__logo {
	justify-self: center;
}

.site-header_logo img {
	height: 50px;
	width: auto;
	display: block;
}

.site-header_burger {
	background: none;
	border: 0;
	padding: 0.5rem;
	display: flex;
	flex-direction: column;
	gap: 5px;
	cursor: pointer;
	justify-self: end;
	display: none;
}

.site-header_burger span {
	display: block;
	width: 24px;
	height: 2px;
	background: #fff;
}

@media (min-width: 768px) {
	.site-header_inner { padding: 2rem; }
	.site-header_logo img { height: 72px; }
}

@media (min-width: 992px) {
	.site-header_inner { padding: 2rem 2rem; }
}

/* Hero panel */

.hero {
	position: relative;
	height: 100vh;
	min-height: 100svh; /* accounts for mobile browser chrome */
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	overflow: hidden;
	color: #fff;
	text-align: center;
}

@media (min-width: 768px) {
	.hero {
		min-height: 700px;
	}
}

.hero_media {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.hero_video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.hero_overlay {
	position: absolute;
	inset: 0;
	background: var(--hero-overlay);
}

.hero_content {
	position: relative;
	z-index: 1;
	max-width: 90%;
	padding-inline: 1rem;
}

.hero_heading {
	font-family: 'Century Expanded LT W01', serif;
	font-weight: 400;
	line-height: 1;
	margin: 0;
	font-size: clamp(2.3em, 6.8vmin, 5em);
}

.hero_subheading {
	margin: clamp(2rem, 6vh, 6rem) auto 0;
	font-family: 'Century Expanded LT W01', serif;
	max-width: 40em;
	line-height: 1.2;
	font-size: clamp(1.5em, 3.8vmin, 2.6em);
}

.button_cta {
	display: inline-block;
	margin: clamp(2rem, 6vh, 6rem) auto 0;
	font-family: 'Century Expanded LT W01', serif;
	border-radius: 999px;
	font-size: clamp(1em, 2vw, 1.2em);
	letter-spacing: 0.05em;
	text-transform: uppercase;
	text-decoration: none;
	line-height: 1;
	padding: 0.95em 1.75em 0.85em;
	border: 1px solid transparent;
	transition: background-color 0.35s ease, color 0.35s ease, border-color 0.35s ease, letter-spacing 0.35s ease;
	cursor: pointer;
}

.button_cta_black {
	background: var(--nbg-black);
	color: #fff;
	border-color: var(--nbg-black);
}

.button_cta_white {
	background: #fff;
	color: var(--nbg-black);
	border-color: #fff;
}

.button_cta_black:hover {
	background: #fff;
	color: var(--nbg-black);
	border-color: #fff;
	border: 1px solid var(--nbg-black);
}

.button_cta_white:hover {
	background: var(--nbg-black);
	color: #fff;
	border-color: var(--nbg-black);
	border: 1px solid #fff;
}

.button_cta:hover {
	letter-spacing: 0.1em;
}

.hero_scroll-down {
	position: absolute;
	bottom: 1.5rem;
	left: 50%;
	transform: translateX(-50%);
	z-index: 2;
	background: none;
	border: 0;
	cursor: pointer;
	padding: 0.5rem;
}

.hero_scroll-down img {
	width: 20px;
	height: auto;
	display: block;
}

/* Tablet */
@media (min-width: 768px) {
	.hero_content {
		max-width: 70%;
	}
}

/* Desktop */
@media (min-width: 992px) {
	.hero_content {
		max-width: 900px;
	}
}

/* About */

.statement {
	padding-top: clamp(4rem, 5vw + 3rem, 10rem);
	padding-bottom: clamp(2rem, 5vw + 2rem, 6rem);
	text-align: center;
}

.statement_inner {
	max-width: 1170px;
	margin-inline: auto;
	padding-inline: 2rem;
}

.statement_text {
	font-family: 'Century Expanded LT W01', serif;
	font-weight: 400;
	line-height: 1.2;
	font-size: clamp(1.7em, 5vmin, 5em);
	color: var(--nbg-black);
	margin: 0;
}

.statement_highlight {
	color: #e6332a;
}


/* Testimonials */

.testimonials {
	padding-top: clamp(4rem, 5vw + 3rem, 10rem);
	padding-bottom: clamp(2rem, 5vw + 2rem, 6rem);
	text-align: center;
}

.testimonials_inner {
	max-width: 1000px;
	margin-inline: auto;
	padding-inline: 1.5rem;
}

.testimonials_slide {
	outline: none;
}

.testimonials_quote {
	font-family: 'Century Expanded LT W01', serif;
	font-style: italic;
	font-weight: 400;
	line-height: 1.3;
	font-size: clamp(1.5em, 3vmin, 3em);
	letter-spacing: -0.01em;
	color: var(--nbg-black);
	margin: 0;
}

.testimonials_quote::before {
	content: '\201C';
}

.testimonials_quote::after {
	content: '\201D';
}

.testimonials_author {
	display: block;
	margin-top: 4rem;
	font-family: 'Century Expanded LT W01', serif;
	font-style: normal;
	font-size: clamp(1em, 2vw, 1.6em);
	color: var(--nbg-black);
}

/* Slick dots — custom, since we're not loading slick-theme.css */
.slick-dots {
	list-style: none;
	display: flex !important;
	justify-content: center;
	gap: 1.5rem;
	margin: 4rem 0 0;
	padding: 0;
}

.slick-dots li {
	margin: 0;
}

.slick-dots li button {
	display: block;
	width: 8px;
	height: 8px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: #d9d9d9;
	font-size: 0;
	text-indent: -9999px;
	cursor: pointer;
}

.slick-dots li.slick-active button {
	background: #1a1a1a;
}

/* Featured in */

.featured_in {
	padding-top: clamp(4rem, 8.14vw + 2.09rem, 6rem);
	padding-bottom: clamp(3rem, 8.14vw + 1.09rem, 5rem);
	text-align: center;
}

.featured_in_inner {
	max-width: 1500px;
	margin-inline: auto;
	padding-inline: 1.5rem;
}

.featured_in_label {
	font-size: 1rem;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: #6b6b6b;
	margin: 0 0 3.5rem;
	font-family: 'Century Expanded LT W01', serif;
	font-style: normal;
}

.featured_in_logos {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
}

.featured_in_logo_wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    /* FIX 1: Ensure the wrapper spans the width and doesn't collapse on mobile */
    width: 100%; 
    flex: 0 0 auto; 
}

.featured_in_logo {
    max-height: 42px;
    width: auto;
    /* FIX 2: Prevents browsers from aggressively shrinking the image to 0 */
    flex-shrink: 0; 
}

/* Tablet — 2 across */
@media (min-width: 768px) {
	.featured_in_logos {
		flex-direction: row;
		flex-wrap: wrap;
		justify-content: center;
		gap: 2.5rem 3rem;
	}

	.featured_in_logo_wrap {
		flex: 0 0 calc(50% - 1.5rem);
	}

	.featured_in_logo {
		max-height: 46px;
	}
}

/* Desktop — 4 across */
@media (min-width: 992px) {
	.featured_in_logos {
		flex-wrap: nowrap;
	}

	.featured_in_logo_wrap {
		flex: 1 1 0;
	}

	.featured_in_logo {
		max-height: 52px;
	}
}

.featured_in_logo_times {
	max-height: clamp(65px, 2.27vw + 3.09rem, 90px);
}


/* Footer */

.site_footer {
	padding-top: clamp(4rem, 8.14vw + 2.09rem, 6rem);
	padding-bottom: clamp(3rem, 8.14vw + 1.09rem, 5rem);
}

.site_footer_inner {
	max-width: 1100px;
	margin-inline: auto;
	padding-inline: 1.5rem;
}

.site_footer_nav {
	text-align: center;
}

.site_footer_list {
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	gap: 1rem;
	list-style: none;
	margin: 0;
	padding: 2.5rem 0 0 0;
	border-top: 1px solid var(--nbg-black);

}

.site_footer_list a {
	font-family: 'Century Expanded LT W01', serif;
	font-size: 1rem;
	color: #262626;
	text-decoration: none;
}

.site_footer_social {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 1rem;
	margin-top: 3rem;
}

.site_footer_social_link img {
	width: 32px;
	height: 32px;
	display: block;
}

@media (min-width: 768px) {
	.site_footer_list {
		flex-direction: row;
		gap: 2.5rem;
	}
}



/* Divider */

.divider {
	border: 0;
	height: 1px;
	width: 100px;
	background: var(--nbg-black);
	margin: 2.5rem auto 0;
}

@media (min-width: 992px) {
	.divider {
		width: 200px;
	}
}


/* All other pages */

.page {
	padding-top: clamp(3rem, 5vw + 3rem, 7rem);
	padding-bottom: clamp(1rem, 5vw + 2rem, 4rem);
}

.page_inner {
	max-width: 760px;
	margin-inline: auto;
	padding-inline: 1.5rem;
}

.page_header {
	text-align: center;
	margin-bottom: 3rem;
}

.page_title {
	font-family: 'Century Expanded LT W01', serif;
	font-weight: 400;
	font-size: clamp(1.75em, 3.2vw, 2.75em);
	margin: 0 0 2rem;
}

.page_content {
	text-align: left;
	line-height: 1.7;
	color: var(--nbg-black);
}

.page_content h2 {
	font-family: 'Century Expanded LT W01', serif;
	font-weight: 400;
	font-size: clamp(1.25em, 2vw, 1.75em);
	margin: 2.5em 0 1em;
}

.page_content h3 {
	font-family: 'Century Expanded LT W01', serif;
	font-weight: 400;
	font-size: clamp(1.1em, 1.6vw, 1.35em);
	margin: 2em 0 0.75em;
}

.page_content p {
	margin: 0 0 1.5em;
	font-family: 'Century Expanded LT W01', serif;
}

.page_content ul,
.page_content ol {
	margin: 0 0 1.5em;
	padding-left: 1.5em;
}

.page_content li {
	margin-bottom: 0.5em;
}

.page_content a {
	color: var(--nbg-black);
	text-decoration: underline;
}

.lightweight-accordion {
	font-family: 'Century Expanded LT W01', serif !important;
	line-height: 1.4;
}


/* WP Forms */

.wpforms-container-full .wpforms-form input[type="text"], .wpforms-container-full .wpforms-form input[type="email"], .wpforms-container-full .wpforms-form input[type="tel"], .wpforms-field-select select {
	height: 50px !important;
	border-radius: 4px !important;
	background-color: #f8f8f8 !important;
	font-size: 1.25em !important;
}

.wpforms-container-full .wpforms-form textarea {
	border-radius: 4px !important;
	background-color: #f8f8f8 !important;
	font-size: 1.25em !important;
}

.wpforms-container-full .wpforms-form input.wpforms-field-medium {
	max-width: inherit !important;
}

.wpforms-captcha-math {
	color: #fff;
}

.wpforms-field-label {
	padding-bottom: 15px !important;
}

.wpforms-conditional-hide {
    display: none !important;
}

div.wpforms-container-full .wpforms-form input.wpforms-field-medium, div.wpforms-container-full .wpforms-form .wpforms-field-row.wpforms-field-medium {
	max-width: unset !important;
}

div.wpforms-container-full {
  margin: 0px auto !important;
}

.wpforms-field-label {
	font-weight: 400 !important;
}

.wpforms-confirmation-container-full {
	background-color: transparent !important;
	border: 0px !important;
}

.wpforms-confirmation-container-full p {
	color: #fff !important;
	text-align: center;
}

.wpforms-captcha-math {
	color: #fff;
	display: block;
	font-weight: 800;
	margin-bottom: 0.5em;
}

.wpforms-form .wpforms-field-container .wpforms-field.wpforms-field-content {
	padding: 0 0 20px 0 !important;
}

.wpforms-field.wpforms-field-content .wpforms-field-row p {
	font-family: 'Century Expanded LT W01', serif;
	font-size: clamp(1em, 2vw, 1.6em);
	line-height: 1.4;
	color: var(--nbg-black);
}

/* Video Modal */
/* Video Modal */

.modal_video {
	position: fixed;
	inset: 0;
	z-index: 999990;
	display: none;
	align-items: center;
	justify-content: center;
}

.modal_video.is-open {
	display: flex;
}

.modal_video_overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.8);
	z-index: 999991;
}

.modal_video_dialog {
	position: relative;
	z-index: 999999;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.modal_video_player {
	max-width: 90%;
	max-height: 90vh;
	width: auto;
	height: auto;
	display: block;
}

.modal_video_close {
	position: absolute;
	top: 37px;
	right: 53px;
	z-index: 1000000;
	background: none;
	border: 0;
	padding: 0;
	cursor: pointer;
}

.modal_video_close img {
	width: 30px;
	height: auto;
	display: block;
	transition: opacity 0.3s ease;
}

.modal_video_close:hover img {
	opacity: 0.7;
}

