/*!
Theme Name:  Bow Street Academy LA
Author:      CRD Media
Author URI:  https://www.crdmedia.ie
Description: Bow Street Academy LA â€” Custom Theme by CRD Media
Version:     2.0.0
Tested up to: 5.4
Requires PHP: 5.6
License:     GNU General Public License v2 or later
License URI: LICENSE
Text Domain: cloverock
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready
*/


/*--------------------------------------------------------------
# DESIGN TOKENS
--------------------------------------------------------------*/
:root {
  --bs-black:       #0a0a0a;
  --bs-white:       #f5f3ef;
  --bs-off-white:   #ede9e3;
  --bs-warm-grey:   #c8c2b8;
  --bs-mid-grey:    #8a8278;
  --bs-dark-grey:   #2a2825;
  --bs-gold:        #c9a96e;
  --bs-gold-light:  #e8dcc8;
  --bs-gold-hover:  #d4b07a;

  --bs-font-display: 'Playfair Display', Georgia, serif;
  --bs-font-body:    'DM Sans', sans-serif;

  --bs-radius-sm: 8px;
  --bs-radius-md: 16px;
  --bs-radius-lg: 28px;
  --bs-radius-xl: 40px;
  --bs-nav-h:  78px;
  --bs-max-w:  1280px;
  --bs-gutter: clamp(24px, 5vw, 80px);
  --gutter:    clamp(24px, 5vw, 80px);

  --bs-ease: cubic-bezier(0.16, 1, 0.3, 1);

  --bs-section-pad: clamp(72px, 9vw, 128px);
}

/*--------------------------------------------------------------
# NORMALIZE
--------------------------------------------------------------*/

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

html {
	line-height: 1.15;
	-webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
}
body {
	margin: 0;
	position:relative;
}

body:before {
    content:"";
		height:110px;
		left:0;
		width:100%;
		background:rgba(0,0,0,1);
		position:absolute;
		top:0px;
}
main {
	display: block;
}

hr {
	box-sizing: content-box;
	height: 0;
	overflow: visible;
}

pre {
	font-family: monospace, monospace;
	font-size: 1em;
}

a {
	background-color: transparent;
}

abbr[title] {
	border-bottom: none;
	text-decoration: underline;
	text-decoration: underline dotted;
}

b,
strong {
	font-weight: bolder;
}

code,
kbd,
samp {
	font-family: monospace, monospace;
	font-size: 1em;
}

small {
	font-size: 80%;
}

sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sub {
	bottom: -0.25em;
}

sup {
	top: -0.5em;
}

img {
	border-style: none;
}

button,
input,
optgroup,
select,
textarea {
	font-family: inherit;
	font-size: 100%;
	line-height: 1.15;
	margin: 0;
}

button,
input {
	overflow: visible;
}

button,
select {
	text-transform: none;
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
	-webkit-appearance: button;
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
	border-style: none;
	padding: 0;
}

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
	outline: 1px dotted ButtonText;
}

fieldset {
	padding: 0.35em 0.75em 0.625em;
}

legend {
	box-sizing: border-box;
	color: inherit;
	display: table;
	max-width: 100%;
	padding: 0;
	white-space: normal;
}

progress {
	vertical-align: baseline;
}

textarea {
	overflow: auto;
}

[type="checkbox"],
[type="radio"] {
	box-sizing: border-box;
	padding: 0;
}

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
	height: auto;
}

[type="search"] {
	-webkit-appearance: textfield;
	outline-offset: -2px;
}

[type="search"]::-webkit-search-decoration {
	-webkit-appearance: none;
}

::-webkit-file-upload-button {
	-webkit-appearance: button;
	font: inherit;
}

details {
	display: block;
}

summary {
	display: list-item;
}

template {
	display: none;
}

[hidden] {
	display: none;
}

/* Box sizing
--------------------------------------------- */
*,
*::before,
*::after {
	box-sizing: inherit;
}

html {
	box-sizing: border-box;
}

/*--------------------------------------------------------------
# BASE â€” Typography
--------------------------------------------------------------*/
body,
button,
input,
select,
optgroup,
textarea {
	color: var(--bs-black);
	font-family: var(--bs-font-body);
	font-size: 1rem;
	font-weight: 300;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	padding-top:110px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--bs-font-display);
	font-weight: 900;
	line-height: 1;
	letter-spacing: -0.02em;
	color: var(--bs-black);
	clear: both;
}

p {
	margin-bottom: 1.5em;
}

dfn,
cite,
em,
i {
	font-style: italic;
}

blockquote {
	margin: 0 1.5em;
}

address {
	margin: 0 0 1.5em;
}

pre {
	background: var(--bs-off-white);
	font-family: "Courier 10 Pitch", courier, monospace;
	line-height: 1.6;
	margin-bottom: 1.6em;
	max-width: 100%;
	overflow: auto;
	padding: 1.6em;
}

code,
kbd,
tt,
var {
	font-family: monaco, consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
}

abbr,
acronym {
	border-bottom: 1px dotted #666;
	cursor: help;
}

mark,
ins {
	background: #fff9c0;
	text-decoration: none;
}

big {
	font-size: 125%;
}

/*--------------------------------------------------------------
# BASE â€” Elements
--------------------------------------------------------------*/
body {
	background: var(--bs-white);
}

hr {
	background-color: var(--bs-warm-grey);
	border: 0;
	height: 1px;
	margin-bottom: 1.5em;
	opacity: 0.3;
}

ul,
ol {
	margin: 0 0 1.5em 1.5em;
}

ul {
	list-style: disc;
}

ol {
	list-style: decimal;
}

li > ul,
li > ol {
	margin-bottom: 0;
	margin-left: 1.5em;
}

dt {
	font-weight: 700;
}

dd {
	margin: 0 1.5em 1.5em;
}

embed,
iframe,
object {
	max-width: 100%;
}

img {
	height: auto;
	max-width: 100%;
}

figure {
	margin: 1em 0;
}

table {
	margin: 0 0 1.5em;
	width: 100%;
}

/*--------------------------------------------------------------
# BASE â€” Links
--------------------------------------------------------------*/
a {
	color: var(--bs-black);
	text-decoration: none;
	transition: color 0.2s;
}

a:hover,
a:focus,
a:active {
	color: var(--bs-white);
}

a:focus {
	outline: thin dotted;
}

a:hover,
a:active {
	outline: 0;
}

/*--------------------------------------------------------------
# BASE â€” Forms
--------------------------------------------------------------*/
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
	border: 1px solid var(--bs-warm-grey);
	border-radius: var(--bs-radius-sm);
	background: var(--bs-off-white);
	color: var(--bs-black);
	line-height: 1;
	padding: 0.6em 1em 0.4em;
	cursor: pointer;
	transition: background 0.2s, border-color 0.2s;
}

button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
	background: var(--bs-gold-light);
	border-color: var(--bs-gold);
}

button:active,
button:focus,
input[type="button"]:active,
input[type="button"]:focus,
input[type="reset"]:active,
input[type="reset"]:focus,
input[type="submit"]:active,
input[type="submit"]:focus {
	border-color: var(--bs-gold);
	outline: none;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea {
	color: var(--bs-dark-grey);
	border: 1px solid var(--bs-warm-grey);
	border-radius: var(--bs-radius-sm);
	padding: 10px 14px;
	font-family: var(--bs-font-body);
	font-size: 15px;
	background: var(--bs-white);
	width: 100%;
	transition: border-color 0.2s;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="range"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="color"]:focus,
textarea:focus {
	color: var(--bs-black);
	border-color: var(--bs-gold);
	outline: none;
}

select {
	border: 1px solid var(--bs-warm-grey);
}

textarea {
	width: 100%;
}

/*--------------------------------------------------------------
# COMPONENTS â€” Navigation
--------------------------------------------------------------*/
.main-navigation {
	display: block;
	width: 100%;
}

.main-navigation ul {
	display: none;
	list-style: none;
	margin: 0;
	padding-left: 0;
}

.main-navigation ul ul {
	box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
	float: left;
	position: absolute;
	top: 100%;
	left: -999em;
	z-index: 99999;
}

.main-navigation ul ul ul {
	left: -999em;
	top: 0;
}

.main-navigation ul ul li:hover > ul,
.main-navigation ul ul li.focus > ul {
	display: block;
	left: auto;
}

.main-navigation ul ul a {
	width: 200px;
}

.main-navigation ul li:hover > ul,
.main-navigation ul li.focus > ul {
	left: auto;
}

.main-navigation li {
	position: relative;
}

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

.menu-toggle,
.main-navigation.toggled ul {
	display: block;
}

@media screen and (min-width: 37.5em) {

	.menu-toggle {
		display: none;
	}

	.main-navigation ul {
		display: flex;
	}
}

.site-main .comment-navigation,
.site-main .posts-navigation,
.site-main .post-navigation {
	margin: 0 0 1.5em;
}

.comment-navigation .nav-links,
.posts-navigation .nav-links,
.post-navigation .nav-links {
	display: flex;
}

.comment-navigation .nav-previous,
.posts-navigation .nav-previous,
.post-navigation .nav-previous {
	flex: 1 0 50%;
}

.comment-navigation .nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {
	text-align: end;
	flex: 1 0 50%;
}

/*--------------------------------------------------------------
# COMPONENTS â€” Posts & Pages
--------------------------------------------------------------*/
.sticky {
	display: block;
}

.post,
.page {
	margin: 0;
}

.updated:not(.published) {
	display: none;
}

.page-content,
.entry-content,
.entry-summary {
	margin: 1.5em 0 0;
}

.page-links {
	clear: both;
	margin: 0 0 1.5em;
}

/*--------------------------------------------------------------
# COMPONENTS â€” Comments
--------------------------------------------------------------*/
.comment-content a {
	word-wrap: break-word;
}

.bypostauthor {
	display: block;
}

/*--------------------------------------------------------------
# COMPONENTS â€” Widgets
--------------------------------------------------------------*/
.widget {
	margin: 0 0 1.5em;
}

.widget select {
	max-width: 100%;
}

/*--------------------------------------------------------------
# COMPONENTS â€” Media
--------------------------------------------------------------*/
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
	border: none;
	margin-bottom: 0;
	margin-top: 0;
	padding: 0;
}

.custom-logo-link {
	display: inline-block;
}

.wp-caption {
	margin-bottom: 1.5em;
	max-width: 100%;
}

.wp-caption img[class*="wp-image-"] {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.wp-caption .wp-caption-text {
	margin: 0.8075em 0;
}

.wp-caption-text {
	text-align: center;
}

.gallery {
	margin-bottom: 1.5em;
	display: grid;
	grid-gap: 1.5em;
}

.gallery-item {
	display: inline-block;
	text-align: center;
	width: 100%;
}

.gallery-columns-2 { grid-template-columns: repeat(2, 1fr); }
.gallery-columns-3 { grid-template-columns: repeat(3, 1fr); }
.gallery-columns-4 { grid-template-columns: repeat(4, 1fr); }
.gallery-columns-5 { grid-template-columns: repeat(5, 1fr); }
.gallery-columns-6 { grid-template-columns: repeat(6, 1fr); }
.gallery-columns-7 { grid-template-columns: repeat(7, 1fr); }
.gallery-columns-8 { grid-template-columns: repeat(8, 1fr); }
.gallery-columns-9 { grid-template-columns: repeat(9, 1fr); }

.gallery-caption {
	display: block;
}

/*--------------------------------------------------------------
# PLUGINS â€” Jetpack infinite scroll
--------------------------------------------------------------*/
.infinite-scroll .posts-navigation,
.infinite-scroll.neverending .site-footer {
	display: none;
}

.infinity-end.neverending .site-footer {
	display: block;
}

/*--------------------------------------------------------------
# UTILITIES â€” Accessibility
--------------------------------------------------------------*/
.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute !important;
	width: 1px;
	word-wrap: normal !important;
}

.screen-reader-text:focus {
	background-color: #f1f1f1;
	border-radius: 3px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	clip-path: none;
	color: #21759b;
	display: block;
	font-size: 0.875rem;
	font-weight: 700;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000;
}

#primary[tabindex="-1"]:focus {
	outline: 0;
}

/*--------------------------------------------------------------
# UTILITIES â€” Alignments
--------------------------------------------------------------*/
.alignleft {
	/*rtl:ignore*/
	float: left;
	/*rtl:ignore*/
	margin-right: 1.5em;
	margin-bottom: 1.5em;
}

.alignright {
	/*rtl:ignore*/
	float: right;
	/*rtl:ignore*/
	margin-left: 1.5em;
	margin-bottom: 1.5em;
}

.aligncenter {
	clear: both;
	display: block;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 1.5em;
}

/*--------------------------------------------------------------
# BOW STREET â€” Container & Section Utilities
--------------------------------------------------------------*/
.container {
  width: 100%;
  max-width: var(--bs-max-w);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--bs-gutter);
  padding-right: var(--bs-gutter);
}

section {
  font-family: var(--bs-font-body);
}

.section-light { background: var(--bs-white);     color: var(--bs-black); }
.section-dark  { background: var(--bs-black);     color: var(--bs-white); }
.bg--white     { background: var(--bs-white); }
.bg--off-white { background: var(--bs-off-white); }
.bg--black     { background: var(--bs-black); }

.section-eyebrow {
  font-family: var(--bs-font-body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--bs-gold);
  margin-bottom: 16px;
}
.section-dark .section-eyebrow,
.bg--black .section-eyebrow {
  color: var(--bs-gold);
}
.section-light .section-eyebrow,
.bg--white .section-eyebrow,
.bg--off-white .section-eyebrow {
  color: var(--bs-mid-grey);
}

.section-link {
  font-family: var(--bs-font-body);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bs-warm-grey);
  border-bottom: 1px solid rgba(255,255,255,0.2);
  padding-bottom: 2px;
  white-space: nowrap;
  transition: color 0.2s, border-color 0.2s;
  text-decoration: none;
}
.section-light .section-link {
  color: var(--bs-mid-grey);
  border-bottom-color: rgba(0,0,0,0.2);
}
.section-link:hover {
  color: var(--bs-white);
  border-color: var(--bs-white);
}
.section-light .section-link:hover {
  color: var(--bs-black);
  border-color: var(--bs-black);
}

/*--------------------------------------------------------------
# BOW STREET â€” Buttons
--------------------------------------------------------------*/
.btn-primary {
  font-family: var(--bs-font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--bs-white);
  color: var(--bs-black);
  border-radius: 100px;
  padding: 14px 36px;
  display: inline-block;
  text-decoration: none;
  border: 1px solid var(--bs-white);
  transition: background 0.25s, color 0.25s, transform 0.2s;
  cursor: pointer;
}
.bg--white .btn-primary {
  background: #fff;
}
.btn-primary:hover, .bg--white .btn-primary:hover {
  background: var(--bs-gold);
  border-color: var(--bs-gold);
  color: var(--bs-black);
  transform: translateY(-1px);
}
.btn-ghost {
  font-family: var(--bs-font-body);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(245,243,239,0.85);
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 100px;
  padding: 14px 36px;
  display: inline-block;
  text-decoration: none;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.btn-ghost:hover {
  color: var(--bs-white);
  border-color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.08);
}
.btn-gold {
  font-family: var(--bs-font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--bs-gold);
  color: var(--bs-black);
  border-radius: 100px;
  padding: 16px 40px;
  display: inline-block;
  text-decoration: none;
  border: none;
  transition: background 0.2s, transform 0.2s;
  cursor: pointer;
}
.btn-gold:hover {
  background: var(--bs-gold-hover);
  transform: translateY(-1px);
}

/*--------------------------------------------------------------
# BOW STREET â€” WYSIWYG
--------------------------------------------------------------*/
.wysiwyg {
  font-family: var(--bs-font-body);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.75;
}
.wysiwyg p   { margin-bottom: 1.2em; }
.wysiwyg ul,
.wysiwyg ol  { margin: 0 0 1.2em 1.5em; }
.wysiwyg a   { color: var(--bs-gold); text-decoration: underline; }

/*--------------------------------------------------------------
# BOW STREET â€” Scroll Reveal
  Graceful degradation: content is ALWAYS visible by default.
  JS adds .will-animate only to elements below the fold,
  which then fade in on scroll. If JS fails, everything shows.
--------------------------------------------------------------*/
.reveal { /* visible by default â€” no hiding here */ }

.reveal.will-animate {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s var(--bs-ease), transform 0.75s var(--bs-ease);
}
.reveal.will-animate.visible {
  opacity: 1;
  transform: translateY(0);
}

/*--------------------------------------------------------------
# LAYOUT â€” Hero Video
--------------------------------------------------------------*/
.hero {
  position: relative;
  width: 100%;
  height: 100svh;
  min-height: 600px;
  overflow: hidden;
  background: var(--bs-black);
}
.hero-video-bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  opacity: 0.72;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10,10,10,0.35) 0%, rgba(10,10,10,0.2) 40%, rgba(10,10,10,0.65) 100%);
  z-index: 1;
}
.hero-inner {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  text-align: center;
  padding: 80px var(--bs-gutter) clamp(52px, 7vw, 88px);
}
.hero-eyebrow {
  font-family: var(--bs-font-body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--bs-gold);
  margin-bottom: 20px;
  opacity: 0;
  animation: bs-fadeUp 0.8s var(--bs-ease) 0.2s forwards;
}
.hero-subtitle {
	font-family: var(--bs-font-body);
	font-size: clamp(17px, 2.2vw, 22px);
	font-weight: 300;
	color: rgba(245,243,239,0.92);
	max-width: 600px;
	line-height: 1.55;
	margin: 0;
	opacity: 0;
	animation: bs-fadeUp 0.9s var(--bs-ease) 0.35s forwards;
	text-wrap: balance;
}
.hero-ctas {
  margin-top: 36px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  opacity: 0;
  animation: bs-fadeUp 0.9s var(--bs-ease) 0.5s forwards;
}

/* =============================================================================
   LAYOUT â€” Hero Image  (replaces previous hero-image block)
   Version: 1.5.0 | CRD Media
   ============================================================================= */

.hero-image-section {
	position: relative;
	width: 100%;
	background-size: cover;
	background-position: center;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	text-align: center;
	overflow: hidden;
}
.hero-image-section.hero-image--full   { height: 100svh; min-height: 600px; }
.hero-image-section.hero-image--medium { height: 72vh;   min-height: 480px; }
.hero-image-section.hero-image--dark   { color: var(--bs-white); }
.hero-image-section.hero-image--light  { color: var(--bs-black); }

/* Overlay */
.hero-image-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		to bottom,
		rgba(10, 10, 10, 0.15) 0%,
		rgba(10, 10, 10, 0.25) 40%,
		rgba(10, 10, 10, 0.72) 100%
	);
	z-index: 0;
}
.hero-image-section.hero-image--light .hero-image-overlay {
	background: linear-gradient(
		to bottom,
		rgba(255, 255, 255, 0.05) 0%,
		rgba(245, 243, 239, 0.65) 100%
	);
}
/* No image â€” plain dark background */
.hero-image-section:not([style]) {
	background-color: var(--bs-black);
}
.hero-image-section:not([style]) .hero-image-overlay {
	background: none;
}

/* Inner */
.hero-image-inner {
	position: relative;
	z-index: 1;
	padding-bottom: clamp(52px, 7vw, 88px);
	padding-top: 100px;
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
}

/* Eyebrow */
.hero-eyebrow {
	font-family: var(--bs-font-body);
	font-size: 11px;
	font-weight: 400;
	letter-spacing: 0.3em;
	text-transform: uppercase;
	color: var(--bs-gold);
	margin-bottom: 24px;
	opacity: 0;
	animation: bs-fadeUp 0.8s var(--bs-ease) 0.1s forwards;
}

/* Title â€” large, centred, second line italic gold */
.hero-image-title {
	font-family: var(--bs-font-display);
	font-size: clamp(52px, 9vw, 130px);
	font-weight: 900;
	line-height: 0.92;
	letter-spacing: -0.03em;
	margin: 0 0 28px;
	color: inherit;
	text-wrap: balance;
	opacity: 0;
	animation: bs-fadeUp 0.9s var(--bs-ease) 0.2s forwards;
}
.hero-image-title em {
	display: block;
	font-style: italic;
	color: var(--bs-gold);
}
.hero-image-section.hero-image--light .hero-image-title em {
	color: var(--bs-mid-grey);
}

/* Subtitle */
.hero-image-subtitle {
	font-family: var(--bs-font-body);
	font-size: clamp(15px, 1.8vw, 19px);
	font-weight: 300;
	line-height: 1.65;
	max-width: 560px;
	margin: 0 0 36px;
	color: rgba(245, 243, 239, 0.85);
	text-wrap: balance;
	opacity: 0;
	animation: bs-fadeUp 0.9s var(--bs-ease) 0.35s forwards;
}
.hero-image-section.hero-image--light .hero-image-subtitle {
	color: rgba(10, 10, 10, 0.7);
}

/* CTA */
.hero-ctas {
	margin-top: 8px;
	display: flex;
	gap: 14px;
	flex-wrap: wrap;
	justify-content: center;
	opacity: 0;
	animation: bs-fadeUp 0.9s var(--bs-ease) 0.45s forwards;
}

/* Scroll cue */
.hero-scroll-cue {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	margin-top: 40px;
	opacity: 0;
	animation: bs-fadeUp 0.9s var(--bs-ease) 0.6s forwards;
}
.hero-scroll-cue span {
	font-size: 10px;
	letter-spacing: 0.25em;
	text-transform: uppercase;
	color: var(--bs-mid-grey);
}
.scroll-arrow {
	width: 1px;
	height: 52px;
	background: linear-gradient(to bottom, var(--bs-mid-grey), transparent);
	animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
	0%, 100% { opacity: 0.4; transform: scaleY(1); }
	50%       { opacity: 1;   transform: scaleY(1.15); }
}

/* Responsive */
@media (max-width: 768px) {
	.hero-image-section.hero-image--full   { height: 90svh; }
	.hero-image-section.hero-image--medium { height: 65vh; }
}
/*--------------------------------------------------------------
# LAYOUT â€” Intro Text
--------------------------------------------------------------*/
.intro-text-section {
  padding: var(--bs-section-pad) 0;
}
.intro-text-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
}
.intro-text-title {
  font-family: var(--bs-font-display);
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: -0.03em;
  margin: 0;
  color: inherit;
}
.intro-text-body {
  font-family: var(--bs-font-body);
  font-size: clamp(15px, 1.5vw, 17px);
  font-weight: 300;
  line-height: 1.7;
  color: inherit;
  opacity: 0.8;
}
.intro-text-centered {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.intro-text-centered .intro-text-body {
  max-width: 560px;
  margin: 0 auto;
}

/*--------------------------------------------------------------
# LAYOUT â€” Cards Grid
--------------------------------------------------------------*/
.cards-grid-section {
  padding: var(--bs-section-pad) 0;
}
.cards-grid-header {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	margin-bottom: 0px;
	gap: 40px;
	flex-wrap: wrap;
	position: relative;
}
.cards-grid-header-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	margin-bottom: 80px;
}
.cards-grid-header .section-link {
	position: absolute;
	bottom: 30px;
}
.cards-grid-header-content h2 {
   margin:0;
}
.cards-grid-title {
  font-family: var(--bs-font-display);
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: -0.03em;
  margin: 0 0 8px 0;
  color: inherit;
}
.cards-grid-intro {
  font-family: var(--bs-font-body);
  font-size: clamp(15px, 1.5vw, 17px);
  font-weight: 300;
  line-height: 1.7;
  opacity: 0.75;
  margin: 0;
}
.cards-grid {
	display: grid;
	gap: 10px;
}
.section-dark .cards-grid { background: rgba(255,255,255,0.06); }
.cards-grid--2-col { grid-template-columns: repeat(2, 1fr); }
.cards-grid--3-col { grid-template-columns: repeat(3, 1fr); }
.cards-grid--4-col { grid-template-columns: repeat(4, 1fr); }
.cards-grid-card {
	background: var(--bs-white);
	padding: 44px 36px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	min-height: 260px;
	text-decoration: none;
	color: var(--bs-black);
	transition: background 0.2s, border-color 0.25s, transform 0.25s var(--bs-ease);
	cursor: default;
	border-radius: 20px;
}
.section-dark .cards-grid-card {
  background: var(--bs-dark-grey);
  color: var(--bs-white);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--bs-radius-md);
}
.cards-grid-card:hover { background: var(--bs-white); }
.section-dark .cards-grid-card:hover {
  background: #1e1c1a;
  border-color: rgba(255,255,255,0.18);
  transform: translateY(-4px);
}
.cards-grid-card--featured {
  background: var(--bs-gold) !important;
  color: var(--bs-black) !important;
  border-color: transparent !important;
}
.cards-grid-card--featured:hover {
  background: var(--bs-gold-hover) !important;
  transform: translateY(-4px);
}
.cards-grid-card .card-number {
  font-family: var(--bs-font-display);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.2em;
  color: var(--bs-mid-grey);
  margin: 0 0 20px 0;
}
.cards-grid-card--featured .card-number { color: rgba(0,0,0,0.5); }
.cards-grid-card .card-title {
  font-family: var(--bs-font-display);
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 14px 0;
  color: inherit;
}
.cards-grid-card .card-body {
  font-family: var(--bs-font-body);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.7;
  color: inherit;
  opacity: 0.8;
  flex: 1;
  margin: 0;
}
.cards-grid-card--featured .card-body { opacity: 0.7; }
.cards-grid-card .card-arrow {
  margin-top: 28px;
  font-size: 20px;
  color: var(--bs-warm-grey);
  display: block;
}
.cards-grid-card--featured .card-arrow { color: rgba(0,0,0,0.45); }
.section-dark .cards-grid .cards-grid-card:first-child {
	background: var(--bs-gold);
	border-color: transparent;
	color: var(--bs-black);
}
.section-dark .cards-grid .cards-grid-card:first-child .card-number {
  color: var(--bs-black);
}
.section-dark .cards-grid .cards-grid-card:first-child .card-arrow {
  color: var(--bs-black);
}
.cards-grid-card--has-hover::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: var(--card-hover-bg);
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.4s ease;
			border-radius: 20px;
}
.cards-grid-card--has-hover:hover::before {
	opacity: 0.7;
	filter: grayscale(70%);
}
.cards-grid-card--has-hover::before {
	opacity: 0;
	filter: grayscale(70%);
}
.cards-grid-card.cards-grid-card--has-hover:hover::after {
	pos: ;
	position: absolute;
	width: 100%;
	height: 100%;
	content: "";
	background: #000;
	top: 0;
	opacity: 0.7;
	left: 0;
	z-index: 0;
		border-radius: 20px;
}
.cards-grid-card.cards-grid-card--has-hover:hover {
	background: var(--bs-white);
	color: #fff;
}
/* Make sure the card has position:relative and the text sits above the pseudo-element */
.cards-grid-card--has-hover {
    position: relative;
    overflow: hidden;
}
.cards-grid-card--has-hover > * {
    position: relative;
    z-index: 1;
}

/*--------------------------------------------------------------
# LAYOUT â€” Testimonials
--------------------------------------------------------------*/
.testimonials-section {
  padding: var(--bs-section-pad) 0;
  overflow: hidden;
}
.testimonials-eyebrow {
  font-family: var(--bs-font-body);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--bs-mid-grey);
  text-align: center;
  margin-bottom: 48px;
}
.testimonials-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: 20px;
  scroll-snap-type: x mandatory;
}
.testimonials-track::-webkit-scrollbar { display: none; }
.testimonial-card {
  flex: 0 0 clamp(300px, 38vw, 500px);
  scroll-snap-align: start;
  background: var(--bs-white);
  border-radius: var(--bs-radius-lg);
  padding: 44px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.bg--black .testimonial-card { background: var(--bs-dark-grey); }
.testimonial-quote {
  font-family: var(--bs-font-display);
  font-size: clamp(17px, 2vw, 22px);
  font-style: italic;
  font-weight: 400;
  line-height: 1.45;
  color: var(--bs-black);
  margin: 0;
}
.testimonial-quote::before { content: '\201C'; }
.testimonial-quote::after  { content: '\201D'; }
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: auto;
}
.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.testimonial-avatar--placeholder { background: var(--bs-warm-grey); }
.testimonial-name {
  font-family: var(--bs-font-body);
  font-size: 14px;
  font-weight: 500;
  margin: 0;
}
.testimonial-role {
  font-family: var(--bs-font-body);
  font-size: 12px;
  color: var(--bs-mid-grey);
  margin: 2px 0 0 0;
}
.testimonials-nav {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 32px;
}
.testimonials-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--bs-warm-grey);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  border: none;
  padding: 0;
}
.testimonials-dot.active {
  background: var(--bs-black);
  transform: scale(1.3);
}
.bg--black .testimonials-dot.active { background: var(--bs-white); }

/*--------------------------------------------------------------
# LAYOUT â€” Alumni Grid
--------------------------------------------------------------*/
.crd-note {
	background: #000;
	color: #fff;
	padding: 5px;
	text-align: center;
	font-size: 12px;
	margin: 40px auto 0 auto;
	display: block;
	width: 90%;
	max-width: 230px;
	border-radius: 10px;
}
.alumni-grid-section {
  padding: var(--bs-section-pad) 0;
}
.alumni-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 36px;
  flex-wrap: wrap;
  gap: 16px;
}
.alumni-title {
  font-family: var(--bs-font-display);
  font-size: clamp(32px, 5vw, 60px);
  font-weight: 900;
  letter-spacing: -0.02em;
  margin: 0;
  color: inherit;
}
.alumni-grid {
  display: grid;
  gap: 10px;
}
.alumni-grid--4-col { grid-template-columns: repeat(4, 1fr); }
.alumni-grid--5-col { grid-template-columns: repeat(5, 1fr); }
.alumni-card {
  aspect-ratio: 3/4;
  border-radius: var(--bs-radius-md);
  background: var(--bs-dark-grey);
  background-size: cover !important;
  background-position: center !important;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.alumni-card-img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.alumni-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
}
.alumni-card:hover::after { opacity: 1; }
.alumni-card-info {
  position: absolute;
  bottom: 16px; left: 16px; right: 16px;
  z-index: 1;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s, transform 0.3s var(--bs-ease);
}
.alumni-card:hover .alumni-card-info {
  opacity: 1;
  transform: translateY(0);
}
.alumni-card-name {
  font-family: var(--bs-font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--bs-white);
  margin: 0;
}
.alumni-card-credit {
  font-family: var(--bs-font-body);
  font-size: 12px;
  color: var(--bs-warm-grey);
  margin: 3px 0 0 0;
}

/*--------------------------------------------------------------
# LAYOUT â€” Spotlight Grid
--------------------------------------------------------------*/
.spotlight-section {
  padding: var(--bs-section-pad) 0;
}
.spotlight-title {
  font-family: var(--bs-font-display);
  font-size: clamp(32px, 5vw, 60px);
  font-weight: 900;
  letter-spacing: -0.02em;
  margin: 0 0 48px 0;
  color: inherit;
}
.spotlight-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.spotlight-card {
  border-radius: var(--bs-radius-md);
  overflow: hidden;
  background: var(--bs-dark-grey);
}
.spotlight-card--featured { grid-column: span 2; }
.spotlight-card-image {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.spotlight-card-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s var(--bs-ease);
}
.spotlight-card:hover .spotlight-card-image img { transform: scale(1.04); }
.spotlight-card-info { padding: 24px; }
.spotlight-card-name {
  font-family: var(--bs-font-display);
  font-size: 20px;
  font-weight: 700;
  color: inherit;
  margin: 0 0 6px 0;
}
.spotlight-card-role,
.spotlight-card-credits {
  font-family: var(--bs-font-body);
  font-size: 13px;
  font-weight: 300;
  color: var(--bs-warm-grey);
  margin: 0;
}

/* =============================================================================
   LAYOUT â€” CTA Banner
   Appearance driven entirely by section background class (bg--black / bg--white
   / bg--off-white). No separate style field needed.
   Version: 1.6.0 | CRD Media
   ============================================================================= */

.cta-banner-section {
	padding: var(--bs-section-pad) 0;
	position: relative;
	overflow: hidden;
}

/* Gold radial glow on dark backgrounds */
.bg--black.cta-banner-section::before {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse at 50% 120%, rgba(201, 169, 110, 0.1) 0%, transparent 65%);
	pointer-events: none;
}

.cta-banner-inner {
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	position: relative;
	z-index: 1;
}

/*  Eyebrow  */
.cta-banner-eyebrow {
	font-family: var(--bs-font-body);
	font-size: 11px;
	letter-spacing: 0.3em;
	text-transform: uppercase;
	margin: 0 0 20px;
	/* dark bg */
	color: var(--bs-gold);
}
.bg--white .cta-banner-eyebrow,
.bg--off-white .cta-banner-eyebrow {
	color: var(--bs-mid-grey);
}

/*  Title  */
.cta-banner-title {
	font-family: var(--bs-font-display);
	font-size: clamp(40px, 7vw, 72px);
	font-weight: 900;
	line-height: 0.95;
	letter-spacing: -0.03em;
	margin: 0 0 24px;
	text-wrap: balance;
	/* dark bg */
	color: var(--bs-white);
}
.bg--white .cta-banner-title,
.bg--off-white .cta-banner-title {
	color: var(--bs-black);
}

/* Second line â€” italic, coloured */
.cta-banner-title em {
	display: block;
	font-style: italic;
	/* dark bg */
	color: var(--bs-gold);
}
.bg--white .cta-banner-title em,
.bg--off-white .cta-banner-title em {
	color: var(--bs-mid-grey);
}

/*  Body  */
.cta-banner-body {
	font-family: var(--bs-font-body);
	font-size: clamp(15px, 1.6vw, 18px);
	font-weight: 300;
	line-height: 1.65;
	max-width: 560px;
	margin: 0 0 36px;
	text-wrap: balance;
	/* dark bg */
	color: var(--bs-warm-grey);
}
.bg--white .cta-banner-body,
.bg--off-white .cta-banner-body {
	color: rgba(0, 0, 0, 0.55);
}

/*  CTA  */
.cta-banner-cta {
	margin-top: 4px;
}
/*--------------------------------------------------------------
# LAYOUT â€” Location
--------------------------------------------------------------*/
.location-section {
  padding: var(--bs-section-pad) 0;
}
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.location-eyebrow {
  font-family: var(--bs-font-body);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--bs-mid-grey);
  margin: 0 0 16px 0;
}
.location-title {
  font-family: var(--bs-font-display);
  font-size: clamp(32px, 5vw, 60px);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin: 0 0 24px 0;
  color: inherit;
}
.location-body {
  font-family: var(--bs-font-body);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.75;
  color: #555;
  margin-bottom: 24px;
}
.location-detail {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}
.location-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: var(--bs-font-body);
  font-size: 14px;
  color: #444;
}
.location-detail-item strong {
  font-weight: 500;
  color: var(--bs-black);
  flex-shrink: 0;
}
.location-map-placeholder {
  aspect-ratio: 1 / 1.05;
  background: var(--bs-off-white);
  border-radius: var(--bs-radius-lg);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0,0,0,0.06);
}
.location-map-placeholder iframe { width: 100%; height: 100%; border: 0; display: block; }
.map-label {
  font-family: var(--bs-font-body);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bs-mid-grey);
}

/*--------------------------------------------------------------
# LAYOUT â€” Photo Mosaic
--------------------------------------------------------------*/
.photo-mosaic-section {
  padding: var(--bs-section-pad) 0;
}
.photo-mosaic-header { margin-bottom: 48px; }
.photo-mosaic-title {
  font-family: var(--bs-font-display);
  font-size: clamp(32px, 5vw, 60px);
  font-weight: 900;
  letter-spacing: -0.02em;
  margin: 0;
  color: inherit;
}
.photo-mosaic-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.photo-mosaic-item {
  aspect-ratio: 4/3;
  border-radius: var(--bs-radius-md);
  overflow: hidden;
}
.photo-mosaic-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s var(--bs-ease);
}
.photo-mosaic-item:hover img { transform: scale(1.04); }

/*--------------------------------------------------------------
# LAYOUT â€” Video Grid
--------------------------------------------------------------*/
.video-grid-section {
  padding: var(--bs-section-pad) 0;
}
.video-grid-header { margin-bottom: 48px; }
.video-grid-title {
  font-family: var(--bs-font-display);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 900;
  letter-spacing: -0.02em;
  margin: 0;
  color: inherit;
}
.video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.video-embed-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: var(--bs-radius-md);
  background: #000;
}
.video-embed-wrapper iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: 0;
}
.video-caption {
  font-family: var(--bs-font-body);
  font-size: 13px;
  color: var(--bs-warm-grey);
  margin: 12px 0 0 0;
}

/*--------------------------------------------------------------
# LAYOUT â€” Pull Quotes
--------------------------------------------------------------*/
.pull-quotes-section {
  padding: var(--bs-section-pad) 0;
}
.pull-quotes-inner {
  display: flex;
  flex-direction: column;
  gap: 48px;
  max-width: 800px;
  margin: 0 auto;
}
.pull-quote {
  margin: 0;
  padding: 0;
  border: none;
  text-align: center;
}
.pull-quote-text {
  font-family: var(--bs-font-display);
  font-style: italic;
  font-weight: 400;
  line-height: 1.4;
  color: inherit;
  margin: 0 0 16px 0;
}
.pull-quote--large .pull-quote-text    { font-size: clamp(24px, 3.5vw, 42px); }
.pull-quote--standard .pull-quote-text { font-size: clamp(18px, 2.5vw, 28px); }
.pull-quote-cite {
  font-family: var(--bs-font-body);
  font-size: 12px;
  font-style: normal;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--bs-mid-grey);
}

/*--------------------------------------------------------------
# LAYOUT â€” Full Photo
--------------------------------------------------------------*/
.full-photo-section {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.full-photo-section.full-photo--full { height: 100svh; min-height: 500px; }
.full-photo-section.full-photo--half { height: 55vh;   min-height: 300px; }
.full-photo-section.full-photo--auto { height: auto; }
.full-photo-img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.full-photo--auto .full-photo-img { height: auto; max-height: 80vh; }
.full-photo-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.4);
  padding: var(--bs-gutter);
}
.full-photo-overlay-text {
  font-family: var(--bs-font-display);
  font-size: clamp(24px, 4vw, 52px);
  font-weight: 900;
  font-style: italic;
  color: var(--bs-white);
  text-align: center;
  max-width: 700px;
  margin: 0;
}

/*--------------------------------------------------------------
# LAYOUT â€” Bio Text
--------------------------------------------------------------*/
.bio-text-section {
  padding: var(--bs-section-pad) 0;
}
.bio-text-inner { display: block; }
.bio-text--with-image {
  display: grid;
  gap: 72px;
  align-items: center;
}
.bio-text--img-left,
.bio-text--img-right { grid-template-columns: 1fr 1fr; }
.bio-text-image img {
  width: 100%;
  border-radius: var(--bs-radius-lg);
  display: block;
}
.bio-text-title {
  font-family: var(--bs-font-display);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.02em;
  margin: 0 0 20px 0;
  color: inherit;
}
.bio-text-body {
  font-family: var(--bs-font-body);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.75;
  color: inherit;
  opacity: 0.85;
}
.bio-text--no-image .bio-text-content { max-width: 760px; }

/* =============================================================================
   TIMELINE â€” Central spine layout
   Version: 1.4.0 | CRD Media
   ============================================================================= */

/*  Intro heading  */
.timeline-intro-section {
	padding: clamp(72px, 9vw, 120px) var(--bs-gutter) clamp(40px, 5vw, 64px);
	text-align: center;
}
.timeline-section-title {
	font-family: var(--bs-font-display);
	font-size: clamp(36px, 6vw, 72px);
	font-weight: 900;
	letter-spacing: -0.03em;
	line-height: 1.05;
	color: var(--bs-white);
	margin-top: 12px;
}

/*  Chapter section wrapper  */
.tl-chapter {
	position: relative;
	padding: 0 var(--bs-gutter) clamp(60px, 8vw, 100px);
	overflow: hidden;
}

/*  Spine + progress line  */
.tl-spine,
.tl-progress {
	position: absolute;
	top: 0; bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	pointer-events: none;
}
.tl-spine {
	width: 1px;
	background: linear-gradient(
		to bottom,
		transparent 0%,
		rgba(255, 255, 255, 0.1) 4%,
		rgba(255, 255, 255, 0.1) 96%,
		transparent 100%
	);
}
.bg--off-white .tl-spine {
	background: linear-gradient(
		to bottom,
		transparent 0%,
		rgba(0, 0, 0, 0.1) 4%,
		rgba(0, 0, 0, 0.1) 96%,
		transparent 100%
	);
}
.tl-progress {
	width: 2px;
	height: 0%;
	background: linear-gradient(to bottom, var(--bs-gold), rgba(201, 169, 110, 0.3));
	transition: height 0.12s linear;
	z-index: 1;
}

/*  Era divider  */
.tl-era-divider {
	text-align: center;
	padding: clamp(64px, 8vw, 100px) 0 clamp(48px, 6vw, 72px);
	position: relative;
	z-index: 2;
}
.tl-era-num {
	font-size: 10px;
	letter-spacing: 0.3em;
	text-transform: uppercase;
	color: var(--bs-gold);
	margin-bottom: 10px;
}
.bg--off-white .tl-era-num { color: var(--bs-mid-grey); }

.tl-era-name {
	font-family: var(--bs-font-display);
	font-size: clamp(40px, 7vw, 88px);
	font-weight: 900;
	letter-spacing: -0.03em;
	line-height: 1;
	color: var(--bs-white);
}
.bg--off-white .tl-era-name { color: var(--bs-black); }
.tl-era-name em {
	font-style: italic;
	color: rgba(255, 255, 255, 0.22);
}
.bg--off-white .tl-era-name em { color: rgba(0, 0, 0, 0.2); }

/*  Event row  */
.tl-event {
	display: grid;
	grid-template-columns: 1fr 60px 1fr;
	gap: 0;
	margin-bottom: clamp(64px, 9vw, 110px);
	position: relative;
	z-index: 2;
	align-items: start;
}

/*  Spine node  */
.tl-event-node {
	grid-column: 2;
	display: flex;
	justify-content: center;
	padding-top: 6px;
}
.tl-node-dot {
	width: 14px;
	height: 14px;
	border-radius: 50%;
	background: var(--bs-black);
	border: 2px solid rgba(255, 255, 255, 0.2);
	flex-shrink: 0;
	transition: background 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
	position: relative;
	z-index: 2;
}
.bg--off-white .tl-node-dot {
	background: var(--bs-white);
	border-color: rgba(0, 0, 0, 0.15);
}
.tl-event.in-view .tl-node-dot {
	background: var(--bs-gold);
	border-color: var(--bs-gold);
	box-shadow: 0 0 16px rgba(201, 169, 110, 0.5);
}

/*  Content: left event (text left, image right)  */
.tl-event--left .tl-event-content  { grid-column: 1; grid-row: 1; padding-right: 48px; text-align: right; }
.tl-event--left .tl-event-node     { grid-column: 2; grid-row: 1; }
.tl-event--left .tl-event-media    { grid-column: 3; grid-row: 1; padding-left: 48px; }

/*  Content: right event (image left, text right)  */
.tl-event--right .tl-event-content { grid-column: 3; grid-row: 1; padding-left: 48px; text-align: left; }
.tl-event--right .tl-event-node    { grid-column: 2; grid-row: 1; }
.tl-event--right .tl-event-media   { grid-column: 1; grid-row: 1; padding-right: 48px; }

/*  Event text  */
.tl-event-year {
	font-family: var(--bs-font-display);
	font-size: 14px;
	font-weight: 700;
	color: var(--bs-gold);
	letter-spacing: 0.06em;
	margin-bottom: 12px;
}
.tl-event-title {
	font-family: var(--bs-font-display);
	font-size: clamp(22px, 2.8vw, 36px);
	font-weight: 900;
	line-height: 1.08;
	letter-spacing: -0.02em;
	color: var(--bs-white);
	margin-bottom: 16px;
	text-wrap: balance;
}
.bg--off-white .tl-event-title { color: var(--bs-black); }

.tl-event-body {
	font-size: clamp(13px, 1.2vw, 15px);
	font-weight: 300;
	line-height: 1.74;
	color: var(--bs-warm-grey);
	max-width: 400px;
}
/* align body text to the correct edge */
.tl-event--left  .tl-event-body { margin-left: auto; }
.tl-event--right .tl-event-body { margin-right: auto; }

.bg--off-white .tl-event-body { color: #555; }

/*  Event photo  */
.tl-event-photo {
	border-radius: 16px;
	overflow: hidden;
	background: var(--bs-dark-grey);
	aspect-ratio: 4 / 3;
	width: 100%;
	max-width: 400px;
}
.bg--off-white .tl-event-photo {
	background: var(--bs-off-white);
	border: 1px solid rgba(0, 0, 0, 0.06);
}
.tl-event-photo-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
/* align photo to correct edge */
.tl-event--left  .tl-event-media { display: flex; justify-content: flex-start; align-items: flex-start; flex-direction: column; }
.tl-event--right .tl-event-media { display: flex; justify-content: flex-end;   align-items: flex-start; flex-direction: column; }

.tl-event-caption {
	display: block;
	text-align: center;
	width: 100%;
	max-width: 400px;
	margin-top: 20px;
	text-transform: uppercase;
	font-size: 13px;
	color: var(--bs-gold);
	text-wrap:balance;
}
/*  Scroll-in animation (works with existing reveal system)  */
.tl-event {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity 0.7s var(--bs-ease), transform 0.7s var(--bs-ease);
}
.tl-event.in-view,
.tl-event.visible {
	opacity: 1;
	transform: translateY(0);
}
.tl-era-divider {
	opacity: 0;
	transform: translateY(16px);
	transition: opacity 0.6s var(--bs-ease), transform 0.6s var(--bs-ease);
}
.tl-era-divider.in-view,
.tl-era-divider.visible {
	opacity: 1;
	transform: translateY(0);
}

/*  Responsive  */
@media (max-width: 860px) {
	/* Collapse to left-aligned single column spine */
	.tl-event,
	.tl-event--left,
	.tl-event--right {
		grid-template-columns: 36px 1fr;
		grid-template-rows: auto;
	}

	/* Always: node col 1, content col 2, hide media col */
	.tl-event--left  .tl-event-node,
	.tl-event--right .tl-event-node  { grid-column: 1; grid-row: 1; }

	.tl-event--left  .tl-event-content,
	.tl-event--right .tl-event-content {
		grid-column: 2;
		grid-row: 1;
		padding: 0 0 0 20px;
		text-align: left;
	}

	/* Show image below content on mobile, full width */
	.tl-event--left  .tl-event-media,
	.tl-event--right .tl-event-media {
		grid-column: 2;
		grid-row: 2;
		padding: 20px 0 0 20px;
		justify-content: flex-start;
	}

	.tl-event-body { max-width: 100%; }
	.tl-event--left .tl-event-body { margin-left: 0; }

	.tl-spine,
	.tl-progress {
		left: calc(var(--bs-gutter) + 17px);
		transform: none;
	}
}

/*  Event quote  */
.tl-event-quote {
	margin: 24px 0 0;
	padding: 0;
	max-width: 380px;
}
.tl-event-quote--left {
	border-right: 2px solid var(--bs-gold);
	padding-right: 20px;
	margin-left: auto;
}
.tl-event-quote--right {
	border-left: 2px solid var(--bs-gold);
	padding-left: 20px;
}
.tl-event-quote-text {
	font-family: var(--bs-font-display);
	font-size: clamp(15px, 1.5vw, 18px);
	font-style: italic;
	font-weight: 400;
	line-height: 1.55;
	color: var(--bs-white);
	margin: 0 0 8px;
}
.bg--off-white .tl-event-quote-text { color: var(--bs-black); }

.tl-event-quote-attr {
	font-size: 12px;
	font-style: normal;
	color: var(--bs-mid-grey);
	letter-spacing: 0.05em;
}

@media (max-width: 860px) {
	.tl-event-quote--left {
		border-right: none;
		border-left: 2px solid var(--bs-gold);
		padding-right: 0;
		padding-left: 20px;
		margin-left: 0;
	}
}
/*--------------------------------------------------------------
# LAYOUT â€” Curriculum
--------------------------------------------------------------*/
.curriculum-section {
  padding: var(--bs-section-pad) 0;
}
.curriculum-header { margin-bottom: 48px; }
.curriculum-title {
  font-family: var(--bs-font-display);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 900;
  letter-spacing: -0.02em;
  margin: 0;
  color: inherit;
}
.curriculum-modules {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.curriculum-module {
  padding: 36px 0;
  border-bottom: 1px solid rgba(0,0,0,0.1);
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 40px;
  align-items: start;
}
.section-dark .curriculum-module { border-bottom-color: rgba(255,255,255,0.08); }
.curriculum-module-header {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.curriculum-module-number {
  font-family: var(--bs-font-body);
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--bs-gold);
}
.curriculum-module-title {
  font-family: var(--bs-font-display);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 700;
  color: inherit;
  margin: 0;
}
.curriculum-module-desc {
  font-family: var(--bs-font-body);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.7;
  color: inherit;
  opacity: 0.75;
  margin: 0 0 16px 0;
}
.curriculum-module-items {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.curriculum-module-items li {
  font-family: var(--bs-font-body);
  font-size: 14px;
  font-weight: 300;
  color: inherit;
  opacity: 0.8;
  padding-left: 16px;
  position: relative;
}
.curriculum-module-items li::before {
  content: 'â€”';
  position: absolute;
  left: 0;
  color: var(--bs-gold);
}

/*--------------------------------------------------------------
# LAYOUT â€” Details Table
--------------------------------------------------------------*/
.details-table-section {
  padding: var(--bs-section-pad) 0;
}
.details-table-inner { max-width: 680px; }
.details-table-title {
  font-family: var(--bs-font-display);
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 900;
  letter-spacing: -0.02em;
  margin: 0 0 36px 0;
  color: inherit;
}
.details-table { width: 100%; }
.details-table-row {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  align-items: baseline;
}
.section-dark .details-table-row { border-bottom-color: rgba(255,255,255,0.08); }
.details-table-label {
  font-family: var(--bs-font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bs-mid-grey);
}
.details-table-value {
  font-family: var(--bs-font-body);
  font-size: 15px;
  font-weight: 300;
  color: inherit;
}
.details-table-section .btn-primary { margin-top: 32px; }

/*--------------------------------------------------------------
# LAYOUT â€” FAQ
--------------------------------------------------------------*/
.faq-section {
  padding: var(--bs-section-pad) 0;
}
.faq-header { margin-bottom: 48px; }
.faq-title {
  font-family: var(--bs-font-display);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 900;
  letter-spacing: -0.02em;
  margin: 0;
  color: inherit;
} 
.faq-list { max-width: 760px; }
.faq-item { border-bottom: 1px solid rgba(0,0,0,0.1); } 
.section-dark .faq-item { border-bottom-color: rgba(255,255,255,0.08); }
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 22px 0;
  background: none;
  border: none;
  font-family: var(--bs-font-body);
  font-size: clamp(15px, 1.6vw, 18px);
  font-weight: 400;
  color: inherit;
  text-align: left;
  cursor: pointer;
  line-height: 1.4;
}
.faq-icon {
  font-size: 20px;
  color: var(--bs-gold);
  flex-shrink: 0;
  transition: transform 0.25s;
}
.faq-question[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }
.faq-answer { padding-bottom: 20px; }
.faq-answer-inner {
  font-family: var(--bs-font-body);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.75;
  color: inherit;
  opacity: 0.8;
}

/*--------------------------------------------------------------
# LAYOUT â€” Press Featured
--------------------------------------------------------------*/
.press-featured-section {
  padding: var(--bs-section-pad) 0;
}
.press-featured-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  background: var(--bs-off-white);
  border-radius: var(--bs-radius-xl);
  overflow: hidden;
}
.section-dark .press-featured-card { background: var(--bs-dark-grey); }
.press-featured-image { overflow: hidden; height: 100%; min-height: 400px; }
.press-featured-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.press-featured-content { padding: 48px 48px 48px 0; }
.press-featured-card .press-featured-image + .press-featured-content { padding-left: 0; }
.press-featured-meta {
  font-family: var(--bs-font-body);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bs-mid-grey);
  margin: 0 0 16px 0;
}
.press-publication { font-weight: 500; }
.press-featured-headline {
  font-family: var(--bs-font-display);
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 700;
  line-height: 1.15;
  color: inherit;
  margin: 0 0 16px 0;
}
.press-featured-excerpt {
  font-family: var(--bs-font-body);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.7;
  color: inherit;
  opacity: 0.75;
  margin: 0 0 24px 0;
}

/*--------------------------------------------------------------
# LAYOUT â€” Press Mentions
--------------------------------------------------------------*/
.press-mentions-section {
  padding: var(--bs-section-pad) 0;
}
.press-mentions-header { margin-bottom: 48px; }
.press-mentions-title {
  font-family: var(--bs-font-display);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 900;
  letter-spacing: -0.02em;
  margin: 0;
  color: inherit;
}
.press-mentions-list { list-style: none; padding: 0; margin: 0; }
.press-mention-item { border-bottom: 1px solid rgba(0,0,0,0.08); }
.section-dark .press-mention-item { border-bottom-color: rgba(255,255,255,0.08); }
.press-mention-inner {
  display: grid;
  grid-template-columns: 160px 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 20px 0;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.2s;
}
.press-mention-inner:hover { opacity: 0.7; }
.press-mention-publication {
  font-family: var(--bs-font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bs-gold);
}
.press-mention-headline {
  font-family: var(--bs-font-body);
  font-size: 15px;
  font-weight: 300;
  margin: 0;
  color: inherit;
}
.press-mention-date {
  font-family: var(--bs-font-body);
  font-size: 12px;
  color: var(--bs-mid-grey);
} 

/*--------------------------------------------------------------
# LAYOUT â€” Press Logo Grid
--------------------------------------------------------------*/
.press-grid-section {
  padding: var(--bs-section-pad) 0;
}
.press-grid-header { margin-bottom: 48px; }
.press-grid-title {
  font-family: var(--bs-font-display);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 900;
  letter-spacing: -0.02em;
  margin: 0;
  color: inherit;
}
.press-logos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 24px;
  align-items: center;
}
.press-logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  border-radius: var(--bs-radius-md);
  background: var(--bs-off-white);
  text-decoration: none;
  transition: background 0.2s;
}
.section-dark .press-logo-item { background: var(--bs-dark-grey); }
.press-logo-item:hover { background: var(--bs-gold-light); }
.press-logo-item img { max-height: 50px; max-width: 100%; object-fit: contain; }
.press-logo-text {
  font-family: var(--bs-font-body);
  font-size: 13px;
  font-weight: 500;
  color: inherit;
}

/*--------------------------------------------------------------
# LAYOUT â€” Media Kit
--------------------------------------------------------------*/
.media-kit-section {
  padding: var(--bs-section-pad) 0;
}
.media-kit-inner { max-width: 640px; }
.media-kit-title {
  font-family: var(--bs-font-display);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 900;
  letter-spacing: -0.02em;
  margin: 0 0 16px 0;
  color: inherit;
}
.media-kit-body {
  font-family: var(--bs-font-body);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--bs-warm-grey);
  margin: 0 0 32px 0;
}
.media-kit-files {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/*--------------------------------------------------------------
# LAYOUT â€” Rich Text
--------------------------------------------------------------*/
.rich-text-section {
  padding: var(--bs-section-pad) 0;
}
.rich-text--narrow   { max-width: 700px; }
.rich-text--standard { max-width: 900px; }
.rich-text--wide     { max-width: var(--bs-max-w); }
.rich-text-title {
  font-family: var(--bs-font-display);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 900;
  letter-spacing: -0.02em;
  margin: 0 0 32px 0;
  color: inherit;
}

/*--------------------------------------------------------------
# ANIMATIONS
--------------------------------------------------------------*/
@keyframes bs-fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}


@media (max-width: 1380px) {
.nav-links {
	gap: 25px;
}
}
/*--------------------------------------------------------------
# RESPONSIVE â€” 1100px
--------------------------------------------------------------*/
@media (max-width: 1100px) {
  .cards-grid--4-col { grid-template-columns: repeat(2, 1fr); }
  .alumni-grid--5-col { grid-template-columns: repeat(3, 1fr); }
  .alumni-grid--4-col { grid-template-columns: repeat(2, 1fr); }
  .spotlight-grid { grid-template-columns: repeat(2, 1fr); }
  .spotlight-card--featured { grid-column: span 1; }
  .press-featured-card { grid-template-columns: 1fr; }
  .press-featured-content { padding: 40px; }
  .press-featured-image { min-height: 280px; }
}
.page-splash-wrap.no-hero-image {
	padding: 110px 5% 80px;
	text-align: center;
	font-size: 150%;
}
/*--------------------------------------------------------------
# RESPONSIVE â€” 768px
--------------------------------------------------------------*/
@media (max-width: 768px) {
  .intro-text-grid { grid-template-columns: 1fr; gap: 28px; }
  .cards-grid--2-col,
  .cards-grid--3-col,
  .cards-grid--4-col { grid-template-columns: 1fr; }
  .alumni-grid--4-col,
  .alumni-grid--5-col { grid-template-columns: repeat(2, 1fr); }
  .spotlight-grid { grid-template-columns: 1fr; }
  .location-grid { grid-template-columns: 1fr; gap: 40px; }
  .location-map-placeholder { aspect-ratio: 4/3; }
  .photo-mosaic-grid { grid-template-columns: repeat(2, 1fr); }
  .video-grid { grid-template-columns: 1fr; }
  .cta-banner { flex-direction: column; text-align: center; text-wrap:balance; }
  .cta-banner-title { max-width: 100%; }
  .cta-banner-body  { max-width: 100%; }
  .timeline-track::before { left: 60px; }
  .timeline-event { grid-template-columns: 60px 1fr; gap: 20px; }
  .curriculum-module { grid-template-columns: 1fr; gap: 12px; }
  .press-mention-inner { grid-template-columns: 1fr; gap: 6px; }
  .press-featured-content { padding: 32px; }
  .bio-text--with-image { grid-template-columns: 1fr; }
  .hero-image-section.hero-image--full { height: 80svh; }
.cards-grid-header-content {
	grid-template-columns: 1fr;
	gap: 30px;
	margin-bottom: 50px;
}
}

/*--------------------------------------------------------------
# RESPONSIVE â€” 480px
--------------------------------------------------------------*/
@media (max-width: 480px) {
  .alumni-grid--4-col,
  .alumni-grid--5-col { grid-template-columns: repeat(2, 1fr); }
  .photo-mosaic-grid { grid-template-columns: 1fr; }
  .testimonial-card { flex: 0 0 85vw; }
  .details-table-row { grid-template-columns: 1fr; gap: 4px; }
}


/* =============================================================================
   NAVIGATION â€” Site Nav
   Version: 1.3.0 | CRD Media
   ============================================================================= */

.site-nav {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 200;
	padding: 20px var(--bs-gutter);
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: rgba(10, 10, 10, 1);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.smallHeader.site-nav {
	background: rgba(10, 10, 10, 0.85);
}

.nav-logo-text {
  color: var(--bs-white);
  align-content: center;
} 
.nav-logo {
  display: grid;
  grid-template-columns: auto 1fr;
  align-content: center;
  grid-gap: 20px;
}
.nav-logo img,
.nav-logo svg {
  width: 70px;
  transition: width 0.35s ease;
}
.site-nav.smallHeader .nav-logo img,
.site-nav.smallHeader .nav-logo svg {
  width: 35px;
}
.nav-logo-img img {
  vertical-align: top;
  margin: 0;
}
.nav-logo {
	font-family: var(--bs-font-body);
	text-transform: uppercase;
	color: #fff;
	font-size: 13px;
	font-weight: 400;
	letter-spacing: 0.06em;
	line-height: 13px;
}
.nav-logo span {
	display: block;
	font-size: 10px;
	font-family: var(--bs-font-body);
	font-weight: 300;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--bs-warm-grey);
	margin-top: 1px;
}

.nav-links {
	display: flex;
	align-items: center;
	gap: 36px;
	list-style: none;
	margin: 0;
	padding: 0;
}
.nav-links a {
	font-size: 13px;
	font-weight: 400;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--bs-warm-grey);
	text-decoration: none;
	transition: color 0.2s;
	position: relative;
}
.nav-links a::after {
	content: '';
	position: absolute;
	bottom: -3px; left: 0; right: 100%;
	height: 1px;
	background: var(--bs-gold);
	transition: right 0.3s var(--bs-ease);
}
.nav-links a:hover,
.nav-links a.active { color: var(--bs-white); }
.nav-links a:hover::after,
.nav-links a.active::after { right: 0; }

.nav-ctas {
	display: flex;
	align-items: center;
	gap: 10px;
}
.btn-nav-contact {
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--bs-white);
	border: 1px solid rgba(255, 255, 255, 0.25);
	border-radius: 100px;
	padding: 8px 20px;
	text-decoration: none;
	transition: border-color 0.2s, background 0.2s;
}
.btn-nav-contact:hover {
	border-color: var(--bs-white);
	background: rgba(255, 255, 255, 0.06);
}
.btn-nav-apply {
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	background: var(--bs-white);
	color: var(--bs-black);
	border-radius: 100px;
	padding: 8px 22px;
	border: 1px solid var(--bs-white);
	text-decoration: none;
	transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.btn-nav-apply:hover {
	background: var(--bs-gold);
	border-color: var(--bs-gold);
	color: var(--bs-black);
}

/* Hamburger â€” mobile only */
.nav-hamburger {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 6px;
	width: 36px;
	height: 36px;
}
.nav-hamburger span {
	display: block;
	width: 22px;
	height: 1.5px;
	background: var(--bs-white);
	transition: transform 0.3s, opacity 0.3s;
	transform-origin: center;
}
.nav-hamburger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.is-open span:nth-child(2) { opacity: 0; }
.nav-hamburger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile nav panel */
.nav-mobile {
	display: none;
	position: fixed;
	top: 65px; left: 0; right: 0;
	z-index: 199;
	background: rgba(10, 10, 10, 0.97);
	backdrop-filter: blur(16px);
	padding: 32px var(--bs-gutter) 40px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	transform: translateY(-8px);
	opacity: 0;
	transition: opacity 0.25s, transform 0.25s;
	pointer-events:none;
}
.nav-mobile.is-open {
	opacity: 1;
	transform: translateY(0);
	pointer-events:inherit;
}
.nav-mobile-links {
	list-style: none;
	margin: 0 0 28px;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 4px;
}
.nav-mobile-links a {
	display: block;
	font-size: 15px;
	/* font-family: var(--bs-font-display); */
	/* font-weight: 700; */
	color: var(--bs-white);
	text-decoration: none;
	padding: 10px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
	transition: color 0.2s;
	text-transform: uppercase;
	letter-spacing: 0.02em;
}
.nav-mobile-links a:hover { color: var(--bs-gold); }




/* =============================================================================
   FOOTER â€” Site Footer
   Version: 1.3.0 | CRD Media
   ============================================================================= */

.site-footer {
	background: var(--bs-black);
	color: var(--bs-white);
	padding: clamp(60px, 8vw, 100px) var(--bs-gutter) 40px;
}
.nav-logo-footer {
	max-width: 90px;
	display: block;
	margin: 0 0 20px 0;
}
.footer-top {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr 1fr;
	gap: 60px;
	margin-bottom: 60px;
}
.footer-brand-name {
	font-family: ;
	font-size: 15px;
	font-weight: 400;
	margin-bottom: 0;
	display: block;
	text-transform: uppercase;
	letter-spacing: 0.03em;
	line-height: 12px;
	margin: 0;
}
.footer-brand-sub {
	font-size: 11px;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--bs-mid-grey);
	margin-bottom: 20px;
	margin-top: 0;
}
.footer-brand-desc {
	font-size: 13px;
	font-weight: 300;
	color: var(--bs-warm-grey);
	line-height: 1.6;
	max-width: 260px;
}
.footer-email-form {
	display: flex;
	margin-top: 24px;
}
.footer-email-input {
	flex: 1;
	background: rgba(255, 255, 255, 0.07);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-right: none;
	border-radius: 8px 0 0 8px !important;
	padding: 10px 14px;
	font-size: 13px;
	color: var(--bs-white);
	font-family: var(--bs-font-body);
	outline: none;
}
.footer-email-input::placeholder { color: var(--bs-mid-grey); }
.footer-email-input:focus { border-color: rgba(255, 255, 255, 0.3); }
.footer-email-btn {
	background: var(--bs-gold);
	color: var(--bs-black);
	border: none;
	padding: 10px 18px;
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	border-radius: 0 8px 8px 0;
	cursor: pointer;
	font-family: var(--bs-font-body);
	transition: background 0.2s;
}
.footer-email-btn:hover { background: var(--bs-gold-hover); }

.footer-col-title {
	font-size: 11px;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--bs-mid-grey);
	margin-bottom: 20px;
}
.footer-links {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.footer-links li,
.footer-links a {
	font-size: 14px;
	font-weight: 300;
	color: var(--bs-warm-grey);
	text-decoration: none;
	transition: color 0.2s;
}
.footer-links a:hover { color: var(--bs-white); }

.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	padding-top: 28px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 20px;
	flex-wrap: wrap;
}
.footer-legal {
	font-size: 12px;
	color: var(--bs-mid-grey);
	font-weight: 300;
}
.footer-social {
	display: flex;
	gap: 20px;
}
.footer-social a {
	font-size: 16px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--bs-mid-grey);
	text-decoration: none;
	transition: color 0.2s;
}
.footer-social a:hover { color: var(--bs-white); }


/* =============================================================================
   NAV / FOOTER RESPONSIVE
   Version: 1.3.0 | CRD Media
   ============================================================================= */

@media (max-width: 1180px) {
	.nav-links,
	.nav-ctas { display: none; }
	.nav-hamburger { display: flex; }
	.nav-mobile { display: block; }
	.footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 600px) {
	.footer-top { grid-template-columns: 1fr; gap: 36px; }
	.footer-brand-desc { max-width: 100%; }
.footer-links {
	gap: 10px;
}
}
/* =============================================================================
   BOW STREET â€” New Layout System CSS
   Version: 2.0.0 | CRD Media | https://www.crdmedia.ie
   ============================================================================= */


/* =============================================================================
   PAGE HEADER â€” Text Only variant
   Version: 2.2.0 | CRD Media
   ============================================================================= */

.ph-section--text-only {
	padding: clamp(120px, 14vw, 180px) 0 clamp(80px, 10vw, 120px);
}

.ph-text-inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: flex-end;
}

/* Left â€” eyebrow + large title */
.ph-text-left {}

.ph-section--text-only .ph-eyebrow {
	font-family: var(--bs-font-body);
	font-size: 11px;
	font-weight: 400;
	letter-spacing: 0.3em;
	text-transform: uppercase;
	color: var(--bs-gold);
	margin-bottom: 20px;
	opacity: 0;
	animation: bs-fadeUp 0.8s var(--bs-ease) 0.1s forwards;
}

.ph-text-title {
	font-family: var(--bs-font-display);
	font-size: clamp(52px, 8vw, 110px);
	font-weight: 900;
	line-height: 0.9;
	letter-spacing: -0.03em;
	color: var(--bs-white);
	margin: 0;
	opacity: 0;
	animation: bs-fadeUp 0.9s var(--bs-ease) 0.2s forwards;
}
.ph-text-title em {
	display: block;
	font-style: italic;
	color: var(--bs-gold);
}

/* Right â€” subtitle + optional CTA */
.ph-text-right {
	padding-bottom: 8px;
	opacity: 0;
	animation: bs-fadeUp 0.9s var(--bs-ease) 0.35s forwards;
}

.ph-text-subtitle {
	font-size: clamp(15px, 1.6vw, 18px);
	font-weight: 300;
	color: var(--bs-warm-grey);
	line-height: 1.65;
	max-width: 440px;
	margin: 0 0 32px;
}

/* Responsive */
@media (max-width: 768px) {
	.ph-text-inner {
		grid-template-columns: 1fr;
		gap: 32px;
	}
	.ph-text-subtitle { max-width: 100%; }
}


/* =============================================================================
   LAYOUT â€” Page Header (replaces hero-image + hero-video)
   ============================================================================= */

.ph-section {
	position: relative;
	width: 100%;
	height: calc(100svh - 110px);
	min-height: 600px;
	background-color: var(--bs-black);
	background-size: cover;
	background-position: center;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	text-align: center;
}




.ph-section.ph-section--text-only {
	height: auto !important;
	text-align: left;
}
/* Video backgrounds */
.ph-video-wrap {
	position: absolute;
	inset: 0;
	z-index: 0;
	overflow: hidden;
}
.ph-video-el {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
.ph-vimeo {
	position: absolute;
	top: 50%; left: 50%;
	width: 177.78vh; /* 16:9 ratio */
	height: 56.25vw;
	min-width: 100%;
	min-height: 100%;
	transform: translate(-50%, -50%);
	border: 0;
}

.ph-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient( to bottom, rgba(10,10,10,0.15) 0%, rgba(10,10,10,0.35) 40%, rgba(10,10,10,0.92) 100% );
	z-index: 1;
}

.ph-inner {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding-top: 100px;
	padding-bottom: clamp(52px, 7vw, 88px);
	width: 100%;
}

.ph-eyebrow {
	font-family: var(--bs-font-body);
	font-size: 11px;
	font-weight: 400;
	letter-spacing: 0.3em;
	text-transform: uppercase;
	color: var(--bs-gold);
	margin-bottom: 24px;
	opacity: 0;
	animation: bs-fadeUp 0.8s var(--bs-ease) 0.1s forwards;
}

.ph-title {
	font-family: var(--bs-font-display);
	font-size: clamp(52px, 9vw, 130px);
	font-weight: 900;
	line-height: 0.92;
	letter-spacing: -0.03em;
	color: var(--bs-white);
	margin: 0 0 28px;
	text-wrap: balance;
	opacity: 0;
	animation: bs-fadeUp 0.9s var(--bs-ease) 0.2s forwards;
}
.ph-title em {
	display: block;
	font-style: italic;
	color: var(--bs-gold);
}

.home .ph-title em {
	display: block;
	font-style: italic;
	color: var(--bs-gold);
	font-size: 90%;
	margin-top: 11px;
}


.ph-subtitle {
	font-size: clamp(15px, 1.8vw, 19px);
	font-weight: 300;
	line-height: 1.65;
	max-width: 560px;
	color: rgba(245,243,239,0.85);
	margin: 0 0 36px;
	text-wrap: balance;
	opacity: 0;
	animation: bs-fadeUp 0.9s var(--bs-ease) 0.35s forwards;
}

.ph-ctas {
	display: flex;
	gap: 14px;
	flex-wrap: wrap;
	justify-content: center;
	opacity: 0;
	animation: bs-fadeUp 0.9s var(--bs-ease) 0.45s forwards;
}

.ph-scroll-cue {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	margin-top: 40px;
	opacity: 0;
	animation: bs-fadeUp 0.9s var(--bs-ease) 0.6s forwards;
}
.ph-scroll-cue span {
	font-size: 10px;
	letter-spacing: 0.25em;
	text-transform: uppercase;
	color: var(--bs-mid-grey);
}
.scroll-arrow {
	width: 1px;
	height: 52px;
	background: linear-gradient(to bottom, var(--bs-mid-grey), transparent);
	animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
	0%, 100% { opacity: 0.4; transform: scaleY(1); }
	50%       { opacity: 1;   transform: scaleY(1.15); }
}




/* =============================================================================
   LAYOUT â€” Long Text
   ============================================================================= */

.lt-section {
	padding: var(--bs-section-pad) 0;
}

/* Image left or right â€” two-column */
.lt-grid--left,
.lt-grid--right {
	display: grid;
	gap: clamp(48px, 7vw, 100px);
	align-items: start;
}
.lt-grid--left  { grid-template-columns: 1fr 1.4fr; }
.lt-grid--right { grid-template-columns: 1.4fr 1fr; }

/* Image left: image col 1, content col 2 */
.lt-grid--left  .lt-image-col   { grid-column: 1; grid-row: 1; }
.lt-grid--left  .lt-content-col { grid-column: 2; grid-row: 1; }
/* Image right: content col 1, image col 2 */
.lt-grid--right .lt-content-col { grid-column: 1; grid-row: 1; }
.lt-grid--right .lt-image-col   { grid-column: 2; grid-row: 1; }

.lt-grid--no-image { max-width: 820px; margin: 0 auto; }

.lt-image {
	width: 100%;
	border-radius: 16px;
	display: block;
}
.lt-grid--left .lt-image-col,
.lt-grid--right .lt-image-col {
	position: sticky;
	top: calc(var(--bs-nav-h, 65px) + 32px);
}

.lt-title {
	font-family: var(--bs-font-display);
	font-size: clamp(40px, 4.5vw, 60px);
	font-weight: 900;
	line-height: 1;
	letter-spacing: -0.025em;
	margin-bottom: 32px;
	color: inherit;
}
.lt-title:first-child {
    margin-top:0;
}
.lt-title em {
	display: block;
	font-style: italic;
	color: var(--bs-gold);
}
.bg--white .lt-title em,
.bg--off-white .lt-title em { color: var(--bs-mid-grey); }

.lt-body { margin-bottom: 0; }

.lt-quote {
	margin-top: 48px;
	border-left: 3px solid var(--bs-gold);
	padding-left: 28px;
}
.lt-quote-text {
	font-family: var(--bs-font-display);
	font-size: clamp(18px, 2.2vw, 26px);
	font-style: italic;
	font-weight: 400;
	line-height: 1.45;
	color: inherit;
	margin: 0 0 12px;
}
.lt-quote-attr {
	font-size: 13px;
	font-style: normal;
	color: var(--bs-mid-grey);
	letter-spacing: 0.05em;
}

.lt-facts {
	margin-top: 52px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}
.lt-fact {
	border-top: 1px solid rgba(255,255,255,0.1);
	padding-top: 20px;
}
.bg--white .lt-fact,
.bg--off-white .lt-fact { border-top-color: rgba(0,0,0,0.1); }

.lt-fact-label {
	font-size: 10px;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--bs-mid-grey);
	margin-bottom: 8px;
}
.lt-fact-value {
	font-size: 14px;
	font-weight: 300;
	line-height: 1.5;
	color: var(--bs-warm-grey);
}
.bg--white .lt-fact-value,
.bg--off-white .lt-fact-value { color: #555; }

@media (max-width: 860px) {
	.lt-grid--left,
	.lt-grid--right { grid-template-columns: 1fr; display:block;}
.lt-grid--left .lt-image-col, .lt-grid--right .lt-image-col, .lt-grid--left .lt-content-col, .lt-grid--right .lt-content-col {
	position: relative;
	top:auto !important;
}
	.lt-grid--right .lt-image-col { grid-row: auto; }
}

/* =============================================================================
   LAYOUT â€” Card Grid
   Version: 2.2.0 | CRD Media
   ============================================================================= */

.cg-section {
	padding: var(--bs-section-pad) 0;
}

/*  Header: dark mode (title + intro left, link right â€” mirrors light)  */
.cg-header--dark {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: end;
	margin-bottom: clamp(48px, 6vw, 80px);
}
.cg-header-left {
	display: flex;
	flex-direction: column;
}

/*  Header: light mode (large title left, intro right)  */
.cg-header--light {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	margin-bottom: clamp(48px, 6vw, 80px);
}
.cg-header--light:last-child {
    margin-bottom:0 !important;
}
.cg-header-right {
	padding-bottom: 4px;
}

/*  Title  */
.cg-title {
	font-family: var(--bs-font-display);
	font-weight: 900;
	line-height: 0.92;
	letter-spacing: -0.03em;
	color: inherit;
	margin: 12px 0 0;
}
.bg--white .cg-title,
.bg--off-white .cg-title {
	font-size: clamp(48px, 7vw, 72px);
}
.bg--black .cg-title {
	font-size: clamp(40px, 6vw, 80px);
}
.cg-title em { display: block; font-style: italic; }
.bg--black .cg-title em        { color: var(--bs-gold); }
.bg--white .cg-title em,
.bg--off-white .cg-title em    { color: var(--bs-mid-grey); }

/*  Intro  */
.cg-intro {
	font-size: clamp(15px, 1.5vw, 20px);
	font-weight: 300;
	line-height: 1.7;
	color: rgba(0,0,0,0.55);
	margin: 0 0 20px 0;
}
/* Intro on dark sections */
.cg-intro--dark {
	color: var(--bs-warm-grey);
	font-size: clamp(15px, 1.5vw, 20px);
	font-weight: 300;
	line-height: 1.7;
	margin: 0 0 20px 0;
}

/*  Section link  */
.cg-link {
	font-size: 12px;
	font-weight: 400;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	text-decoration: none;
	transition: color 0.2s, border-color 0.2s;
	margin-top: 20px !important;
}
.bg--black .cg-link {
	color: var(--bs-warm-grey);
	border-bottom: 1px solid rgba(255,255,255,0.2);
	padding-bottom: 2px;
}
.bg--black .cg-link:hover { color: var(--bs-white); border-color: var(--bs-white); }
.bg--white .cg-link,
.bg--off-white .cg-link { color: var(--bs-black); border-bottom: 1px solid rgba(0,0,0,0.25); padding-bottom: 2px; }
.bg--white .cg-link:hover,
.bg--off-white .cg-link:hover { color: var(--bs-gold); border-color: var(--bs-gold); }

/*  Grid  */
.cg-grid { display: grid; }
.cg-grid--2-col { grid-template-columns: repeat(2, 1fr); }
.cg-grid--3-col { grid-template-columns: repeat(3, 1fr); }
.cg-grid--4-col { grid-template-columns: repeat(4, 1fr); }

.bg--white .cg-grid,
.bg--off-white .cg-grid {
	gap: 2px;
	background: rgba(0,0,0,0.08);
}
.bg--black .cg-grid { gap: 12px; }

/*  Card  */
.cg-card {
	display: block;
	text-decoration: none;
	color: inherit;
	transition: background 0.2s, border-color 0.25s, transform 0.25s var(--bs-ease);
}

.bg--white .cg-card,
.bg--off-white .cg-card {
	background: var(--bs-white);
	padding: clamp(32px, 4vw, 48px) clamp(24px, 3vw, 36px);
}
.bg--off-white .cg-card { background: var(--bs-off-white); }
.bg--white .cg-card:hover,
.bg--off-white .cg-card:hover { background: var(--bs-off-white); }

.bg--black .cg-card {
	border-radius: 12px;
	background: var(--bs-dark-grey);
	border: 1px solid rgba(255,255,255,0.07);
	padding: clamp(24px, 3vw, 32px) clamp(20px, 2.5vw, 28px);
	min-height: 240px;
	display: flex;
	flex-direction: column;
}
.bg--black .cg-card:hover {
	background: #1e1c1a;
	border-color: rgba(255,255,255,0.18);
	transform: translateY(-4px);
}

/* Featured card */
.bg--black .cg-card--featured {
	background: var(--bs-gold);
	border-color: transparent;
}
.bg--black .cg-card--featured:hover { background: var(--bs-gold-hover); }
.bg--black .cg-card--featured .cg-card-number,
.bg--black .cg-card--featured .cg-card-arrow { color: rgba(0,0,0,0.55); }
.bg--black .cg-card--featured .cg-card-title  { color: var(--bs-black); }
.bg--black .cg-card--featured .cg-card-body   { color: rgba(0,0,0,0.65); }

/*  Card internals  */
.cg-card-number {
	font-size: 10px;
	font-weight: 400;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	margin: 0 0 16px;
}
.bg--white .cg-card-number,
.bg--off-white .cg-card-number { color: var(--bs-mid-grey); }
.bg--black .cg-card-number     { color: var(--bs-mid-grey); }

.cg-card-title {
	font-family: var(--bs-font-display);
	font-size: clamp(20px, 2.2vw, 28px);
	font-weight: 700;
	line-height: 1.12;
	letter-spacing: -0.01em;
	margin: 0 0 14px;
}
.bg--white .cg-card-title,
.bg--off-white .cg-card-title { color: var(--bs-black); }
.bg--black .cg-card-title     { color: var(--bs-white); }

.cg-card-body {
	font-size: 14px;
	font-weight: 300;
	line-height: 1.72;
	margin: 0 0 20px;
}
.bg--white .cg-card-body,
.bg--off-white .cg-card-body { color: #555; }
.bg--black .cg-card-body     { color: var(--bs-warm-grey); }

.cg-card-arrow {
	font-size: 16px;
	display: block;
	transition: transform 0.2s;
}
.bg--white .cg-card-arrow,
.bg--off-white .cg-card-arrow { color: var(--bs-black); }
.bg--black .cg-card-arrow     { color: var(--bs-warm-grey); }
.cg-card:hover .cg-card-arrow { transform: translateX(4px); }

/*  Hover image  */
.cg-card--has-image {
	position: relative;
	overflow: hidden;
	isolation: isolate;
}
.cg-card-bg {
	position: absolute;
	inset: 0;
	background-image: var(--cg-hover-img);
	background-size: cover;
	background-position: center;
	filter: grayscale(95%);
	opacity: 0;
	transform: scale(1.04);
	transition: opacity 0.45s var(--bs-ease), transform 0.45s var(--bs-ease);
	z-index: 0;
}
.cg-card-bg-overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.60);
	opacity: 0;
	transition: opacity 0.35s var(--bs-ease);
	z-index: 1;
}
.cg-card--has-image:hover .cg-card-bg,
.cg-card--has-image:hover .cg-card-bg-overlay { opacity: 1; }
.cg-card--has-image:hover .cg-card-bg         { transform: scale(1); }

.cg-card-content {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	height: 100%;
}
.cg-card--has-image:hover .cg-card-number,
.cg-card--has-image:hover .cg-card-title,
.cg-card--has-image:hover .cg-card-body,
.cg-card--has-image:hover .cg-card-arrow { color: var(--bs-white) !important; }

/*  Responsive  */
@media (max-width: 1000px) {
	.cg-grid--4-col { grid-template-columns: repeat(2, 1fr); }
	.cg-header--light { grid-template-columns: 1fr; gap: 24px; }
}
@media (max-width: 1000px) {
	.cg-header--dark { grid-template-columns: 1fr; gap: 24px; }
}
@media (max-width: 640px) {
	.cg-grid--2-col,
	.cg-grid--3-col,
	.cg-grid--4-col { grid-template-columns: 1fr; }
}
/* =============================================================================
   LAYOUT â€” Image Gallery
   4-column grid â†’ 2-col tablet â†’ 1-col mobile.
   Each image links to full-size URL for lightbox.
   Version: 2.1.0 | CRD Media
   ============================================================================= */

.ig-section { padding: var(--bs-section-pad) 0; }

.ig-header { margin-bottom: clamp(32px, 4vw, 52px); }

.ig-title {
	font-family: var(--bs-font-display);
	font-size: clamp(28px, 4vw, 52px);
	font-weight: 900;
	line-height: 1;
	letter-spacing: -0.025em;
	margin: 12px 0 0;
	color: inherit;
}
.ig-title em { font-style: italic; color: var(--bs-gold); }
.bg--white .ig-title em,
.bg--off-white .ig-title em { color: var(--bs-mid-grey); }

.ig-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 10px;
}

.ig-item {
	display: block;
	overflow: hidden;
	border-radius: 8px;
	background: var(--bs-dark-grey);
	aspect-ratio: 16/9;
	line-height: 0; /* remove gap below inline image */
}
.bg--white .ig-item,
.bg--off-white .ig-item { background: var(--bs-off-white); }

.ig-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.45s var(--bs-ease), opacity 0.3s;
}
.ig-item:hover .ig-img {
	transform: scale(1.04);
	opacity: 0.9;
}

@media (max-width: 768px) {
	.ig-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
	.ig-grid { grid-template-columns: 1fr; }
}
/* =============================================================================
   LAYOUT â€” Video Gallery
   ============================================================================= */

.vg-section { padding: var(--bs-section-pad) 0; }

.vg-header { margin-bottom: clamp(32px, 4vw, 52px); }
.vg-title {
	font-family: var(--bs-font-display);
	font-size: clamp(28px, 4vw, 52px);
	font-weight: 900;
	line-height: 1;
	letter-spacing: -0.025em;
	margin: 12px 0 0;
	color: inherit;
	text-align: center;
}
.vg-title em { font-style: italic; color: var(--bs-gold); }

.vg-grid {
	display: grid;
	gap: 16px;
}
.vg-grid--2-col { grid-template-columns: repeat(2, 1fr); }
.vg-grid--3-col { grid-template-columns: repeat(3, 1fr); }

.vg-card {
	cursor: pointer;
}
.vg-thumb {
	border-radius: 12px;
	overflow: hidden;
	background: var(--bs-dark-grey);
	aspect-ratio: 16/10;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 14px;
	transition: transform 0.3s var(--bs-ease);
}
.vg-card:hover .vg-thumb { transform: translateY(-4px); }

.vg-poster {
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: absolute;
	inset: 0;
}
.vg-poster-placeholder {
	position: absolute;
	inset: 0;
	background: var(--bs-dark-grey);
}
.vg-play {
	position: relative;
	z-index: 2;
	width: 52px;
	height: 52px;
	border-radius: 50%;
	background: rgba(255,255,255,0.15);
	backdrop-filter: blur(8px);
	border: 1px solid rgba(255,255,255,0.25);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--bs-white);
	transition: background 0.2s, transform 0.2s;
}
.vg-card:hover .vg-play {
	background: var(--bs-gold);
	transform: scale(1.08);
}
.vg-caption {
	max-width: 300px;
	margin: 20px auto 0 auto;
	text-align: center;
	font-family: var(--bs-font-display);
	font-size: clamp(14px, 1.4vw, 18px);
	font-weight: 700;
	color: var(--bs-white);
	/* margin: 0 0 3px; */
	line-height: 1.25;
}

/* Lightbox */
.vg-lightbox {
	display: none;
	position: fixed;
	inset: 0;
	z-index: 9999;
	background: rgba(5,5,5,0.95);
	align-items: center;
	justify-content: center;
}
.vg-lightbox.is-open { display: flex; }
.vg-lightbox-close {
	position: absolute;
	top: 24px; right: 28px;
	font-size: 32px;
	line-height: 1;
	color: var(--bs-warm-grey);
	background: none;
	border: none;
	cursor: pointer;
	transition: color 0.2s;
}
.vg-lightbox-close:hover { color: var(--bs-white); }
.vg-lightbox-inner {
	width: min(90vw, 1100px);
}
.vg-lightbox-frame {
	position: relative;
	aspect-ratio: 16/9;
	background: #000;
	border-radius: 8px;
	overflow: hidden;
}
.vg-lightbox-frame iframe,
.vg-lightbox-frame video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

@media (max-width: 768px) {
	.vg-grid--3-col { grid-template-columns: repeat(2, 1fr); }
	.vg-grid--2-col { grid-template-columns: 1fr; }
}



.qb-section .container {
	max-width: 100% !important;
}


/* =============================================================================
   LAYOUT â€” Quote Block (Slick Slider)
   Version: 2.1.0 | CRD Media
   ============================================================================= */

.qb-section {
	padding: var(--bs-section-pad) 0;
}
.qb-eyebrow {
	text-align: center;
	margin-bottom: 52px;
}


.qb-slider .slick-list {
	margin: 0
	overflow: hidden;
}
.qb-slider .slick-slide {
	margin: 0 20px;
	padding: 0 12px;
}

/* Equal-height slides */
.qb-slider .slick-track {
	display: flex;
	align-items: stretch;
}

/* Re-apply flex to the card â€??? Slick's init sets display:block on .slick-slide */
.qb-slider.slick-initialized .slick-slide.qb-card,
.qb-slider .slick-initialized .slick-slide.qb-card {
	display: flex !important;
	flex-direction: column;
	height: auto;
}

/*  Card  */
.qb-card {
	border-radius: 24px;
	padding: 44px !important;
	display: flex;
	flex-direction: column;
	gap: 28px;
	box-sizing: border-box;
	width: 100%;
}

.bg--black .qb-card {
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.08);
}

.bg--off-white .qb-card {
	background: var(--bs-white);
	box-shadow: 0 2px 24px rgba(0, 0, 0, 0.06);
}
.bg--white .qb-card {
	background: #fff;
	box-shadow: 0 2px 24px rgba(0, 0, 0, 0.06);
}
/*  Quote  */
.qb-quote {
	font-family: var(--bs-font-display);
	font-size: clamp(18px, 2.2vw, 24px);
	font-style: italic;
	font-weight: 400;
	line-height: 1.45;
	flex: 1;
	margin: 0;
}
.qb-quote::before { content: '\201C'; }
.qb-quote::after  { content: '\201D'; }
.bg--black .qb-quote     { color: var(--bs-white); }
.bg--white .qb-quote,
.bg--off-white .qb-quote { color: var(--bs-black); }

/*  Author  */
.qb-author {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-top: auto;
	flex-shrink: 0;
}
.qb-avatar {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	object-fit: cover;
	flex-shrink: 0;
}
.qb-avatar--placeholder {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: var(--bs-warm-grey);
	flex-shrink: 0;
}
.qb-name {
	font-size: 14px;
	font-weight: 500;
	margin: 0 0 3px;
}
.bg--black .qb-name     { color: var(--bs-white); }
.bg--white .qb-name,
.bg--off-white .qb-name { color: var(--bs-black); }
.qb-role {
	font-size: 12px;
	font-weight: 300;
	color: var(--bs-mid-grey);
	margin: 0;
}

/*  Slick dots  */
.qb-slider .slick-dots {
	display: flex !important;
	justify-content: center;
	align-items: center;
	gap: 10px;
	list-style: none;
	margin: 36px 0 0;
	padding: 0;
}
.qb-slider .slick-dots li { margin: 0; }
.qb-slider .slick-dots li button {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--bs-warm-grey);
	border: none;
	padding: 0;
	font-size: 0;
	cursor: pointer;
	transition: background 0.2s, transform 0.2s;
}
.qb-slider .slick-dots li.slick-active button {
	background: var(--bs-gold);
	transform: scale(1.4);
}

/* =============================================================================
   QUOTE BLOCK — Image Slider additions
   Version: 2.2.0 | CRD Media
   ============================================================================= */

/* Image slides — maintain a consistent height, crop to fill */
.qb-slider--images .qb-img-slide {
	padding: 0 8px;
	outline: none;
}
.qb-slider--images .qb-slide-img {
	width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
	display: block;
	border-radius: 10px;
}
.qb-slide-caption {
	margin-top: 12px;
	font-size: 13px;
	font-weight: 300;
	line-height: 1.55;
	text-align: center;
	font-style: italic;
}
.bg--black .qb-slide-caption        { color: var(--bs-warm-grey); }
.bg--white .qb-slide-caption,
.bg--off-white .qb-slide-caption    { color: var(--bs-mid-grey); }
/* =============================================================================
   LAYOUT â€” Alumni Block
   Version: 2.2.0 | CRD Media
   ============================================================================= */

.ab-section { padding: var(--bs-section-pad) 0; }

/*  Header   */
.ab-header {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	gap: 24px;
	flex-wrap: wrap;
	margin-bottom: clamp(40px, 5vw, 64px);
}
.ab-title {
	font-family: var(--bs-font-display);
	font-size: clamp(32px, 5vw, 64px);
	font-weight: 900;
	line-height: 0.95;
	letter-spacing: -0.025em;
	color: inherit;
	margin: 12px 0 0;
}
.ab-title em { display: block; font-style: italic; }
.bg--black .ab-title em        { color: var(--bs-gold); }
.bg--white .ab-title em,
.bg--off-white .ab-title em    { color: var(--bs-mid-grey); }

/*  Shared card   */
.ab-card {
	position: relative;
	border-radius: 12px;
	overflow: hidden;
	background: var(--bs-dark-grey);
	aspect-ratio: 3/4;
}
.bg--white .ab-card,
.bg--off-white .ab-card { background: var(--bs-off-white); }

.ab-card-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center top;
	display: block;
	transition: transform 0.5s var(--bs-ease);
}
.ab-card:hover .ab-card-img { transform: scale(1.04); }

.ab-card-placeholder {
	width: 100%;
	height: 100%;
	background: var(--bs-dark-grey);
}

.ab-card-info {
	position: absolute;
	inset: 0;
	padding: 16px;
	background: linear-gradient(to top, rgba(10,10,10,0.88) 0%, transparent 55%);
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	opacity: 0;
	transition: opacity 0.3s;
}
/* Desktop: hover to reveal */
.ab-card:hover .ab-card-info { opacity: 1; }

/* Always show names when field is ticked */
.ab-names-always .ab-card-info { opacity: 1; }

/* Touch devices: always show regardless of setting */
@media (hover: none) {
	.ab-card-info { opacity: 1; }
}

.ab-card-name {
	font-family: var(--bs-font-display);
	font-size: clamp(14px, 1.4vw, 17px);
	font-weight: 700;
	color: var(--bs-white);
	margin: 0 0 3px;
	line-height: 1.15;
}
.ab-card-credit {
	font-size: 12px;
	font-weight: 300;
	color: var(--bs-warm-grey);
	margin: 0;
}

/*  Grid mode â€” 4 columns, last row does not fill   */
.ab-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 12px;
}

/*  Info: always visible on touch, hover-only on desktop   */
@media (hover: hover) {
	.ab-card-info  { opacity: 0; }
	}
@media (hover: none) {
	/* Touch devices â€” always show the name/credit */
	.ab-card-info {
		opacity: 1;
		background: linear-gradient(to top, rgba(10,10,10,0.88) 0%, transparent 55%);
	}
}

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

/*  Carousel mode   */
.ab-carousel { position: relative; }

/* Slick overrides â€” maintain card aspect ratio */
.ab-carousel .ab-slide { padding: 0 8px; }
.ab-carousel .ab-card  { display: block !important; width: 100%; }

/* Hide the scrollbar track Slick adds */
.ab-carousel .slick-list { overflow: hidden; }

/* Arrow buttons */
.ab-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 2;
	background: rgba(255,255,255,0.1);
	border: 1px solid rgba(255,255,255,0.15);
	border-radius: 50%;
	width: 44px;
	height: 44px;
	display: flex !important;
	align-items: center;
	justify-content: center;
	color: var(--bs-white);
	cursor: pointer;
	transition: background 0.2s, border-color 0.2s;
}
.bg--white .ab-arrow,
.bg--off-white .ab-arrow {
	background: rgba(0,0,0,0.06);
	border-color: rgba(0,0,0,0.12);
	color: var(--bs-black);
}
.ab-arrow:hover { background: var(--bs-gold); border-color: var(--bs-gold); color: var(--bs-black); }

.ab-arrow--prev { left: -52px; }
.ab-arrow--next { right: -52px; }

@media (max-width: 860px) {
	.ab-arrow--prev { left: 0; }
	.ab-arrow--next { right: 0; }
	.ab-carousel .slick-list { margin: 0 52px; }
}
/* =============================================================================
   SINGLE COURSE â€” bs_course template
   Version: 2.0.0 | CRD Media
   ======================================================================== */


.cs-hero-inner.container {
	width: 100%;
	max-width: 100% !important;
	padding: 0 !important;
}


/*  Hero   */

.cs-hero-inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0;
	/* min-height: 80vh; */
	min-height: calc(100svh - 110px);
	overflow: hidden;
}
.cs-hero-text {
	padding: clamp(60px, 8vw, 110px) clamp(24px, 5vw, 80px);
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.cs-breadcrumb {
	font-size: 11px;
	letter-spacing: 0.25em;
	text-transform: uppercase;
	color: var(--bs-gold);
	margin-bottom: 20px;
	display: flex;
	align-items: center;
	gap: 8px;
}
.cs-breadcrumb a { color: inherit; text-decoration: none; }
.cs-breadcrumb a:hover { color: var(--bs-white); }
.cs-breadcrumb span { opacity: 0.4; }

.cs-level-tag {
	display: inline-block;
	font-size: 11px;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--bs-black);
	background: var(--bs-gold);
	border-radius: 100px;
	padding: 5px 14px;
	margin-bottom: 24px;
	font-weight: 500;
}
.cs-hero-title {
	font-family: var(--bs-font-display);
	font-size: clamp(40px, 6vw, 80px);
	font-weight: 900;
	line-height: 0.95;
	letter-spacing: -0.02em;
	color: var(--bs-white);
	margin-bottom: 24px;
	margin-top: 30px;
}
.cs-hero-desc {
	font-size: clamp(15px, 1.5vw, 17px);
	font-weight: 300;
	line-height: 1.7;
	color: var(--bs-warm-grey);
	max-width: 480px;
	margin-bottom: 36px;
}
.cs-hero-ctas {
	display: flex;
	gap: 14px;
	flex-wrap: wrap;
	margin-bottom: 48px;
}
.cs-intro-title {
    font-family: var(--bs-font-display);
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.025em;
    color: var(--bs-black);
    margin: 0 0 28px;
}
.cs-intro-title em {
    display: block;
    font-style: italic;
    color: var(--bs-mid-grey);
}

/* Stats row */
.cs-stats {
	display: flex;
	border-top: 1px solid rgba(255,255,255,0.08);
	padding-top: 0;
}
.cs-stat {
	flex: 1;
	padding: 20px;
	border-right: 1px solid rgba(255,255,255,0.08);
}
.cs-stat:last-child { border-right: none; padding-right: 0; }
.cs-stat-label {
	font-size: 10px;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--bs-mid-grey);
	margin-bottom: 6px;
}
.cs-stat-value {
	font-family: var(--bs-font-display);
	font-size: clamp(16px, 1.8vw, 22px);
	font-weight: 700;
	color: var(--bs-white);
	line-height: 1.1;
}

/* Hero image side */
.cs-hero-image {
	position: relative;
	overflow: hidden;
	background: var(--bs-dark-grey);
}
.cs-hero-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center top;
	display: block;
}

/*  Intro   */
.cs-intro { padding: var(--bs-section-pad) 0; }
.cs-intro-grid {
	display: grid;
	grid-template-columns: 1.1fr 1fr;
	gap: 80px;
	align-items: start;
}
.cs-intro-body { font-size: 16px; }
.cs-aside-card {
	background: var(--bs-black);
	border-radius: 24px;
	padding: 40px 36px;
	color: var(--bs-white);
	position: sticky;
	top: calc(var(--bs-nav-h, 65px) + 24px);
}
.cs-aside-title {
	font-family: var(--bs-font-display);
	font-size: 24px;
	font-weight: 700;
	margin-bottom: 30px;
	line-height: 1.2;
	color: #fff;
	margin-top: 0;
}
.cs-aside-list {
	list-style: none;
	margin: 0 0 28px;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.cs-aside-list li {
	font-size: 14px;
	font-weight: 300;
	line-height: 1.55;
	color: var(--bs-warm-grey);
	padding-left: 20px;
	position: relative;
}
.cs-aside-list li::before {
	content: 'â†’';
	position: absolute;
	left: 0;
	color: var(--bs-gold);
	font-size: 12px;
}
.cs-aside-btn {
	display: block;
	text-align: center;
	background: var(--bs-gold);
	color: var(--bs-black);
	border-radius: 100px;
	padding: 12px 24px;
	font-size: 13px;
	font-weight: 500;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	text-decoration: none;
	transition: background 0.2s;
}
.cs-aside-btn:hover { background: var(--bs-gold-hover); }

/*  Curriculum   */
.cs-curriculum { padding: var(--bs-section-pad) 0; }
.cs-curriculum-header {
	margin-bottom: clamp(40px, 5vw, 64px);
	text-align: center;
}
.cs-curriculum-title {
	font-family: var(--bs-font-display);
	font-size: clamp(32px, 4vw, 52px);
	font-weight: 900;
	line-height: 1;
	letter-spacing: -0.025em;
	color: var(--bs-white);
	margin-top: 12px;
}
.cs-curriculum-title em {
	color: var(--bs-gold);
}
.cs-curriculum-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 12px;
	margin-bottom: 48px;
}
.cs-curriculum-card {
	background: var(--bs-dark-grey);
	border: 1px solid rgba(255,255,255,0.07);
	border-radius: 12px;
	padding: 32px 28px;
	transition: background 0.25s, border-color 0.25s;
}
.cs-curriculum-card:hover {
	background: #1e1c1a;
	border-color: rgba(255,255,255,0.16);
}
.cs-module-num {
	font-size: 11px;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--bs-mid-grey);
	margin-bottom: 14px;
}
.cs-module-title {
	font-family: var(--bs-font-display);
	font-size: 20px;
	font-weight: 700;
	color: var(--bs-white);
	margin-bottom: 12px;
	line-height: 1.2;
}
.cs-module-body {
	font-size: 14px;
	font-weight: 300;
	line-height: 1.7;
	color: var(--bs-warm-grey);
	margin: 0;
}
.cs-curriculum-cta { text-align: center; }

/*  Details   */
.cs-details { padding: var(--bs-section-pad) 0; }
.cs-details-header { margin-bottom: clamp(32px, 4vw, 52px); }
.cs-details-title {
	font-family: var(--bs-font-display);
	font-size: clamp(32px, 4vw, 52px);
	font-weight: 900;
	letter-spacing: -0.025em;
	line-height: 1;
	margin-top: 12px;
	color: var(--bs-black);
}
.cs-details-table {
	width: 100%;
	border-collapse: collapse;
}
.cs-details-table tr {
	border-bottom: 1px solid rgba(0,0,0,0.1);
}
.cs-details-table tr:first-child {
	border-top: 1px solid rgba(0,0,0,0.1);
}
.cs-details-table td {
	padding: 28px 0;
	vertical-align: top;
	font-size: 15px;
	font-weight: 300;
	line-height: 1.65;
	color: #444;
}
.cs-details-table td:first-child {
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.02em;
	color: var(--bs-black);
	width: 180px;
	padding-right: 40px;
	font-style: normal;
}
.cs-details-table p:first-child {
    margin-top:0;
}
.cs-details-table p:last-child {
    margin-bottom:0;
}
.cs-details-table a {
	color: var(--bs-black);
	text-decoration: underline;
}

.cta-form-wrap .gform_fileupload_rules {
	display: none !important;
}
.cta-form-wrap .gfield_description {
	font-size: 10px !important;
	text-transform: uppercase !important;
	font-weight: 400;
	text-align:center !important;
	max-width: 200px !important;
	margin: 0 auto !important;
	color: var(--bs-dark-grey) !important;
}

.cta-form-wrap .gform-body.gform_body {
	text-align: left;
}


/* Gravity Forms â€” light / off-white background */
.cta-form-wrap .gform_wrapper {
  margin: 0;
}
.cta-form-wrap .gform_heading {
    display:none !important;
}
.cta-form-wrap .gfield label.gfield_label, .cta-form-wrap .gform_wrapper.gravity-theme .ginput_complex label,
.cta-form-wrap .gform_wrapper.gravity-theme legend {
    font-size:12px;
		text-transform:uppercase;
		color:var(--bs-dark-grey);
		padding-left:8px;
}
.cta-form-wrap input[type="text"],
.cta-form-wrap input[type="email"],
.cta-form-wrap input[type="tel"],
.cta-form-wrap textarea,
.cta-form-wrap select {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(0,0,0,0.15);
  border-radius: 0;
  color: var(--bs-black);
  font-family: var(--bs-font-body);
  font-size: 15px;
  font-weight: 300;
  padding: 14px 0;
  outline: none;
  transition: border-color 0.2s;
}
.cta-form-wrap input::placeholder,
.cta-form-wrap textarea::placeholder {
  color: rgba(0,0,0,0.3);
  font-weight: 300;
}
.cta-form-wrap input:focus,
.cta-form-wrap textarea:focus {
  border-bottom-color: var(--bs-gold);
}
.cta-form-wrap textarea {
  resize: none;
  min-height: 120px;
}
.cta-form-wrap .gfield {
  margin-bottom: 8px;
}
.cta-form-wrap .gform_footer,
.cta-form-wrap .gform_page_footer {
  margin-top: 32px;
  padding: 0;
}
.cta-form-wrap input[type="submit"], .cta-form-wrap button[type="submit"] {
	border: none;
	background: var(--bs-black);
	color: var(--bs-white);
	font-family: var(--bs-font-body);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	padding: 16px 40px;
	border-radius: 100px;
	cursor: pointer;
	transition: background 0.2s, color 0.2s;
}
.cta-form-wrap input[type="submit"]:hover,
.cta-form-wrap button[type="submit"]:hover {
  background: var(--bs-gold);
  color: var(--bs-black);
}
.cta-form-wrap {
	margin-top: 30px;
}


/*  FAQ   */
.cs-faq { padding: var(--bs-section-pad) 0; }
.cs-faq-grid {
	display: grid;
	grid-template-columns: 1fr 1.6fr;
	gap: 80px;
	align-items: start;
}
.cs-faq-heading {
	font-family: var(--bs-font-display);
	font-size: clamp(32px, 4vw, 52px);
	font-weight: 900;
	line-height: 1;
	letter-spacing: -0.025em;
	color: var(--bs-black);
	position: sticky;
	top: calc(var(--bs-nav-h, 65px) + 24px);
	margin-top: 0;
}
.cs-faq-heading em { font-style: italic; color: var(--bs-mid-grey); }

.cs-faq-item {
	border-bottom: 1px solid rgba(0,0,0,0.1);
}
.cs-faq-item:first-child {
	border-top: 1px solid rgba(0,0,0,0.1);
}
.cs-faq-question {
	width: 100%;
	background: none;
	border: none;
	text-align: left;
	padding: 24px 10px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 20px;
	cursor: pointer;
	font-family: var(--bs-font-body);
	font-size: 16px;
	font-weight: 500;
	color: var(--bs-black);
	line-height: 1.4;
	border-radius: 0;
}
.cs-faq-icon {
	flex-shrink: 0;
	width: 24px;
	height: 24px;
	border-radius: 50%;
	border: 1px solid rgba(0,0,0,0.2);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 16px;
	line-height: 1;
	transition: background 0.2s, border-color 0.2s, transform 0.3s;
}
.cs-faq-item.open .cs-faq-icon {
	background: var(--bs-black);
	border-color: var(--bs-black);
	color: var(--bs-white);
	transform: rotate(45deg);
}
.cs-faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.4s var(--bs-ease);
}
.cs-faq-item.open .cs-faq-answer {
	max-height: 600px;
}
.cs-faq-answer-inner {
	padding-bottom: 28px;
	font-size: 15px;
	font-weight: 300;
	line-height: 1.72;
	color: #555;
	padding: 0 10px 28px 10px;
}

/*  Other Courses   */
.cs-other { padding: var(--bs-section-pad) 0; }
.cs-other-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 48px;
	gap: 24px;
}
.cs-other-title {
	font-family: var(--bs-font-display);
	font-size: clamp(28px, 3.5vw, 48px);
	font-weight: 900;
	color: var(--bs-white);
	letter-spacing: -0.02em;
	margin: 0;
}
.cs-other-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 12px;
}
.cs-other-card {
	background: var(--bs-dark-grey);
	border: 1px solid rgba(255,255,255,0.07);
	border-radius: 12px;
	padding: 36px 30px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	min-height: 220px;
	text-decoration: none;
	color: inherit;
	transition: background 0.25s, border-color 0.25s, transform 0.25s var(--bs-ease);
}
.cs-other-card:hover {
	background: #1e1c1a;
	border-color: rgba(255,255,255,0.18);
	transform: translateY(-4px);
}
.cs-other-level {
	font-size: 10px;
	letter-spacing: 0.25em;
	text-transform: uppercase;
	color: var(--bs-mid-grey);
	margin-bottom: 12px;
}
.cs-other-name {
	font-family: var(--bs-font-display);
	font-size: clamp(20px, 2.2vw, 26px);
	font-weight: 700;
	color: var(--bs-white);
	line-height: 1.15;
	margin-bottom: 12px;
}
.cs-other-desc {
	font-size: 14px;
	font-weight: 300;
	color: var(--bs-warm-grey);
	line-height: 1.6;
	margin: 0 0 20px;
}
.cs-other-arrow {
	font-size: 18px;
	color: var(--bs-warm-grey);
	transition: transform 0.2s, color 0.2s;
}
.cs-other-card:hover .cs-other-arrow {
	transform: translateX(4px);
	color: var(--bs-white);
}

/*  Responsive   */
@media (max-width: 1024px) {
	.cs-curriculum-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
	.cs-hero-inner       { grid-template-columns: 1fr; min-height: auto; }
	.cs-hero-image       { height: 50vw; }
	.cs-hero-text        { padding: clamp(40px, 6vw, 72px) 5vw; }
	.cs-intro-grid       { grid-template-columns: 1fr; gap: 40px; }
	.cs-aside-card       { position: static; }
	.cs-faq-grid         { grid-template-columns: 1fr; gap: 32px; }
	.cs-faq-heading      { position: static; }
	.cs-other-grid       { grid-template-columns: 1fr; }
	.cs-hero-inner {
	min-height: 0;
	height: auto !important;
}
}
@media (max-width: 640px) {
	.cs-curriculum-grid  { grid-template-columns: 1fr; }
	.cs-stats            { flex-wrap: wrap; }
	.cs-stat             { flex: 0 0 50%; border-right: none; padding-right: 0; }
	.cs-details-table td:first-child { width: 120px; padding-right: 20px; }
}


/* =============================================================================
   ARCHIVE â€” Courses (bs_course)
   Version: 2.0.0 | CRD Media
   ============================================================================= */

/*  Header   */
.ac-hero {
	padding: clamp(120px, 14vw, 180px) 0 clamp(72px, 9vw, 120px);
}
.ac-hero-inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: flex-end;
}
.ac-hero-eyebrow {
	font-size: 11px;
	letter-spacing: 0.3em;
	text-transform: uppercase;
	color: var(--bs-gold);
	margin-bottom: 20px;
	opacity: 0;
	animation: bs-fadeUp 0.8s var(--bs-ease) 0.1s forwards;
}
.ac-hero-title {
	font-family: var(--bs-font-display);
	font-size: clamp(52px, 8vw, 110px);
	font-weight: 900;
	line-height: 0.9;
	letter-spacing: -0.03em;
	color: var(--bs-white);
	margin: 0;
	opacity: 0;
	animation: bs-fadeUp 0.9s var(--bs-ease) 0.2s forwards;
}
.ac-hero-title em {
	display: block;
	font-style: italic;
	color: var(--bs-gold);
}
.ac-hero-right {
	padding-bottom: 8px;
	opacity: 0;
	animation: bs-fadeUp 0.9s var(--bs-ease) 0.35s forwards;
}
.ac-hero-intro {
	font-size: clamp(15px, 1.6vw, 18px);
	font-weight: 300;
	line-height: 1.65;
	color: var(--bs-warm-grey);
	margin-bottom: 20px;
}
.ac-hero-note {
	font-size: 13px;
	font-weight: 300;
	color: var(--bs-mid-grey);
	line-height: 1.6;
}
.ac-hero-note strong {
	color: var(--bs-warm-grey);
	font-weight: 400;
}

/*  Course listing   */
.ac-courses {
	padding: 0 0 var(--bs-section-pad);
}

.ac-course-card {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0;
	border-top: 1px solid rgba(255,255,255,0.08);
	padding: clamp(48px, 6vw, 80px) 0;
	align-items: center;
	transition: border-color 0.3s;
}
.ac-course-card:hover {
	border-top-color: rgba(255,255,255,0.2);
}

/* First course â€” image right, content taller */
.ac-course-card--featured {
	grid-template-columns: 1.1fr 1fr;
}

/*  Course main content   */
.ac-course-main {
	padding-right: clamp(40px, 6vw, 80px);
	display: flex;
	flex-direction: column;
	gap: 0;
}

.ac-course-meta {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-bottom: 20px;
	flex-wrap: wrap;
}
.ac-course-level {
	display: inline-block;
	font-size: 10px;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--bs-black);
	background: var(--bs-gold);
	border-radius: 100px;
	padding: 4px 12px;
	font-weight: 500;
}
.ac-course-intake {
	font-size: 12px;
	font-weight: 300;
	color: var(--bs-mid-grey);
	letter-spacing: 0.04em;
}

.ac-course-title {
	font-family: var(--bs-font-display);
	font-size: clamp(32px, 4vw, 56px);
	font-weight: 900;
	line-height: 1;
	letter-spacing: -0.025em;
	margin: 0 0 20px;
}
.ac-course-title a {
	color: var(--bs-white);
	text-decoration: none;
	transition: color 0.2s;
}
.ac-course-title a:hover { color: var(--bs-gold); }

.ac-course-intro {
	font-size: clamp(14px, 1.4vw, 16px);
	font-weight: 300;
	line-height: 1.7;
	color: var(--bs-warm-grey);
	max-width: 520px;
	margin: 0 0 32px;
}

/* Stats */
.ac-course-stats {
	display: flex;
	gap: 32px;
	margin-bottom: 36px;
	flex-wrap: wrap;
}
.ac-course-stat {
	display: flex;
	flex-direction: column;
	gap: 4px;
}
.ac-stat-label {
	font-size: 10px;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--bs-mid-grey);
}
.ac-stat-value {
	font-size: 15px;
	font-weight: 500;
	color: var(--bs-white);
}

/* CTA link */
.ac-course-cta {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 13px;
	font-weight: 500;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--bs-gold);
	text-decoration: none;
	border-bottom: 1px solid rgba(201,169,110,0.3);
	padding-bottom: 3px;
	transition: color 0.2s, border-color 0.2s;
	align-self: flex-start;
}
.ac-course-cta:hover {
	color: var(--bs-white);
	border-color: rgba(255,255,255,0.3);
}

/*  Course image   */
.ac-course-image {
	position: relative;
	overflow: hidden;
	border-radius: 16px;
	background: var(--bs-dark-grey);
	aspect-ratio: 4/3;
}
.ac-course-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.5s var(--bs-ease);
}
.ac-course-card:hover .ac-course-img { transform: scale(1.03); }

/* No thumbnail â€” hide the image column so text takes full width */
.ac-course-card:not(:has(.ac-course-image)) {
	grid-template-columns: 1fr;
}
.ac-course-card:not(:has(.ac-course-image)) .ac-course-main {
	padding-right: 0;
	max-width: 720px;
}

.ac-empty {
	color: var(--bs-mid-grey);
	font-size: 16px;
	padding: 40px 0;
}

/*  Responsive   */
@media (max-width: 860px) {
	.ac-hero-inner {
		grid-template-columns: 1fr;
		gap: 32px;
	}
	.ac-course-card,
	.ac-course-card--featured {
		grid-template-columns: 1fr;
		gap: 32px;
	}
	.ac-course-main { padding-right: 0; }
	.ac-course-image { aspect-ratio: 16/9; }
}
@media (max-width: 560px) {
	.ac-course-stats { gap: 20px; }
}


/* =============================================================================
   ALUMNI WORK â€” page + single
   Version: 2.1.0 | CRD Media
   ============================================================================= */

.aw-page { padding-bottom: 0; }

/*  Filter bar   */
.aw-filter-bar {
	display: flex;
	align-items: center;
	gap: 8px;
	flex-wrap: wrap;
	padding-top: clamp(32px, 4vw, 52px);
	padding-bottom: clamp(32px, 4vw, 52px);
}
.aw-filter {
	font-family: var(--bs-font-body);
	font-size: 12px;
	font-weight: 400;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--bs-mid-grey);
	border: 1px solid rgba(255,255,255,0.12);
	border-radius: 100px;
	padding: 8px 20px;
	background: transparent;
	cursor: pointer;
	transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.aw-filter:hover,
.aw-filter.active {
	color: var(--bs-black);
	background: var(--bs-white);
	border-color: var(--bs-white);
}

/*  Featured poster   */
.aw-featured-wrap {
	margin-bottom: 12px;
	transition: opacity 0.3s, transform 0.3s;
}
.aw-featured-wrap.aw-hidden {
	display: none;
}

.aw-featured-card {
	display: flex;
	align-items: flex-end;
	position: relative;
	border-radius: 24px;
	overflow: hidden;
	background: var(--bs-dark-grey);
	aspect-ratio: 21/8;
	background-size: cover;
	background-position: center;
	text-decoration: none;
	transition: transform 0.5s var(--bs-ease);
}
.aw-featured-card:hover { transform: translateY(-5px); }

.aw-featured-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		to top,
		rgba(8,7,5,0.95) 0%,
		rgba(8,7,5,0.4)  50%,
		rgba(8,7,5,0.15) 100%
	);
}
.aw-featured-content {
	position: relative;
	z-index: 2;
	width: 100%;
	padding: clamp(24px, 4vw, 52px);
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 28px;
}
.aw-featured-tag {
	display: inline-block;
	font-size: 10px;
	font-weight: 500;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--bs-black);
	background: var(--bs-gold);
	border-radius: 100px;
	padding: 4px 14px;
	margin-bottom: 14px;
}
.aw-featured-title {
	font-family: var(--bs-font-display);
	font-size: clamp(32px, 5vw, 68px);
	font-weight: 900;
	line-height: 0.92;
	letter-spacing: -0.025em;
	color: var(--bs-white);
	margin: 0 0 12px;
}
.aw-featured-title em {
	font-style: italic;
	color: var(--bs-gold);
}
.aw-featured-meta {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
}
.aw-featured-meta span {
	font-size: 13px;
	font-weight: 300;
	color: var(--bs-warm-grey);
}
.aw-meta-dot { color: rgba(255,255,255,0.2) !important; }

.aw-featured-right {
	flex-shrink: 0;
	text-align: right;
}
.aw-featured-alumni-name {
	font-family: var(--bs-font-display);
	font-size: clamp(15px, 1.6vw, 22px);
	font-weight: 700;
	color: var(--bs-white);
	margin: 0 0 4px;
}
.aw-featured-alumni-role {
	font-size: 13px;
	font-weight: 300;
	color: var(--bs-warm-grey);
	margin: 0;
}

/*  Catalog grid   */
.aw-catalog { padding-bottom: var(--bs-section-pad); }

.aw-catalog-grid {
	--aw-cols: 3;
	--aw-gap: 12px;
	display: flex;
	flex-wrap: wrap;
	gap: var(--aw-gap);
	justify-content: left;
}

/*  Poster card   */
.aw-poster {
	flex: 0 0 calc( (100% - 2 * var(--aw-gap)) / var(--aw-cols) );
	position: relative;
	border-radius: 16px;
	overflow: hidden;
	background: var(--bs-dark-grey);
	aspect-ratio: 2/3;
	display: block;
	text-decoration: none;
	transition: transform 0.5s var(--bs-ease);
}
.aw-poster:hover { transform: translateY(-6px) scale(1.012); z-index: 2; }
.aw-poster.aw-hidden { display: none; }

.aw-poster-img,
.aw-poster-placeholder {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* Gradient â€” always visible, pushes hover overlay on top */
.aw-poster-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		to top,
		rgba(10,10,10,0.95) 0%,
		rgba(10,10,10,0.35) 40%,
		transparent 65%
	);
	z-index: 1;
}

/* Hover reveal */
.aw-poster-hover {
	position: absolute;
	inset: 0;
	background: rgba(10,10,10,0.72);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 20px;
	opacity: 0;
	transition: opacity 0.35s;
	z-index: 3;
}
.aw-poster:hover .aw-poster-hover { opacity: 1; }

.aw-hover-year {
	font-size: 11px;
	letter-spacing: 0.25em;
	text-transform: uppercase;
	color: var(--bs-gold);
	margin: 0 0 10px;
}
.aw-hover-title {
	font-family: var(--bs-font-display);
	font-size: clamp(16px, 2vw, 22px);
	font-weight: 700;
	color: var(--bs-white);
	line-height: 1.2;
	margin: 0 0 8px;
}
.aw-hover-alumni {
	font-size: 13px;
	font-weight: 300;
	color: var(--bs-warm-grey);
	margin: 0 0 14px;
}
.aw-hover-badge {
	display: inline-block;
	font-size: 10px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	font-weight: 500;
	color: var(--bs-black);
	background: var(--bs-gold);
	border-radius: 100px;
	padding: 4px 12px;
}

/* Always-visible title at bottom */
.aw-poster-info {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: clamp(14px, 2vw, 22px);
	z-index: 2;
	transition: opacity 0.3s;
}
.aw-poster:hover .aw-poster-info { opacity: 0; }

.aw-poster-title {
	font-family: var(--bs-font-display);
	font-size: clamp(13px, 1.4vw, 18px);
	font-weight: 700;
	color: var(--bs-white);
	line-height: 1.15;
	margin: 0 0 3px;
}
.aw-poster-alumni {
	font-size: 12px;
	font-weight: 300;
	color: var(--bs-warm-grey);
	margin: 0;
}

/*  Single work hero   */
.sw-hero {
	min-height: 80vh;
	display: flex;
	align-items: flex-end;
	position: relative;
	background-size: cover;
	background-position: center;
	padding-top: 65px;
}
.sw-hero-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		to top,
		rgba(8,7,5,0.97) 0%,
		rgba(8,7,5,0.45) 50%,
		rgba(8,7,5,0.2)  100%
	);
}
.sw-hero-inner {
	position: relative;
	z-index: 2;
	width: 100%;
	padding-bottom: clamp(48px, 6vw, 80px);
}
.sw-breadcrumb {
	font-size: 11px;
	letter-spacing: 0.25em;
	text-transform: uppercase;
	color: var(--bs-gold);
	margin-bottom: 20px;
	display: flex;
	align-items: center;
	gap: 8px;
}
.sw-breadcrumb a { color: inherit; text-decoration: none; opacity: 0.7; transition: opacity 0.2s; }
.sw-breadcrumb a:hover { opacity: 1; }
.sw-breadcrumb span { opacity: 0.3; }

.sw-hero-content {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 32px;
	flex-wrap: wrap;
}
.sw-hero-left { flex: 1; }

.sw-cat-tag {
	display: inline-block;
	font-size: 10px;
	font-weight: 500;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	border-radius: 100px;
	padding: 4px 12px;
	margin-right: 8px;
	margin-bottom: 16px;
	background: rgba(255,255,255,0.1);
	color: var(--bs-warm-grey);
}
.sw-cat-tag--award {
	background: rgba(201,169,110,0.2);
	color: var(--bs-gold);
}
.sw-title {
	font-family: var(--bs-font-display);
	font-size: clamp(40px, 6vw, 80px);
	font-weight: 900;
	line-height: 0.93;
	letter-spacing: -0.025em;
	color: var(--bs-white);
	margin: 0 0 16px;
}
.sw-title em { font-style: italic; color: var(--bs-gold); }
.sw-meta {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
}
.sw-meta span { font-size: 14px; font-weight: 300; color: var(--bs-warm-grey); }
.sw-dot { color: rgba(255,255,255,0.2) !important; }

.sw-hero-right { text-align: right; flex-shrink: 0; }
.sw-alumni-name {
	font-family: var(--bs-font-display);
	font-size: clamp(18px, 2vw, 26px);
	font-weight: 700;
	color: var(--bs-white);
	margin: 0 0 6px;
}
.sw-alumni-role {
	font-size: 14px;
	font-weight: 300;
	color: var(--bs-warm-grey);
	margin: 0;
}

/*  Related works   */
.sw-related { padding: var(--bs-section-pad) 0; }
.sw-related-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: clamp(32px, 4vw, 52px);
	gap: 24px;
}
.sw-related-title {
	font-family: var(--bs-font-display);
	font-size: clamp(28px, 3.5vw, 48px);
	font-weight: 900;
	letter-spacing: -0.02em;
	color: var(--bs-white);
	margin: 0;
}

/*  Responsive   */
@media (max-width: 900px) {
	.aw-featured-card { aspect-ratio: 4/3; }
	.aw-catalog-grid { --aw-cols: 2; }
	.sw-hero-content { flex-direction: column; align-items: flex-start; }
	.sw-hero-right { text-align: left; }
}
@media (max-width: 560px) {
	.aw-catalog-grid { --aw-cols: 2; --aw-gap: 8px; }
	.aw-featured-card { aspect-ratio: 3/2; border-radius: 16px; }
	.aw-featured-right { display: none; }
}


/* =============================================================================
   SPOTLIGHT â€” Our Alumni section (Alumni Work page + archive)
   Version: 2.0.0 | CRD Media
   ============================================================================= */

/*  Section   */
.sp-section {
	padding: var(--bs-section-pad) 0;
}

/*  Header   */
.sp-header {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	gap: 24px;
	margin-bottom: clamp(40px, 5vw, 64px);
	flex-wrap: wrap;
}
.sp-title {
	font-family: var(--bs-font-display);
	font-size: clamp(36px, 5vw, 64px);
	font-weight: 900;
	line-height: 0.95;
	letter-spacing: -0.025em;
	margin: 12px 0 0;
	color: var(--bs-black);
}
.sp-title em {
	display: block;
	font-style: italic;
	color: var(--bs-mid-grey);
}

/* Dark section variant (archive page) */
.sp-section--dark .sp-title        { color: var(--bs-white); }
.sp-section--dark .sp-title em     { color: var(--bs-gold); }
.sp-section--dark .section-eyebrow { color: var(--bs-gold); }
.sp-section--dark .sp-name         { color: var(--bs-white); }
.sp-section--dark .sp-credits      { color: var(--bs-warm-grey); }
.sp-section--dark .sp-photo        { background: var(--bs-dark-grey); }

/*  Grid â€” flexbox so last row centres automatically   */
.sp-grid {
	--sp-cols:4;
	--sp-gap: 16px;
	display: flex;
	flex-wrap: wrap;
	gap: var(--sp-gap);
	justify-content: left;
}

/*  Card   */
.sp-card {
	flex: 0 0 calc( (100% - 4 * var(--sp-gap)) / var(--sp-cols) );
}
.sp-card:hover .sp-photo { transform: translateY(-4px); }

.sp-photo {
	border-radius: 12px;
	overflow: hidden;
	background: var(--bs-off-white);
	aspect-ratio: 3/4;
	margin-bottom: 14px;
	position: relative;
	transition: transform 0.4s var(--bs-ease);
}
.sp-photo-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center top;
	display: block;
}

.sp-name {
	font-family: var(--bs-font-display);
	font-size: clamp(14px, 1.3vw, 18px);
	font-weight: 700;
	color: var(--bs-black);
	margin: 0 0 4px;
	line-height: 1.15;
}
.sp-credits {
	font-size: 12px;
	font-weight: 300;
	color: var(--bs-mid-grey);
	line-height: 1.5;
	margin: 0;
}

.sp-empty {
	color: var(--bs-mid-grey);
	font-size: 16px;
}

/*  Responsive   */
@media (max-width: 1100px) {
	.sp-grid { --sp-cols: 4; }
}
@media (max-width: 768px) {
	.sp-grid { --sp-cols: 2; }
	.sp-header { flex-direction: column; align-items: flex-start; gap: 16px; }
}
@media (max-width: 480px) {
	.sp-grid { --sp-cols: 2; --sp-gap: 12px; }
}

/* =============================================================================
   404 â€” Not Found
   Version: 2.0.0 | CRD Media
   ============================================================================= */

.nf-section {
	min-height: 100svh;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: clamp(100px, 12vw, 160px) 0 clamp(60px, 8vw, 100px);
	position: relative;
	overflow: hidden;
}

/* Giant background 404 number */
.nf-code {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -52%);
	font-family: var(--bs-font-display);
	font-size: clamp(200px, 28vw, 400px);
	font-weight: 900;
	line-height: 1;
	letter-spacing: -0.05em;
	color: transparent;
	-webkit-text-stroke: 1px rgba(255,255,255,0.05);
	white-space: nowrap;
	pointer-events: none;
	user-select: none;
}

/*  Main content   */
.nf-inner {
	position: relative;
	z-index: 1;
	margin-bottom: clamp(60px, 8vw, 100px);
}

.nf-eyebrow {
	font-size: 11px;
	letter-spacing: 0.3em;
	text-transform: uppercase;
	color: var(--bs-gold);
	margin-bottom: 20px;
	opacity: 0;
	animation: bs-fadeUp 0.7s var(--bs-ease) 0.1s forwards;
}

.nf-title {
	font-family: var(--bs-font-display);
	font-size: clamp(52px, 9vw, 120px);
	font-weight: 900;
	line-height: 0.92;
	letter-spacing: -0.03em;
	color: var(--bs-white);
	margin: 0 0 28px;
	opacity: 0;
	animation: bs-fadeUp 0.9s var(--bs-ease) 0.2s forwards;
}
.nf-title em {
	display: block;
	font-style: italic;
	color: var(--bs-gold);
}

.nf-body {
	font-size: clamp(15px, 1.6vw, 18px);
	font-weight: 300;
	line-height: 1.7;
	color: var(--bs-warm-grey);
	max-width: 480px;
	margin-bottom: 40px;
	opacity: 0;
	animation: bs-fadeUp 0.9s var(--bs-ease) 0.3s forwards;
}

.nf-actions {
	display: flex;
	gap: 14px;
	flex-wrap: wrap;
	opacity: 0;
	animation: bs-fadeUp 0.9s var(--bs-ease) 0.4s forwards;
}

/*  Quick links   */
.nf-links {
	position: relative;
	z-index: 1;
	border-top: 1px solid rgba(255,255,255,0.08);
	padding-top: clamp(32px, 4vw, 52px);
	opacity: 0;
	animation: bs-fadeUp 0.9s var(--bs-ease) 0.5s forwards;
}

.nf-links-label {
	font-size: 11px;
	letter-spacing: 0.25em;
	text-transform: uppercase;
	color: var(--bs-mid-grey);
	margin-bottom: 20px;
}

.nf-links-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 2px;
	background: rgba(255,255,255,0.06);
}

.nf-link-card {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px 24px;
	background: var(--bs-black);
	text-decoration: none;
	transition: background 0.2s;
}
.nf-link-card:hover { background: rgba(255,255,255,0.05); }
.nf-link-card:hover .nf-link-arrow { transform: translateX(4px); }

.nf-link-label {
	font-size: 14px;
	font-weight: 400;
	color: var(--bs-white);
}
.nf-link-arrow {
	font-size: 16px;
	color: var(--bs-gold);
	transition: transform 0.2s;
	flex-shrink: 0;
}

/*  Responsive   */
@media (max-width: 768px) {
	.nf-links-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
	.nf-links-grid { grid-template-columns: 1fr; }
	.nf-code { font-size: 52vw; }
}


/* =============================================================================
   BOW STREET MEETS â€” Archive  (alternating two-column rows)
   Version: 2.1.0 | CRD Media
   ============================================================================= */

.bsm-section {
	padding: var(--bs-section-pad) 0;
}

/*  Row   */
.bsm-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(40px, 6vw, 80px);
	align-items: center;
	padding: clamp(48px, 6vw, 72px) 0;
	border-top: 1px solid rgba(255, 255, 255, 0.07);
}

/* Flip: video left, text right */
.bsm-row--flip .bsm-text      { order: 2; }
.bsm-row--flip .bsm-video-col { order: 1; }

/*  Text side   */
.bsm-role {
	font-size: 10px;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--bs-gold);
	margin: 0 0 12px;
}
.bsm-name {
	font-family: var(--bs-font-display);
	font-size: clamp(28px, 3.5vw, 48px);
	font-weight: 900;
	line-height: 1;
	letter-spacing: -0.025em;
	color: var(--bs-white);
	margin: 0 0 20px;
}
.bsm-desc {
	font-size: clamp(14px, 1.4vw, 16px);
	font-weight: 300;
	line-height: 1.75;
	color: var(--bs-warm-grey);
	margin: 0;
	max-width: 520px;
}

/*  Video thumbnail   */
.bsm-thumb {
	position: relative;
	border-radius: 16px;
	overflow: hidden;
	background: var(--bs-dark-grey);
	aspect-ratio: 16/9;
	cursor: pointer;
}
.bsm-thumb-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.5s var(--bs-ease);
}
.bsm-thumb:hover .bsm-thumb-img { transform: scale(1.03); }

.bsm-thumb-placeholder { position: absolute; inset: 0; background: var(--bs-dark-grey); }

.bsm-thumb-overlay {
	position: absolute;
	inset: 0;
	background: rgba(10, 10, 10, 0.35);
	transition: background 0.3s;
}
.bsm-thumb:hover .bsm-thumb-overlay { background: rgba(10, 10, 10, 0.2); }

.bsm-play {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 64px;
	height: 64px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.14);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.25);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--bs-white);
	transition: background 0.25s, transform 0.25s, border-color 0.25s;
	z-index: 2;
}
.bsm-play svg { margin-left: 4px; }
.bsm-thumb:hover .bsm-play {
	background: var(--bs-gold);
	border-color: var(--bs-gold);
	transform: translate(-50%, -50%) scale(1.08);
}
.bsm-thumb:focus-visible { outline: 2px solid var(--bs-gold); outline-offset: 4px; }

/*  Lightbox   */
.bsm-lightbox {
	display: none;
	position: fixed;
	inset: 0;
	z-index: 9999;
	background: rgba(5, 5, 5, 0.96);
	align-items: center;
	justify-content: center;
}
.bsm-lightbox.is-open { display: flex; }

.bsm-lightbox-close {
	position: absolute;
	top: 24px;
	right: 28px;
	font-size: 36px;
	line-height: 1;
	color: var(--bs-warm-grey);
	background: none;
	border: none;
	cursor: pointer;
	transition: color 0.2s, transform 0.2s;
	z-index: 2;
}
.bsm-lightbox-close:hover { color: var(--bs-white); transform: scale(1.1); }

.bsm-lightbox-inner { width: min(90vw, 1100px); }
.bsm-lightbox-frame {
	position: relative;
	aspect-ratio: 16/9;
	background: #000;
	border-radius: 8px;
	overflow: hidden;
}
.bsm-lightbox-frame iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

/*  Responsive   */
@media (max-width: 860px) {
	.bsm-row,
	.bsm-row--flip {
		grid-template-columns: 1fr;
		gap: 28px;
	}
	/* Always: text first, video second on mobile */
	.bsm-text      { order: 1 !important; }
	.bsm-video-col { order: 2 !important; }

	.bsm-desc { max-width: 100%; }
}


/* =============================================================================
   PRESS â€” Archive + Single
   Version: 2.0.0 | CRD Media
   ============================================================================= */
 
.pr-eyebrow { margin-bottom: 36px; }
 
/*  Featured cards   */
.pr-featured-section { padding: var(--bs-section-pad) 0; }
 
.pr-featured-card {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0;
	border-radius: 20px;
	overflow: hidden;
	background: var(--bs-black);
	min-height: 480px;
	text-decoration: none;
	color: inherit;
	margin-bottom: 20px;
	transition: transform 0.3s var(--bs-ease);
}
.pr-featured-card:hover { transform: translateY(-4px); }
.pr-featured-card:last-child { margin-bottom: 0; }
 
.pr-featured-image {
	background: var(--bs-dark-grey);
	position: relative;
	overflow: hidden;
}
.pr-featured-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.5s var(--bs-ease);
}
.pr-featured-card:hover .pr-featured-img { transform: scale(1.03); }
 
.pr-featured-content {
	padding: clamp(36px, 5vw, 56px);
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	color: var(--bs-white);
}
 
.pr-pub-row {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 24px;
}
.pr-pub-name {
	font-family: var(--bs-font-display);
	font-size: 15px;
	font-weight: 700;
	color: var(--bs-white);
	letter-spacing: 0.01em;
}
.pr-pub-divider {
	width: 1px;
	height: 14px;
	background: rgba(255,255,255,0.2);
	flex-shrink: 0;
}
.pr-pub-date {
	font-size: 12px;
	font-weight: 300;
	color: var(--bs-mid-grey);
}
 
.pr-featured-headline {
	font-family: var(--bs-font-display);
	font-size: clamp(22px, 2.8vw, 36px);
	font-weight: 700;
	line-height: 1.15;
	letter-spacing: -0.01em;
	color: var(--bs-white);
	margin: 0 0 18px;
}
.pr-featured-excerpt {
	font-size: 14px;
	font-weight: 300;
	line-height: 1.72;
	color: var(--bs-warm-grey);
	flex: 1;
	margin: 0;
}
.pr-read-more {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-top: 32px;
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--bs-gold);
}
.pr-read-arrow {
	transition: transform 0.2s;
}
.pr-featured-card:hover .pr-read-arrow { transform: translateX(4px); }
 
/*  Press grid   */
.pr-grid-section { padding: var(--bs-section-pad) 0; }
 
.pr-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}
.pr-card {
	display: flex;
	flex-direction: column;
	border: 1px solid rgba(0,0,0,0.08);
	border-radius: 16px;
	overflow: hidden;
	background: var(--bs-white);
	text-decoration: none;
	color: inherit;
	transition: border-color 0.25s, transform 0.25s var(--bs-ease), box-shadow 0.25s;
}
.pr-card:hover {
	border-color: rgba(0,0,0,0.16);
	transform: translateY(-4px);
	box-shadow: 0 12px 40px rgba(0,0,0,0.07);
}
 
.pr-card-image {
	background: var(--bs-off-white);
	aspect-ratio: 16/9;
	overflow: hidden;
	position: relative;
}
.pr-card-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.5s var(--bs-ease);
}
.pr-card:hover .pr-card-img { transform: scale(1.03); }
 
.pr-card-body {
	padding: 24px 24px 28px;
	flex: 1;
	display: flex;
	flex-direction: column;
}
.pr-card-pub {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 12px;
}
.pr-card-pub-name {
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--bs-mid-grey);
}
.pr-card-pub-dot {
	width: 3px;
	height: 3px;
	border-radius: 50%;
	background: var(--bs-warm-grey);
	flex-shrink: 0;
}
.pr-card-pub-date {
	font-size: 11px;
	font-weight: 300;
	color: var(--bs-mid-grey);
}
.pr-card-headline {
	font-family: var(--bs-font-display);
	font-size: clamp(16px, 1.6vw, 20px);
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: -0.01em;
	color: var(--bs-black);
	margin: 0 0 10px;
}
.pr-card-excerpt {
	font-size: 13px;
	font-weight: 300;
	line-height: 1.65;
	color: #555;
	margin: 0 0 20px;
	flex: 1;
}
.pr-card-link {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--bs-black);
	margin-top: auto;
	transition: gap 0.2s;
}
.pr-card:hover .pr-card-link { gap: 10px; }
 
/*  Single hero   */
.sp-press-hero {
	padding: clamp(120px, 14vw, 180px) 0 clamp(72px, 9vw, 100px);
	position: relative;
}
.sp-press-hero--image {
	background-size: cover;
	background-position: center;
}
.sp-press-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		to right,
		rgba(8,7,5,0.92) 40%,
		rgba(8,7,5,0.6)  100%
	);
}
.sp-press-inner {
	position: relative;
	z-index: 1;
}
.sp-press-breadcrumb {
	font-size: 11px;
	letter-spacing: 0.25em;
	text-transform: uppercase;
	margin-bottom: clamp(40px, 6vw, 72px);
	display: flex;
	align-items: center;
	gap: 8px;
}
/* Light header (no image) */
.sp-press-hero:not(.sp-press-hero--image) .sp-press-breadcrumb { color: var(--bs-mid-grey); }
.sp-press-hero:not(.sp-press-hero--image) .sp-press-breadcrumb a { color: var(--bs-gold); }
/* Dark header (with image) */
.sp-press-hero--image .sp-press-breadcrumb { color: var(--bs-gold); }
.sp-press-hero--image .sp-press-breadcrumb a { color: rgba(201,169,110,0.7); }
.sp-press-breadcrumb a:hover { opacity: 1; color: var(--bs-gold) !important; }
.sp-press-breadcrumb span { opacity: 0.3; }
 
.sp-press-content { max-width: 720px; }
 
.sp-press-meta {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 24px;
	flex-wrap: wrap;
}
.sp-pub-name {
	font-family: var(--bs-font-display);
	font-size: 15px;
	font-weight: 700;
	letter-spacing: 0.01em;
}
.sp-pub-divider { width: 1px; height: 14px; background: rgba(0,0,0,0.2); flex-shrink: 0; }
.sp-press-hero--image .sp-pub-divider { background: rgba(255,255,255,0.2); }
.sp-pub-date, .sp-pub-type {
	font-size: 12px;
	font-weight: 300;
	color: var(--bs-mid-grey);
}
.sp-press-hero--image .sp-pub-name { color: var(--bs-white); }
.sp-press-hero--image .sp-pub-date,
.sp-press-hero--image .sp-pub-type { color: var(--bs-warm-grey); }
 
.sp-press-headline {
	font-family: var(--bs-font-display);
	font-size: clamp(28px, 4vw, 56px);
	font-weight: 900;
	line-height: 1.1;
	letter-spacing: -0.02em;
	margin: 0 0 24px;
	color: var(--bs-black);
}
.sp-press-hero--image .sp-press-headline { color: var(--bs-white); }
 
.sp-press-excerpt {
	font-size: clamp(15px, 1.5vw, 18px);
	font-weight: 300;
	line-height: 1.7;
	color: #444;
	margin: 0 0 36px;
	max-width: 640px;
}
.sp-press-hero--image .sp-press-excerpt { color: var(--bs-warm-grey); }
 
.sp-press-more-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 36px;
	gap: 24px;
}
 
/*  Responsive   */
@media (max-width: 900px) {
	.pr-featured-card { grid-template-columns: 1fr; min-height: auto; }
	.pr-featured-image { aspect-ratio: 16/9; }
	.pr-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
	.pr-grid { grid-template-columns: 1fr; }
}
 
/*  Press Enquiries section   */
.pr-enquiries {
	padding: var(--bs-section-pad) 0;
}
.pr-enquiries-header {
	text-align: center;
	margin-bottom: clamp(40px, 5vw, 60px);
}
.pr-enquiries-title {
	font-family: var(--bs-font-display);
	font-size: clamp(36px, 5.5vw, 72px);
	font-weight: 900;
	line-height: 0.95;
	letter-spacing: -0.025em;
	color: var(--bs-black);
	margin: 12px 0 20px;
}
.pr-enquiries-title em {
	display: block;
	font-style: italic;
	color: var(--bs-mid-grey);
}
.pr-enquiries-subtitle {
	font-size: clamp(14px, 1.4vw, 16px);
	font-weight: 300;
	line-height: 1.65;
	color: rgba(0,0,0,0.5);
	max-width: 480px;
	margin: 0 auto;
}
.pr-enquiries-cards {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
	max-width: 720px;
	margin: 0 auto;
}
.pr-contact-card {
	background: var(--bs-black);
	border-radius: 20px;
	padding: clamp(28px, 4vw, 44px);
	display: flex;
	flex-direction: column;
	gap: 0;
}
.pr-contact-region {
	font-size: 10px;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--bs-gold);
	margin: 0 0 20px;
}
.pr-contact-name {
	font-family: var(--bs-font-display);
	font-size: clamp(20px, 2.2vw, 26px);
	font-weight: 700;
	color: var(--bs-white);
	margin: 0 0 6px;
}
.pr-contact-org {
	font-size: 14px;
	font-weight: 300;
	color: var(--bs-warm-grey);
	margin: 0 0 24px;
}
.pr-contact-email {
	font-size: 14px;
	font-weight: 400;
	color: var(--bs-gold);
	text-decoration: underline;
	text-underline-offset: 3px;
	text-decoration-color: rgba(201,169,110,0.35);
	transition: text-decoration-color 0.2s;
	margin-top: auto;
}
.pr-contact-email:hover { text-decoration-color: var(--bs-gold); }
.pr-logos {
	padding: 30px 0;
	text-align: center;
	color: #;
	color: #fff;
	background: var(--bs-black);
} 
@media (max-width: 560px) {
	.pr-enquiries-cards { grid-template-columns: 1fr; max-width: 420px; }
}

/* =============================================================================
   TEAM PAGE
   Version: 2.0.0 | CRD Media
   ============================================================================= */

.tm-section {
	padding: var(--bs-section-pad) 0;
}
.tm-group-label {
	margin-bottom: clamp(36px, 4vw, 52px);
}

/*  Grid   */
.tm-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: clamp(40px, 5vw, 64px) clamp(24px, 3vw, 40px);
	align-items: start;
}

/*  Card   */
.tm-photo {
	border-radius: 16px;
	overflow: hidden;
	background: var(--bs-dark-grey);
	aspect-ratio: 3/4;
	margin-bottom: 20px;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}
.tm-photo-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center top;
	display: block;
}
.tm-photo-placeholder {
	color: rgba(255,255,255,0.15);
}

.tm-divider {
	width: 32px;
	height: 2px;
	background: var(--bs-gold);
	margin-bottom: 16px;
}

.tm-name {
	font-family: var(--bs-font-display);
	font-size: clamp(22px, 2.5vw, 32px);
	font-weight: 900;
	line-height: 1.05;
	letter-spacing: -0.02em;
	color: var(--bs-white);
	margin: 0 0 8px;
}

.tm-role {
	font-size: 10px;
	font-weight: 500;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--bs-gold);
	margin: 0 0 16px;
}

.tm-bio {
	font-size: 13px;
	font-weight: 300;
	line-height: 1.75;
	color: var(--bs-warm-grey);
}
.tm-bio p { margin: 0 0 12px; }
.tm-bio p:last-child { margin-bottom: 0; }
.tm-bio em, .tm-bio i { font-style: italic; }
.tm-bio strong { font-weight: 500; color: rgba(255,255,255,0.8); }

.tm-working {
	padding: 20px 0 var(--bs-section-pad) 0;
}
 
.tm-working-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: clamp(24px, 3vw, 40px);
}
 
.tm-working-img {
	width: 100%;
	display: block;
	border-radius: 8px;
	object-fit: cover;
}
 
.tm-working-caption {
	margin-top: 14px;
	font-size: 13px;
	font-weight: 300;
	line-height: 1.6;
	color: var(--bs-mid-grey);
	text-align: center;
}
 
@media (max-width: 768px) {
	.tm-working-grid { grid-template-columns: 1fr; gap: 32px; }
}
 

/*  Responsive   */
@media (max-width: 900px) {
	.tm-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
	.tm-grid { grid-template-columns: 1fr; }
}

/*  Team interlude (static section between first and second group)   */
.tm-interlude {
	padding: var(--bs-section-pad) 0;
}
.tm-interlude-inner {
	max-width: 720px;
}
.tm-interlude-title {
	font-family: var(--bs-font-display);
	font-size: clamp(40px, 6vw, 72px);
	font-weight: 900;
	line-height: 0.93;
	letter-spacing: -0.025em;
	color: var(--bs-black);
	margin: 12px 0 28px;
}
.tm-interlude-title em {
	display: block;
	font-style: italic;
	color: var(--bs-mid-grey);
}
.tm-interlude-text {
	font-size: clamp(15px, 1.5vw, 17px);
	font-weight: 300;
	line-height: 1.75;
	color: rgba(0, 0, 0, 0.55);
	margin: 0;
}

/* Full-width 16:9 image */
.tm-interlude-image {
	width: 100%;
	aspect-ratio: 16/7;
	overflow: hidden;
	margin-top: clamp(40px, 5vw, 64px);
	border-radius:16px;
}
.tm-interlude-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 50% 0%;
	display: block;
}

/* Body text below the image */
.tm-interlude-body {
	padding-top: clamp(32px, 4vw, 52px);
	font-size: clamp(15px, 1.5vw, 17px);
	font-weight: 300;
	line-height: 1.75;
	color: rgba(0, 0, 0, 0.6);

}
.tm-interlude-body p + p { margin-top: 18px; }
.tm-interlude-body strong { font-weight: 500; color: var(--bs-black); }

/* =============================================================================
   POLICIES PAGE
   Version: 2.0.0 | CRD Media
   ============================================================================= */

/*  Sticky nav   */
.pol-nav-wrap {
	background: var(--bs-white);
	border-bottom: 1px solid rgba(0, 0, 0, 0.08);
	position: sticky;
	top: var(--bs-nav-h, 65px);
	z-index: 90;
}
.pol-nav {
	display: flex;
	gap: 0;
	overflow-x: auto;
	scrollbar-width: none;
}
.pol-nav::-webkit-scrollbar { display: none; }

.pol-nav-item {
	flex-shrink: 0;
	padding: 18px 28px;
	font-family: var(--bs-font-body);
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--bs-mid-grey);
	border: none;
	border-bottom: 2px solid transparent;
	background: none;
	cursor: pointer;
	white-space: nowrap;
	transition: color 0.2s, border-color 0.2s;
	border-radius: 0;
}
.pol-nav-item:hover { color: var(--bs-black); }
.pol-nav-item.active {
	color: var(--bs-black);
	border-bottom-color: var(--bs-gold);
}

/*  Policy body   */
.pol-body { background: var(--bs-white); }

.pol-section {
	border-bottom: 1px solid rgba(0, 0, 0, 0.07);
	scroll-margin-top: 130px;
}
.pol-section:last-child { border-bottom: none; }
.pol-section--alt { background: var(--bs-off-white); }
.pol-section-inner {
	display: grid;
	grid-template-columns: 280px 1fr;
	gap: 80px;
	padding-top: clamp(64px, 8vw, 110px);
	align-items: start;
	padding-bottom: clamp(64px, 8vw, 110px);
}

/*  Sidebar   */
.pol-sidebar {
	position: sticky;
	top: calc( var(--bs-nav-h, 65px) + 65px + 24px ); /* nav + pol-nav + breathing room */
	align-self: start;
}
.pol-number {
	font-size: 11px;
	letter-spacing: 0.25em;
	text-transform: uppercase;
	color: var(--bs-gold);
	margin-bottom: 12px;
}
.pol-title {
	font-family: var(--bs-font-display);
	font-size: clamp(26px, 2.8vw, 36px);
	font-weight: 900;
	line-height: 1.05;
	letter-spacing: -0.02em;
	color: var(--bs-black);
	margin: 0 0 16px;
}
.pol-sidebar-desc {
	font-size: 13px;
	font-weight: 300;
	line-height: 1.65;
	color: var(--bs-mid-grey);
	margin: 0;
}

/*  Content blocks   */
.pol-block {
	padding: 32px 0;
	border-top: 1px solid rgba(0, 0, 0, 0.07);
}
.pol-block:first-child { border-top: none; padding-top: 0; }

.pol-block-title {
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--bs-black);
	margin: 0 0 14px;
}

.pol-block-body {
	font-size: 15px;
	font-weight: 300;
	line-height: 1.78;
	color: #444;
}
.pol-block-body p + p { margin-top: 14px; }
.pol-block-body strong { font-weight: 500; color: var(--bs-black); }
.pol-block-body a { color: var(--bs-gold); text-decoration: underline; text-underline-offset: 3px; }
.pol-block-body a:hover { color: var(--bs-gold-hover); }

/* Inline table (can be added via WYSIWYG) */
.pol-block-body table {
	width: 100%;
	border-collapse: collapse;
	margin-top: 16px;
	font-size: 14px;
}
.pol-block-body th {
	text-align: left;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--bs-mid-grey);
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
	padding: 10px 16px 10px 0;
}
.pol-block-body td {
	font-size: 14px;
	font-weight: 300;
	color: #444;
	border-bottom: 1px solid rgba(0, 0, 0, 0.06);
	padding: 14px 16px 14px 0;
	vertical-align: top;
}
.pol-block-body tr:last-child td { border-bottom: none; }

/*  Note block   */
.pol-note {
	background: var(--bs-off-white);
	border-left: 3px solid var(--bs-gold);
	border-radius: 0 8px 8px 0;
	padding: 18px 24px;
	margin-top: 20px;
	font-size: 14px;
	font-weight: 300;
	line-height: 1.65;
	color: #444;
}
.pol-note strong {
	font-weight: 500;
	color: var(--bs-black);
	display: block;
	margin-bottom: 6px;
}
.pol-section--alt .pol-note { background: var(--bs-white); }

/*  Downloads block   */
.pol-downloads {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.pol-download-item { display: flex; }
.pol-download-link {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 14px 18px;
	background: var(--bs-off-white);
	border: 1px solid rgba(0, 0, 0, 0.08);
	border-radius: 10px;
	text-decoration: none;
	color: var(--bs-black);
	font-size: 14px;
	font-weight: 400;
	width: 100%;
	transition: background 0.2s, border-color 0.2s;
}
.pol-download-link:hover {
	background: var(--bs-white);
	border-color: rgba(0, 0, 0, 0.15);
	color:#000;
	font-weight:500;
}
.pol-section--alt .pol-download-link { background: var(--bs-white); }
.pol-section--alt .pol-download-link:hover { background: var(--bs-off-white); }

.pol-download-icon {
	color: var(--bs-gold);
	flex-shrink: 0;
	display: flex;
	align-items: center;
}
.pol-download-label { flex: 1; }
.pol-download-ext {
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--bs-mid-grey);
	border: 1px solid rgba(0, 0, 0, 0.12);
	border-radius: 4px;
	padding: 2px 6px;
	flex-shrink: 0;
}

/*  Responsive   */
@media (max-width: 860px) {
	.pol-section-inner {
		grid-template-columns: 1fr;
		gap: 32px;
	}
	.pol-sidebar { position: static; }
	.pol-nav-item { padding: 14px 20px; }
}

/* =============================================================================
   LAYOUT â€” Image Block
   Version: 2.1.0 | CRD Media
   ============================================================================= */

.ib-section { padding: var(--bs-section-pad) 0; }

/*  Title â€” in text column for image+text modes   */
.ib-title {
	font-family: var(--bs-font-display);
	font-size: clamp(28px, 4vw, 52px);
	font-weight: 900;
	line-height: 1;
	letter-spacing: -0.025em;
	margin: 0 0 clamp(20px, 3vw, 32px);
	color: inherit;
}
.ib-title em { display: block; font-style: italic; }

/* Centred title for image-only */
.ib-title--centred {
	text-align: center;
	margin-bottom: clamp(24px, 3vw, 40px);
}

.bg--black .ib-title        { color: var(--bs-white); }
.bg--black .ib-title em     { color: var(--bs-gold); }
.bg--white .ib-title,
.bg--off-white .ib-title    { color: var(--bs-black); }
.bg--white .ib-title em,
.bg--off-white .ib-title em { color: var(--bs-mid-grey); }

/*  Image Only   */
.ib-image-wrap--full {
	width: 100%;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	border-radius: 12px;
}
.ib-image-wrap--full .ib-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.ib-caption {
	text-align: center;
	font-size: clamp(14px, 1.4vw, 16px);
	font-weight: 300;
	line-height: 1.65;
	margin: 20px auto 0;
	max-width: 680px;
}
.bg--black .ib-caption     { color: var(--bs-warm-grey); }
.bg--white .ib-caption,
.bg--off-white .ib-caption { color: rgba(0,0,0,0.55); }

/*  Image + Text grid   */
.ib-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(40px, 6vw, 40px);
	align-items: center;
}

/*
 * image-left:  col 1 = image, col 2 = text  (natural order, no change needed)
 * image-right: col 1 = text,  col 2 = image
 */
.ib-grid--image-right { grid-template-columns: 1fr 1fr; }
.ib-grid--image-right .ib-image-col { order: 2; }
.ib-grid--image-right .ib-text-col  { order: 1; }

.ib-image-col {
	border-radius: 12px;
	overflow: hidden;
	line-height: 0;
}
.ib-image-col .ib-img {
	width: 100%;
	display: block;
	object-fit: cover;
}

.ib-text-col { display: flex; flex-direction: column; justify-content: center; }

.ib-text { font-size: clamp(15px, 1.5vw, 17px); }

/*  Mobile â€” image always first   */
@media (max-width: 768px) {
	.ib-grid,
	.ib-grid--image-right {
		grid-template-columns: 1fr;
		gap: 28px;
	}
	/* Force image col to be first regardless of desktop order */
	.ib-grid .ib-image-col,
	.ib-grid--image-right .ib-image-col { order: 1 !important; }
	.ib-grid .ib-text-col,
	.ib-grid--image-right .ib-text-col  { order: 2 !important; }
}

/* =============================================================================
   VIDEO GALLERY â€” 1-col addition
   Version: 2.1.0 | CRD Media
   ============================================================================= */

.vg-grid--1-col { grid-template-columns: 1fr; }

.vg-grid--1-col .vg-thumb {
	aspect-ratio: 16 / 9;
	border-radius: 16px;
}

.vg-single-text {
	text-align: center;
	font-size: clamp(15px, 1.5vw, 17px);
	font-weight: 300;
	line-height: 1.7;
	max-width: 680px;
	margin: 32px auto 0;
}
.bg--black .vg-single-text     { color: var(--bs-warm-grey); }
.bg--white .vg-single-text,
.bg--off-white .vg-single-text { color: rgba(0,0,0,0.55); }



/* =============================================================================
   NAV â€” Mobile panel + Desktop dropdowns
   Version: 1.2.0 | CRD Media
   ============================================================================= */

/*  Hamburger   */
.nav-hamburger {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 4px;
	z-index: 10;
}
.nav-hamburger span {
	display: block;
	width: 24px;
	height: 2px;
	background: var(--bs-white);
	border-radius: 2px;
}

/*  Mobile overlay   */
.nav-mobile-overlay {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.65);
	z-index: 998;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.3s;
}
.nav-mobile-overlay.is-visible {
	opacity: 1;
	pointer-events: auto;
}

/*  Mobile panel   */
.nav-mobile-panel {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	width: min(320px, 88vw);
	background: var(--bs-black);
	z-index: 999;
	display: flex;
	flex-direction: column;
	padding: 28px 28px 40px;
	transform: translateX(100%);
	transition: transform 0.38s cubic-bezier(0.16, 1, 0.3, 1);
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
}
.nav-mobile-panel.is-open {
	transform: translateX(0);
}

.nav-mobile-close {
	align-self: flex-end;
	font-size: 32px;
	line-height: 1;
	background: none;
	border: none;
	color: var(--bs-warm-grey);
	cursor: pointer;
	padding: 0;
	margin-bottom: 32px;
	transition: color 0.2s;
}
.nav-mobile-close:hover { color: var(--bs-white); }

/*  Mobile nav links   */
.nav-mobile-links {
	list-style: none;
	margin: 0;
	padding: 0;
	flex: 1;
}
.nav-mobile-links li {
	border-bottom: 1px solid rgba(255, 255, 255, 0.07);
	position: relative;
}
.nav-mobile-links > li:first-child {
	border-top: 1px solid rgba(255, 255, 255, 0.07);
}
.nav-mobile-links > li > a {
	display: block;
	padding: 15px 40px 15px 0;
	font-family: var(--bs-font-display);
	font-size: clamp(20px, 5vw, 26px);
	font-weight: 700;
	color: var(--bs-white);
	text-decoration: none;
	transition: color 0.2s;
}
.nav-mobile-links > li > a:hover,
.nav-mobile-links .current-menu-item > a { color: var(--bs-gold); }

/* Submenu toggle button (injected by JS) */
.sub-toggle {
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	background: none;
	border: none;
	color: var(--bs-mid-grey);
	cursor: pointer;
	padding: 8px;
	line-height: 0;
}
.sub-toggle svg { display: block; transition: transform 0.25s; }
.menu-item-has-children.sub-open > .sub-toggle svg { transform: rotate(180deg); }

/* Mobile sub-menu */
.nav-mobile-links .sub-menu {
	list-style: none;
	margin: 0;
	padding: 0 0 8px 12px;
	display: none;
}
.menu-item-has-children.sub-open > .sub-menu { display: block; }
.nav-mobile-links .sub-menu a {
	display: block;
	padding: 8px 0;
	font-size: 14px;
	font-weight: 400;
	color: var(--bs-warm-grey);
	text-decoration: none;
	transition: color 0.2s;
}
.nav-mobile-links .sub-menu a:hover { color: var(--bs-white); }

/*  Mobile CTAs   */
.nav-mobile-ctas {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-top: 32px;
	padding-top: 24px;
	border-top: 1px solid rgba(255, 255, 255, 0.07);
}
.nav-mobile-ctas a {
	display: block;
	text-align: center;
	padding: 13px;
}

/*  Desktop dropdowns 
   IMPORTANT: We do NOT touch nav-links flex/gap/padding here â€” those stay in
   your existing style.css. We only add position context and dropdown styles.
    */

.nav-links .menu-item-has-children {
	position: relative;
}

/* Underline stays on hover of parent when submenu is open */
.nav-links .menu-item-has-children:hover > a,
.nav-links .menu-item-has-children:focus-within > a {
	/* preserve whatever underline/colour your existing hover state uses */
	text-decoration: underline;
	text-underline-offset: 4px;
}
.nav-links .menu-item-has-children > a::after {
	content: '';
	display: inline-block;
	width: 8px;
	height: 5px;
	margin-left: -5px;
	vertical-align: middle;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 5'%3E%3Cpath d='M1 1l3 3 3-3' stroke='rgba(255,255,255,0.6)' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-size: contain;
	transition: transform 0.2s;
	background-color: transparent;
	/* margin-left: 0; */
	position: absolute;
	left: 50%;
	width: 10px;
	bottom: -10px;
}
.nav-links .menu-item-has-children:hover > a::after,
.nav-links .menu-item-has-children:focus-within > a::after {
	transform: rotate(180deg);
}

/*
 * The submenu sits flush at top:100% with padding-top creating the visual gap.
 * This means the hover zone is continuous â€” no gap to jump across.
 */
.nav-links .sub-menu {
	position: absolute;
	top: 100%;
	left: 0;
	min-width: 200px;
	padding: 12px 8px 8px; /* 12px top pad = visual gap without hover gap */
	list-style: none;
	margin: 0;
	opacity: 0;
	pointer-events: none;
	transform: translateY(4px);
	transition: opacity 0.18s, transform 0.18s;
	z-index: 200;
}

/* Inner card so the padding area is transparent */
.nav-links .sub-menu::before {
	content: '';
	position: absolute;
	inset: 12px 0 0; /* top matches the padding-top */
	background: var(--bs-black);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 10px;
	z-index: -1;
}

.nav-links .menu-item-has-children:hover > .sub-menu,
.nav-links .menu-item-has-children:focus-within > .sub-menu {
	opacity: 1;
	pointer-events: auto;
	transform: translateY(0);
}

.nav-links .sub-menu a {
	position: relative;
	z-index: 1;
	display: block;
	padding: 9px 14px;
	font-size: 13px;
	font-weight: 400;
	color: var(--bs-warm-grey);
	text-decoration: none;
	border-radius: 6px;
	white-space: nowrap;
	transition: background 0.15s, color 0.15s;
}
.nav-links .sub-menu a:hover {
	background: rgba(255, 255, 255, 0.06);
	color: var(--bs-white);
}
.nav-links .sub-menu .current-menu-item a {
	color: var(--bs-gold);
}

/*  Responsive   */
@media (max-width: 900px) {
	.nav-links     { display: none !important; }
	.nav-ctas      { display: none !important; }
	.nav-hamburger { display: flex; }
}


/* =============================================================================
   CONTACT PAGE
   Version: 2.0.0 | CRD Media
   ============================================================================= */

/*  Main section   */
.cp-section {
	padding: clamp(100px, 12vw, 160px) 0 var(--bs-section-pad);
}

.cp-inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(60px, 8vw, 120px);
	align-items: start;
}

/*  Left â€” info   */
.cp-eyebrow { margin-bottom: 20px; }

.cp-title {
	font-family: var(--bs-font-display);
	font-size: clamp(48px, 7vw, 96px);
	font-weight: 900;
	line-height: 0.93;
	letter-spacing: -0.03em;
	color: var(--bs-white);
	margin: 0 0 clamp(28px, 4vw, 44px);
	opacity: 0;
	animation: bs-fadeUp 0.9s var(--bs-ease) 0.1s forwards;
}
.cp-title em {
	display: block;
	font-style: italic;
	color: var(--bs-gold);
}

.cp-intro {
	font-size: clamp(14px, 1.5vw, 16px);
	font-weight: 300;
	line-height: 1.75;
	color: var(--bs-warm-grey);
	margin-bottom: 40px;
	opacity: 0;
	animation: bs-fadeUp 0.9s var(--bs-ease) 0.2s forwards;
}
.cp-intro a { color: var(--bs-gold); text-decoration: underline; text-underline-offset: 3px; }
.cp-intro p + p { margin-top: 14px; }

/*  Contact details list   */
.cp-details {
	list-style: none;
	margin: 0 0 36px;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 14px;
	opacity: 0;
	animation: bs-fadeUp 0.9s var(--bs-ease) 0.3s forwards;
}
.cp-detail {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 14px;
	font-weight: 300;
	color: var(--bs-warm-grey);
}
.cp-detail-icon {
	color: var(--bs-gold);
	flex-shrink: 0;
	display: flex;
	align-items: center;
	width: 18px;
}
.cp-detail-link {
	color: var(--bs-warm-grey);
	text-decoration: none;
	transition: color 0.2s;
}
.cp-detail-link:hover { color: var(--bs-gold); }

/*  Social links   */
.cp-socials {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
	opacity: 0;
	animation: bs-fadeUp 0.9s var(--bs-ease) 0.4s forwards;
}
.cp-social-link {
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--bs-mid-grey);
	text-decoration: none;
	border-bottom: 1px solid rgba(255,255,255,0.15);
	padding-bottom: 2px;
	transition: color 0.2s, border-color 0.2s;
}
.cp-social-link:hover {
	color: var(--bs-white);
	border-color: var(--bs-white);
}

/*  Right â€” form   */
.cp-form-col {
	padding-top: clamp(20px, 4vw, 60px);
	opacity: 0;
	animation: bs-fadeUp 0.9s var(--bs-ease) 0.2s forwards;
}

.cp-form-title {
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--bs-gold);
	margin: 0 0 28px;
}

/* Gravity Forms override â€” match our style */
.cp-form-wrap .gform_wrapper {
	margin: 0;
}
.cp-form-wrap .gfield label.gfield_label {
	display: none; /* using placeholder instead */
}
.cp-form-wrap input[type="text"],
.cp-form-wrap input[type="email"],
.cp-form-wrap input[type="tel"],
.cp-form-wrap textarea,
.cp-form-wrap select {
	width: 100%;
	background: transparent;
	border: none;
	border-bottom: 1px solid rgba(255,255,255,0.15);
	border-radius: 0;
	color: var(--bs-white);
	font-family: var(--bs-font-body);
	font-size: 15px;
	font-weight: 300;
	padding: 14px 0;
	outline: none;
	transition: border-color 0.2s;
}
.cp-form-wrap input::placeholder,
.cp-form-wrap textarea::placeholder {
	color: rgba(255,255,255,0.3);
	font-weight: 300;
}
.cp-form-wrap input:focus,
.cp-form-wrap textarea:focus {
	border-bottom-color: var(--bs-gold);
}
.cp-form-wrap textarea {
	resize: none;
	min-height: 120px;
}
.cp-form-wrap .gfield {
	margin-bottom: 8px;
}
.cp-form-wrap .gform_footer,
.cp-form-wrap .gform_page_footer {
	margin-top: 32px;
	padding: 0;
}
.cp-form-wrap input[type="submit"],
.cp-form-wrap button[type="submit"] {
	border: none;
	background: var(--bs-white);
	color: var(--bs-black);
	font-family: var(--bs-font-body);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	padding: 16px 40px;
	border-radius: 100px;
	cursor: pointer;
	transition: background 0.2s, color 0.2s;
}
.cp-form-wrap input[type="submit"]:hover,
.cp-form-wrap button[type="submit"]:hover {
	background: var(--bs-gold);
	color: var(--bs-black);
}

.cp-form-notice {
	font-size: 13px;
	color: var(--bs-mid-grey);
	font-style: italic;
}

.cp-form-wrap .gform_wrapper.gravity-theme .ginput_complex label, .cp-form-wrap .gform_wrapper.gravity-theme legend, .cp-form-wrap .gform_heading {
     display:none;
}



/*  Map   */
.cp-map {
	width: 100%;
	height: clamp(300px, 40vw, 520px);
}
.cp-map iframe {
	display: block;
	width: 100%;
	height: 100%;
	filter: grayscale(20%);
}

/*  Responsive   */
@media (max-width: 860px) {
	.cp-inner {
		grid-template-columns: 1fr;
		gap: 52px;
	}
	.cp-form-col { padding-top: 0; }
	.cp-title { font-size: clamp(40px, 10vw, 72px); }
}

/* =============================================================================
   TEXT CTA BUTTON
   Version: 1.0.0 | CRD Media
   ============================================================================= */

.text-cta-button {
	display: inline-block;
	font-family: var(--bs-font-body);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	text-decoration: none;
	padding: 16px 40px;
	border-radius: 100px;
	border: 1px solid transparent;
	cursor: pointer;
	transition: background 0.2s, color 0.2s, border-color 0.2s;
}

/* On dark backgrounds — white pill */
.bg--black .text-cta-button {
	background: var(--bs-white);
	color: var(--bs-black);
	border-color: var(--bs-white);
}
.bg--black .text-cta-button:hover {
	background: var(--bs-gold);
	border-color: var(--bs-gold);
	color: var(--bs-black);
}

/* On light backgrounds — black pill */
.bg--white .text-cta-button,
.bg--off-white .text-cta-button {
	background: var(--bs-black);
	color: var(--bs-white);
	border-color: var(--bs-black);
}
.bg--white .text-cta-button:hover,
.bg--off-white .text-cta-button:hover {
	background: var(--bs-gold);
	border-color: var(--bs-gold);
	color: var(--bs-black);
}

/* =============================================================================
   LAYOUT — Carousel Showcase
   Version: 2.0.0 | CRD Media
   ============================================================================= */

.cs2-section {
	padding: var(--bs-section-pad) 0;
}

/* -- Main heading -------------------------------------------------------------  */
.cs2-heading {
	font-family: var(--bs-font-display);
	font-size: clamp(36px, 5.5vw, 72px);
	font-weight: 900;
	line-height: 0.95;
	letter-spacing: -0.025em;
	text-align: center;
	margin: 0 0 clamp(52px, 7vw, 88px);
}
.cs2-heading em { display: block; font-style: italic; }

.bg--black .cs2-heading        { color: var(--bs-white); }
.bg--black .cs2-heading em     { color: var(--bs-gold); }
.bg--white .cs2-heading,
.bg--off-white .cs2-heading    { color: var(--bs-black); }
.bg--white .cs2-heading em,
.bg--off-white .cs2-heading em { color: var(--bs-mid-grey); }

/* -- Each carousel row --------------------------------------------------------  */
.cs2-carousel {
	margin-bottom: clamp(48px, 6vw, 72px);
	position: relative;
}
.cs2-carousel:last-child { margin-bottom: 0; }

.cs2-carousel-title {
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	text-align: center;
	margin: 0 0 28px;
}
.bg--black .cs2-carousel-title        { color: var(--bs-gold); }
.bg--white .cs2-carousel-title,
.bg--off-white .cs2-carousel-title    { color: var(--bs-mid-grey); }

/* -- Slides -------------------------------------------------------------------  */
.cs2-slider { margin: 0 52px; } /* room for arrows */

.cs2-slide {
	padding: 0 8px;
	outline: none;
}
.cs2-img {
	width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
	display: block;
	border-radius: 10px;
}
.cs2-caption {
	margin-top: 12px;
	font-size: 13px;
	font-weight: 300;
	line-height: 1.55;
	text-align: center;
	font-style: italic;
}
.bg--black .cs2-caption        { color: var(--bs-warm-grey); }
.bg--white .cs2-caption,
.bg--off-white .cs2-caption    { color: var(--bs-mid-grey); }

/* -- Arrows — matches alumni block style --------------------------------------  */
.cs2-arrow {
	position: absolute;
	top: calc(50% - 22px); /* centre on image, not caption */
	z-index: 2;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: 50%;
	width: 44px;
	height: 44px;
	display: flex !important;
	align-items: center;
	justify-content: center;
	color: var(--bs-white);
	cursor: pointer;
	transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.bg--white .cs2-arrow,
.bg--off-white .cs2-arrow {
	background: rgba(0, 0, 0, 0.06);
	border-color: rgba(0, 0, 0, 0.12);
	color: var(--bs-black);
}
.cs2-arrow:hover {
	background: var(--bs-gold);
	border-color: var(--bs-gold);
	color: var(--bs-black);
}
.cs2-arrow--prev { left: -52px; }
.cs2-arrow--next { right: -52px; }

/* -- Responsive ----------------------------------------------------------------  */
@media (max-width: 560px) {
	.cs2-slider { margin: 0 48px; }
}