.ghs-slider {
	--ghs-gold: #c3912f;
	--ghs-gold-text: #865716;
	--ghs-ink: #151515;
	--ghs-cream: #f4efe6;
	--ghs-line: rgba(45, 35, 22, 0.18);
	--ghs-height: clamp(34rem, 68svh, 46rem);
	--ghs-nav-gutter: clamp(5.5rem, 8vw, 8rem);
	position: relative;
	width: 100%;
	max-width: 100%;
	min-height: var(--ghs-height);
	margin-inline: auto;
	background: var(--ghs-cream);
	color: var(--ghs-ink);
	font-size: 17px;
	overflow: hidden;
	isolation: isolate;
}

.ghs-viewport {
	opacity: 1;
	transition: opacity 520ms ease;
}

.ghs-slider.ghs-is-loading .ghs-viewport {
	opacity: 0;
	animation: ghs-content-failsafe 1ms linear 1.55s forwards;
}

.ghs-preloader {
	position: absolute;
	inset: 0;
	z-index: 50;
	min-height: var(--ghs-height);
	overflow: hidden;
	background: var(--ghs-cream);
	opacity: 1;
	visibility: visible;
	pointer-events: none;
	transition: opacity 420ms ease, visibility 0s linear 420ms;
	animation: ghs-preloader-failsafe 420ms ease 1.5s forwards;
}

.ghs-preloader::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(120deg, rgba(195, 145, 47, .12), transparent 58%);
}

.ghs-preloader img {
	display: block;
	width: 100%;
	height: var(--ghs-height);
	object-fit: cover;
	filter: saturate(.88);
	transform: scale(1.025);
}

.ghs-slider.is-ready .ghs-viewport { opacity: 1; animation: none; }
.ghs-slider.is-ready .ghs-preloader {
	opacity: 0;
	visibility: hidden;
	animation: none;
}

@keyframes ghs-preloader-failsafe {
	to { opacity: 0; visibility: hidden; }
}

@keyframes ghs-content-failsafe {
	to { opacity: 1; }
}

.ghs-placement-full,
.ghs-placement-splash {
	left: 50%;
	width: 100vw;
	max-width: none;
	margin-left: -50vw;
}

.ghs-placement-splash {
	--ghs-height: max(42rem, 100svh);
}

.ghs-height-compact { --ghs-height: clamp(28rem, 56svh, 38rem); }
.ghs-height-tall { --ghs-height: clamp(40rem, 82svh, 56rem); }
.ghs-placement-splash.ghs-height-compact { --ghs-height: max(38rem, 82svh); }
.ghs-placement-splash.ghs-height-tall { --ghs-height: max(46rem, 100svh); }

.ghs-viewport,
.ghs-slides {
	position: relative;
	min-height: var(--ghs-height);
}

.ghs-slide {
	--ghs-slide-bg: var(--ghs-cream);
	position: absolute;
	inset: 0;
	display: grid;
	min-height: var(--ghs-height);
	background: var(--ghs-slide-bg);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transform: translate3d(2.5%, 0, 0);
	transition: opacity 650ms ease, transform 750ms cubic-bezier(.22, .61, .36, 1), visibility 0s linear 750ms;
}

.ghs-slide.is-active {
	z-index: 2;
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: translate3d(0, 0, 0);
	transition-delay: 0s;
}

.ghs-theme-light { color: #fff; }
.ghs-theme-dark { color: var(--ghs-ink); }

.ghs-background {
	position: absolute;
	inset: -3%;
	z-index: -1;
	opacity: .24;
	pointer-events: none;
}

.ghs-background::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, var(--ghs-slide-bg), transparent 65%);
}

.ghs-background img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: saturate(.75);
}

.ghs-inner {
	position: relative;
	z-index: 1;
	width: min(calc(100% - (var(--ghs-nav-gutter) * 2)), 1320px);
	min-height: calc(var(--ghs-height) - 6.5rem);
	margin-inline: auto;
	padding-block: clamp(2.5rem, 5vw, 5rem) 6.5rem;
}

.ghs-split-inner,
.ghs-panels-inner {
	display: grid;
	grid-template-columns: minmax(17rem, .82fr) minmax(0, 1.7fr);
	align-items: center;
	gap: clamp(2rem, 4vw, 5rem);
}

.ghs-post-feature-inner {
	display: grid;
	grid-template-columns: minmax(16rem, .92fr) minmax(19rem, 1.08fr);
	align-items: center;
	gap: clamp(2rem, 4.5vw, 5rem);
}

.ghs-post-feature-inner .ghs-media-grid,
.ghs-post-feature-inner .ghs-inline-gallery {
	width: min(100%, 31rem);
	justify-self: end;
}

.ghs-post-feature-inner .ghs-media-card {
	width: 100%;
}

.ghs-post-feature-inner .ghs-media-card { aspect-ratio: 4 / 5; }
.ghs-post-feature-inner .ghs-media-caption { display: none; }
.ghs-post-feature-inner .ghs-copy { max-width: 38rem; }
.ghs-slider .ghs-post-feature-inner .ghs-heading,
.ghs-slider .ghs-post-feature-inner .ghs-heading span { font-size: clamp(34px, 2.5vw, 40px) !important; }

.ghs-align-right .ghs-split-inner .ghs-copy,
.ghs-align-right .ghs-panels-inner .ghs-copy { order: 2; }
.ghs-align-right .ghs-split-inner .ghs-media-grid,
.ghs-align-right .ghs-panels-inner .ghs-media-grid { order: 1; }

.ghs-copy {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	max-width: 38rem;
}

.ghs-align-center .ghs-copy,
.ghs-centered-inner .ghs-copy,
.ghs-logo-band-copy .ghs-copy {
	align-items: center;
	margin-inline: auto;
	text-align: center;
}

.ghs-align-right .ghs-copy {
	align-items: flex-end;
	margin-left: auto;
	text-align: right;
}

.ghs-eyebrow {
	display: inline-flex;
	align-items: center;
	flex-wrap: wrap;
	gap: .42rem;
	margin-bottom: .85rem;
	color: var(--ghs-gold-text);
	font-size: clamp(15px, 1.05vw, 17px);
	font-weight: 700;
	letter-spacing: .18em;
	line-height: 1.2;
	text-transform: uppercase;
}

.ghs-location-icon,
.ghs-calendar-icon {
	flex: 0 0 auto;
	width: 1.8rem !important;
	height: 1.8rem !important;
	fill: currentColor;
}

.ghs-calendar-icon {
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.65;
}

.ghs-heading {
	display: flex;
	flex-direction: column;
	gap: .05em;
	margin: 0;
	font-family: Inter, Arial, sans-serif;
	font-size: clamp(46px, 3.5vw, 62px);
	font-weight: 800;
	letter-spacing: -.045em;
	line-height: .94;
}

/* Theme-safe type scale: the site theme uses a reduced root rem value. */
.ghs-slider .ghs-heading,
.ghs-slider .ghs-heading span {
	font-size: clamp(34px, 2.5vw, 40px) !important;
	line-height: 1 !important;
}

.ghs-slider .ghs-eyebrow,
.ghs-slider .ghs-eyebrow span {
	font-size: 12px !important;
	line-height: 1.2 !important;
}

.ghs-font-serif .ghs-heading {
	font-family: Bodoni Moda, Didot, Georgia, serif;
	font-weight: 600;
	letter-spacing: -.025em;
}

.ghs-heading em {
	color: var(--ghs-gold-text);
	font-family: Bodoni Moda, Didot, Georgia, serif;
	font-size: 1.15em;
	font-weight: 500;
	letter-spacing: -.025em;
}

.ghs-font-bold .ghs-heading em { font-family: inherit; font-style: normal; font-weight: inherit; }
.ghs-font-serif .ghs-heading em { font-family: inherit; }

.ghs-body {
	max-width: 34rem;
	margin-top: 1.5rem;
	line-height: 1.58;
}

/* Keep theme typography from shrinking slider copy below a readable size. */
.ghs-slider .ghs-body {
	font-size: clamp(16px, 1vw, 18px) !important;
}

.ghs-slider .ghs-body p {
	margin: 0 0 .7em;
	font-size: inherit !important;
	line-height: inherit !important;
}

.ghs-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 2.9rem;
	margin-top: 1.35rem;
	padding: .7rem 1.6rem;
	border: 1px solid currentColor;
	border-radius: 999px;
	background: var(--ghs-ink);
	color: #fff;
	font-size: 1.3rem;
	font-weight: 700;
	letter-spacing: .08em;
	text-decoration: none;
	text-transform: uppercase;
	transition: background-color 200ms ease, color 200ms ease, transform 200ms ease;
}

.ghs-theme-light .ghs-button { background: #fff; color: var(--ghs-ink); }
.ghs-button:hover,
.ghs-button:focus-visible { background: var(--ghs-gold); color: #fff; transform: translateY(-2px); }

.ghs-media-grid {
	display: grid;
	align-items: stretch;
	gap: clamp(.8rem, 1.4vw, 1.5rem);
	min-width: 0;
}

.ghs-media-count-1 { grid-template-columns: minmax(0, 1fr); }
.ghs-media-count-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.ghs-media-count-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.ghs-media-count-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.ghs-media-card {
	position: relative;
	display: block;
	min-width: 0;
	overflow: hidden;
	border-radius: 0;
	background: #221c16;
	box-shadow: 0 20px 45px rgba(45, 27, 8, .14);
	color: #fff;
	text-decoration: none;
}

.ghs-split-inner .ghs-media-count-1 .ghs-media-card { aspect-ratio: 16 / 10; }
.ghs-split-inner .ghs-media-count-2 .ghs-media-card { aspect-ratio: 4 / 5; }
.ghs-split-inner .ghs-media-count-3 .ghs-media-card { aspect-ratio: 3 / 5; }
.ghs-split-inner .ghs-media-count-4 .ghs-media-card { aspect-ratio: 16 / 8.2; }

.ghs-panels-inner .ghs-media-count-1 .ghs-media-card { aspect-ratio: 16 / 10; }
.ghs-panels-inner .ghs-media-count-2 .ghs-media-card { aspect-ratio: 4 / 3; }
.ghs-panels-inner .ghs-media-count-3 .ghs-media-card { aspect-ratio: 4 / 5; }
.ghs-panels-inner .ghs-media-caption { display: none; }

.ghs-media-image,
.ghs-media-image img {
	display: block;
	width: 100%;
	height: 100%;
}

.ghs-media-image img {
	object-fit: cover;
	transform: scale(1.025) translate3d(calc(var(--ghs-px, 0) * 1px), calc(var(--ghs-py, 0) * 1px), 0);
	transition: transform 8s ease, filter 350ms ease;
}

.ghs-slide.is-active.ghs-motion-medium .ghs-media-image img,
.ghs-slide.is-active.ghs-motion-medium .ghs-full-image img { transform: scale(1.075) translate3d(calc(var(--ghs-px, 0) * 1px), calc(var(--ghs-py, 0) * 1px), 0); }
.ghs-slide.is-active.ghs-motion-subtle .ghs-media-image img,
.ghs-slide.is-active.ghs-motion-subtle .ghs-full-image img { transform: scale(1.045); }
.ghs-media-card:hover .ghs-media-image img { filter: brightness(1.06); }

.ghs-event-summary-glow,
.ghs-post-feature-glow {
	position: absolute;
	inset-block: 0;
	left: -12%;
	right: -12%;
	z-index: 0;
	pointer-events: none;
	background: linear-gradient(90deg, transparent 4%, var(--ghs-event-glow, #ddb978) 48%, var(--ghs-event-glow, #ddb978) 68%, transparent 100%);
	opacity: .46;
}

.ghs-event-summary-inner {
	display: grid;
	grid-template-columns: minmax(17rem, .82fr) minmax(0, 1.48fr);
	align-items: center;
	gap: clamp(2.5rem, 5vw, 6.5rem);
}

.ghs-event-summary-inner .ghs-copy {
	max-width: 31rem;
}

.ghs-event-summary-inner .ghs-heading {
	font-size: clamp(48px, 3.6vw, 64px);
}

.ghs-slider .ghs-event-summary-inner .ghs-heading,
.ghs-slider .ghs-event-summary-inner .ghs-heading span { font-size: clamp(36px, 2.7vw, 44px) !important; }

.ghs-event-summary-inner .ghs-media-grid {
	grid-template-columns: repeat(2, minmax(0, 1fr));
	align-items: center;
	width: min(100%, 64rem);
}

.ghs-event-summary-inner .ghs-media-card {
	transition: box-shadow 260ms ease, transform 260ms cubic-bezier(.2, .7, .2, 1);
}

.ghs-event-ratio-portrait .ghs-media-card { aspect-ratio: 4 / 5; }
.ghs-event-ratio-square .ghs-media-card { aspect-ratio: 1 / 1; }
.ghs-event-summary-inner .ghs-media-caption { display: none; }

.ghs-event-summary-inner .ghs-media-image img,
.ghs-post-feature-inner .ghs-media-image img {
	object-fit: contain;
	transform: none !important;
	transition: filter 260ms ease;
}

.ghs-expansion-grid-inner {
	display: grid;
	grid-template-areas: "media" "copy";
	grid-template-rows: minmax(0, 1fr) auto;
	gap: clamp(14px, 1.8vw, 24px);
	width: min(calc(100% - clamp(110px, 11vw, 155px)), 1320px);
	min-height: var(--ghs-height);
	padding: clamp(16px, 2.2vw, 28px) 0 5.4rem;
	box-sizing: border-box;
}

.ghs-slide.ghs-layout-expansion_grid {
	--ghs-ink: #1a1a1a;
	color: #1a1a1a;
}

.ghs-expansion-cta {
	grid-area: copy;
	width: 100%;
}

.ghs-expansion-grid-inner .ghs-copy {
	position: relative;
	align-items: center;
	width: 100%;
	max-width: none;
	margin: 0;
	padding: 0;
	background: transparent;
	box-shadow: none;
	text-align: center;
}

.ghs-slider .ghs-expansion-grid-inner .ghs-heading,
.ghs-slider .ghs-expansion-grid-inner .ghs-heading span { font-size: clamp(30px, 2.5vw, 38px) !important; }
.ghs-expansion-grid-inner .ghs-body { max-width: 42rem; margin-top: .3rem; }
.ghs-expansion-grid-inner .ghs-button { margin-top: .75rem; }
.ghs-expansion-cta.has-button .ghs-copy {
	display: grid;
	grid-template-areas: "eyebrow button" "heading button" "body button";
	grid-template-columns: minmax(0, 1fr) auto;
	column-gap: clamp(2rem, 5vw, 6rem);
	align-items: center;
	text-align: left;
}
.ghs-expansion-cta.has-button .ghs-eyebrow { grid-area: eyebrow; }
.ghs-expansion-cta.has-button .ghs-heading { grid-area: heading; }
.ghs-expansion-cta.has-button .ghs-body { grid-area: body; }
.ghs-expansion-cta.has-button .ghs-button { grid-area: button; align-self: center; margin: 0; }
.ghs-expansion-triptych { position: relative; grid-area: media; min-height: 0; }
.ghs-triptych-tabs { display: none; }
.ghs-triptych-panels {
	display: grid;
	grid-template-columns: minmax(0, .92fr) minmax(0, 1.18fr) minmax(0, .92fr);
	gap: clamp(5px, .7vw, 10px);
	height: 100%;
}
.ghs-triptych-panel { position: relative; min-width: 0; overflow: hidden; background: #211b15; }
.ghs-triptych-link { position: absolute; inset: 0; display: block; overflow: hidden; color: #fff; text-decoration: none; }
.ghs-triptych-media,
.ghs-triptych-item { position: absolute; inset: 0; }
.ghs-triptych-item { opacity: 0; transition: opacity 900ms ease; }
.ghs-triptych-item.is-active { z-index: 1; opacity: 1; }
.ghs-triptych-item .ghs-image,
.ghs-triptych-item .ghs-expansion-video {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transform: scale(1.015);
	transition: transform 5s ease, opacity 900ms ease;
}
.ghs-triptych-item.is-active .ghs-image,
.ghs-triptych-item.is-active .ghs-expansion-video { transform: scale(1.055); }
.ghs-triptych-caption {
	position: absolute;
	inset: auto 0 0;
	z-index: 3;
	display: flex;
	flex-direction: column;
	gap: .28rem;
	padding: clamp(4.5rem, 8vw, 7rem) clamp(18px, 2.2vw, 34px) clamp(22px, 3vw, 38px);
	background: linear-gradient(0deg, rgba(12, 10, 8, .82), transparent 100%);
	color: #fff;
}
.ghs-triptych-caption strong {
	font-family: "Bodoni Moda", Didot, Georgia, serif;
	font-size: clamp(22px, 2vw, 32px);
	font-weight: 500;
	letter-spacing: -.02em;
	line-height: 1;
}
.ghs-triptych-caption span { min-height: 1.2em; font-size: 13px; font-weight: 600; letter-spacing: .08em; line-height: 1.2; text-transform: uppercase; }
.ghs-expansion-video {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	pointer-events: none;
}
@media (hover: hover) and (pointer: fine) {
	.ghs-triptych-panel { transition: transform 300ms ease; }
	.ghs-triptych-panel:hover,
	.ghs-triptych-panel:focus-within { z-index: 2; transform: translateY(-6px); }
}

.ghs-desktop-render {
	position: absolute;
	inset: 0;
}

.ghs-mobile-render { display: none; }

.ghs-inline-gallery {
	position: relative;
	min-width: 0;
}

.ghs-gallery-items {
	position: relative;
	aspect-ratio: 4 / 5;
	overflow: hidden;
}

.ghs-gallery-item {
	position: absolute;
	inset: 0;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transform: translate3d(1.5%, 0, 0) scale(.985);
	transition:
		opacity 480ms ease,
		transform 620ms cubic-bezier(.22, .61, .36, 1),
		visibility 0s linear 620ms;
}

.ghs-gallery-item.is-active {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: translate3d(0, 0, 0) scale(1);
	transition-delay: 0s;
}
.ghs-gallery-item .ghs-media-card { width: 100%; aspect-ratio: 4 / 5; }

.ghs-gallery-nav {
	position: absolute;
	inset: 0;
	z-index: 4;
	display: block;
	pointer-events: none;
}

.ghs-gallery-arrow {
	position: absolute;
	top: 50%;
	display: grid;
	place-items: center;
	width: 2.1rem !important;
	height: 2.1rem !important;
	min-width: 2.1rem;
	min-height: 2.1rem;
	padding: 0 !important;
	border: 0 !important;
	border-radius: 50%;
	background: rgba(20, 18, 15, .58);
	box-shadow: 0 2px 10px rgba(0, 0, 0, .18);
	color: #fff;
	line-height: 0;
	appearance: none;
	cursor: pointer;
	pointer-events: auto;
	transform: translateY(-50%);
	transition: background-color 180ms ease, color 180ms ease, opacity 180ms ease;
}

.ghs-gallery-arrow[hidden] { display: none !important; }

.ghs-gallery-arrow svg { width: 1rem; height: 1rem; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 2.2; }
.ghs-gallery-prev { left: .75rem; margin: 0; }
.ghs-gallery-next { right: .75rem; margin: 0; }
.ghs-gallery-arrow:hover,
.ghs-gallery-arrow:focus-visible { background: rgba(20, 18, 15, .82); color: #fff; }

.ghs-gallery-dots {
	position: absolute;
	bottom: .75rem;
	left: 50%;
	display: flex;
	align-items: center;
	gap: .35rem;
	padding: .3rem .45rem;
	border-radius: 999px;
	background: rgba(20, 18, 15, .42);
	pointer-events: auto;
	transform: translateX(-50%);
}

.ghs-gallery-dot {
	width: .38rem;
	height: .38rem;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: rgba(255, 255, 255, .62);
	box-shadow: 0 1px 3px rgba(0, 0, 0, .22);
	cursor: pointer;
	transition: background-color 160ms ease, transform 160ms ease;
}

.ghs-gallery-dot.is-active { background: #fff; transform: scale(1.22); }

@media (hover: hover) and (pointer: fine) {
	.ghs-event-summary-inner .ghs-media-card:hover,
	.ghs-event-summary-inner .ghs-media-card:focus-visible {
		z-index: 2;
		box-shadow: 0 28px 55px rgba(45, 27, 8, .24);
		transform: translateY(-8px);
	}
}

.ghs-media-caption {
	position: absolute;
	inset: auto 0 0;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: .25rem;
	padding: clamp(1rem, 2vw, 1.7rem);
	background: linear-gradient(transparent, rgba(0, 0, 0, .88));
}

.ghs-media-label {
	align-self: flex-end;
	margin-bottom: auto;
	padding: .25rem .7rem;
	border: 1px solid var(--ghs-gold);
	border-radius: 999px;
	font-size: .68rem;
	font-weight: 700;
	letter-spacing: .1em;
}

.ghs-media-caption strong {
	font-family: Bodoni Moda, Didot, Georgia, serif;
	font-size: clamp(1rem, 1.8vw, 1.65rem);
	line-height: 1.1;
}

.ghs-media-caption small {
	font-size: .7rem;
	font-weight: 600;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.ghs-centered-inner {
	display: grid;
	grid-template-rows: auto minmax(0, 1fr);
	align-content: center;
	gap: clamp(1.4rem, 3vw, 2.8rem);
	padding-top: clamp(2rem, 4vw, 3.5rem);
}

.ghs-slider .ghs-centered-inner .ghs-heading,
.ghs-slider .ghs-centered-inner .ghs-heading span { font-size: clamp(34px, 2.6vw, 42px) !important; }
.ghs-centered-inner .ghs-body { margin-top: .85rem; }
.ghs-centered-inner .ghs-media-grid { width: min(100%, 1120px); margin-inline: auto; }
.ghs-centered-inner .ghs-media-count-1 .ghs-media-card { aspect-ratio: 16 / 6; }
.ghs-centered-inner .ghs-media-count-2 .ghs-media-card { aspect-ratio: 3 / 2; }
.ghs-centered-inner .ghs-media-count-3 .ghs-media-card { aspect-ratio: 4 / 5; }

.ghs-full-image {
	position: absolute;
	inset: 0;
	display: block;
	width: 100%;
	height: 100%;
	overflow: hidden;
	background: var(--ghs-slide-bg);
	color: inherit;
	text-decoration: none;
}

.ghs-full-image picture,
.ghs-full-image picture img {
	display: block;
	width: 100%;
	height: 100%;
}

.ghs-full-image img {
	transition: transform 10s ease;
}

.ghs-full-image.ghs-fit-cover picture,
.ghs-full-image.ghs-fit-cover picture img.ghs-image {
	width: 100% !important;
	height: 100% !important;
	max-width: none !important;
}

.ghs-full-image.ghs-fit-cover picture img.ghs-image { object-fit: cover !important; }
.ghs-full-image.ghs-fit-contain picture img.ghs-image { object-fit: contain; }

.ghs-image-badge {
	position: absolute;
	top: auto;
	bottom: 64px;
	left: 50%;
	z-index: 3;
	max-width: calc(100% - 8rem);
	padding: .55rem 1.35rem;
	border: 1px solid rgba(255, 255, 255, .32);
	border-radius: 999px;
	background: rgba(24, 18, 10, .78);
	box-shadow: 0 8px 24px rgba(0, 0, 0, .18);
	color: #fff;
	font-size: clamp(.72rem, .85vw, .92rem);
	font-weight: 700;
	letter-spacing: .1em;
	line-height: 1.2;
	text-align: center;
	text-transform: uppercase;
	transform: translateX(-50%);
	backdrop-filter: blur(9px);
}

.ghs-slider .ghs-image-badge { font-size: 1.2rem !important; }

.ghs-full-overlay {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	padding: clamp(2rem, 6vw, 7rem);
	background: linear-gradient(90deg, rgba(0, 0, 0, .72), rgba(0, 0, 0, .08) 68%);
}

.ghs-logo-band {
	position: absolute;
	left: 0;
	right: 0;
	z-index: 3;
	overflow: hidden;
	border-block: 1px solid rgba(134, 87, 22, .18);
	background: #fff;
	color: var(--ghs-ink);
}

.ghs-logo-band-top { top: clamp(1.8rem, 3.5vw, 3rem); }
.ghs-logo-band-bottom { bottom: clamp(4.8rem, 7vw, 6rem); }
.ghs-logo-band-copy { display: grid; place-items: center; min-height: var(--ghs-height); padding-block: 8.5rem 10rem; }
.ghs-logo-track {
	display: grid;
	grid-template-columns: clamp(190px, 19vw, 270px) minmax(0, 1fr);
	align-items: center;
	height: 6.5rem;
}
.ghs-logo-intro {
	position: relative;
	z-index: 4;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: clamp(14px, 1.7vw, 24px);
	height: 100%;
	padding-inline: clamp(24px, 3.5vw, 52px) clamp(14px, 1.8vw, 26px);
	background: #fff;
}
.ghs-logo-intro strong {
	color: var(--ghs-gold-text);
	font-family: "Bodoni Moda", Didot, Georgia, serif;
	font-size: clamp(19px, 1.65vw, 27px);
	font-style: normal;
	font-weight: 500;
	letter-spacing: -.01em;
	line-height: .95;
	white-space: nowrap;
}
.ghs-logo-slit {
	flex: 0 0 auto;
	width: 1px;
	height: 5.25rem;
	margin-right: -7px;
	background: var(--ghs-gold-text);
	transform: rotate(15deg);
}
.ghs-logo-window {
	display: flex;
	align-items: center;
	height: 100%;
	overflow: hidden;
	-webkit-mask-image: linear-gradient(90deg, transparent 0, #000 2.5rem, #000 calc(100% - 2rem), transparent 100%);
	mask-image: linear-gradient(90deg, transparent 0, #000 2.5rem, #000 calc(100% - 2rem), transparent 100%);
}
.ghs-logo-run { display: flex; flex: 0 0 auto; align-items: center; width: max-content; min-width: 200%; height: 100%; animation: ghs-logo-run 34s linear infinite; }
.ghs-logo-set { display: flex; flex: 0 0 auto; align-items: center; justify-content: space-around; gap: .5rem; min-width: 50%; height: 100%; padding-right: .5rem; }
.ghs-logo-band-bottom .ghs-logo-run { animation-direction: reverse; }
.ghs-slide:not(.is-active) .ghs-logo-run { animation-play-state: paused; }
.ghs-logo-band:hover .ghs-logo-run,
.ghs-logo-band:focus-within .ghs-logo-run { animation-play-state: paused; }

.ghs-logo {
	display: grid;
	place-items: center;
	align-content: center;
	width: clamp(8.5rem, 10.5vw, 10.5rem);
	height: 100%;
	padding: 0 1rem;
	background: #fff;
	color: var(--ghs-ink);
	text-decoration: none;
}

.ghs-logo img { display: block; width: 100%; height: 100%; max-height: 100%; object-fit: contain !important; }

@keyframes ghs-logo-run {
	to { transform: translateX(-50%); }
}

.ghs-logo-grid-inner {
	display: grid;
	grid-template-columns: minmax(18rem, .85fr) minmax(0, 1.25fr);
	align-items: center;
	gap: clamp(2rem, 6vw, 7rem);
}

.ghs-logo-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1rem;
}

.ghs-logo-grid .ghs-logo { width: auto; height: 6rem; border: 1px solid var(--ghs-line); border-radius: .5rem; }

.ghs-controls {
	position: absolute;
	inset: auto clamp(1rem, 4vw, 4rem) 1.2rem;
	z-index: 10;
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	gap: 1rem;
	pointer-events: none;
}

.ghs-pagination,
.ghs-counter,
.ghs-playback { pointer-events: auto; }

.ghs-pagination {
	display: flex;
	align-items: center;
	gap: .5rem;
	opacity: 0;
	transform: translateY(5px);
	transition: opacity 220ms ease, transform 220ms ease;
}

.ghs-slider:hover .ghs-pagination,
.ghs-slider:focus-within .ghs-pagination {
	opacity: 1;
	transform: translateY(0);
}
.ghs-dot {
	width: 2rem;
	height: 2.75rem;
	padding: 0;
	border: 0;
	background: transparent;
	cursor: pointer;
}
.ghs-dot::before {
	content: "";
	display: block;
	width: 100%;
	height: 2px;
	background: currentColor;
	opacity: .3;
	transition: opacity 200ms ease, background-color 200ms ease;
}
.ghs-dot.is-active::before { background: var(--ghs-gold); opacity: 1; }

.ghs-counter { font-size: .78rem; font-weight: 700; letter-spacing: .15em; }
.ghs-playback { display: flex; justify-content: flex-end; }

.ghs-edge-nav {
	position: absolute;
	inset: 50% clamp(.8rem, 2.2vw, 2.25rem) auto;
	z-index: 12;
	display: flex;
	justify-content: space-between;
	pointer-events: none;
	transform: translateY(-50%);
}

.ghs-edge-nav .ghs-arrow { pointer-events: auto; }

.ghs-arrow,
.ghs-pause {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: clamp(4.3rem, 5.2vw, 5.8rem);
	height: clamp(4.3rem, 5.2vw, 5.8rem);
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	color: var(--ghs-ink);
	font-size: 1.2rem;
	cursor: pointer;
	transition: background-color 200ms ease, color 200ms ease, transform 200ms ease;
}
.ghs-pause { width: 2.9rem; height: 2.9rem; border: 1px solid currentColor; border-radius: 50%; background: rgba(255,255,255,.55); font-size: .72rem; backdrop-filter: blur(10px); }
.ghs-arrow-icon { position: relative; z-index: 2; font-size: clamp(1.8rem, 2.5vw, 2.7rem); }

.ghs-arrow-preview {
	position: absolute;
	top: 50%;
	width: clamp(5.5rem, 7vw, 7.5rem);
	height: clamp(5.5rem, 7vw, 7.5rem);
	overflow: hidden;
	border: 0;
	border-radius: 0;
	background: var(--ghs-cream);
	box-shadow: 0 16px 35px rgba(0, 0, 0, .22);
	opacity: 0;
	pointer-events: none;
	transform: translateY(-50%) scale(.75);
	transition: opacity 220ms ease, transform 260ms cubic-bezier(.2, .7, .2, 1);
}

.ghs-arrow-prev .ghs-arrow-preview { left: calc(100% + .75rem); transform-origin: left center; }
.ghs-arrow-next .ghs-arrow-preview { right: calc(100% + .75rem); transform-origin: right center; }
.ghs-arrow-preview img { display: block; width: 100%; height: 100%; object-fit: cover; }

@media (hover: hover) and (pointer: fine) {
	.ghs-arrow:hover .ghs-arrow-preview.has-image,
	.ghs-arrow:focus-visible .ghs-arrow-preview.has-image {
		opacity: 1;
		transform: translateY(-50%) scale(1);
	}
}

.ghs-arrow:hover,
.ghs-arrow:focus-visible { background: transparent; color: var(--ghs-gold); transform: translateY(-2px); }

.ghs-pause:hover,
.ghs-pause:focus-visible { background: var(--ghs-gold); color: #fff; }

.ghs-image-placeholder { display: block; width: 100%; height: 100%; background: linear-gradient(135deg, #e6d5b3, #fbf8f1); }

.ghs-motion-medium .ghs-copy > *,
.ghs-motion-subtle .ghs-copy > * {
	opacity: 0;
	transform: translateY(18px);
}

.ghs-slide.is-active .ghs-copy > * {
	opacity: 1;
	transform: translateY(0);
	transition: opacity 650ms ease, transform 650ms ease;
}
.ghs-slide.is-active .ghs-copy > *:nth-child(2) { transition-delay: 90ms; }
.ghs-slide.is-active .ghs-copy > *:nth-child(3) { transition-delay: 170ms; }
.ghs-slide.is-active .ghs-copy > *:nth-child(4) { transition-delay: 240ms; }

@media (max-width: 1024px) {
	.ghs-split-inner,
	.ghs-panels-inner { grid-template-columns: minmax(15rem, .8fr) minmax(0, 1.35fr); gap: 2rem; }
	.ghs-post-feature-inner { grid-template-columns: minmax(14rem, .75fr) minmax(18rem, 1.25fr); gap: 2rem; }
	.ghs-split-inner .ghs-media-count-3 .ghs-media-card { aspect-ratio: 3 / 5.4; }
	.ghs-heading { font-size: clamp(34px, 3.8vw, 40px); }
	.ghs-event-summary-inner { grid-template-columns: minmax(15rem, .8fr) minmax(0, 1.35fr); gap: 2rem; }
}

@media (max-width: 767px) {
	.ghs-slider,
	.ghs-height-compact,
	.ghs-height-tall { --ghs-height: clamp(660px, 82svh, 700px); }
	.ghs-placement-splash,
	.ghs-placement-splash.ghs-height-compact,
	.ghs-placement-splash.ghs-height-tall { --ghs-height: max(700px, 92svh); }
	.ghs-inner { width: min(100% - 32px, 704px); min-height: calc(var(--ghs-height) - 64px); padding-block: 20px 68px; }
	.ghs-split-inner,
	.ghs-panels-inner,
	.ghs-post-feature-inner {
		grid-template-columns: 1fr;
		grid-template-rows: auto auto;
		align-content: center;
		gap: 20px;
	}
	.ghs-post-feature-inner .ghs-media-grid,
	.ghs-post-feature-inner .ghs-inline-gallery {
		width: min(68vw, 280px);
		align-self: center;
		justify-self: center;
	}
	.ghs-post-feature-inner .ghs-media-card { aspect-ratio: 4 / 5; }
	.ghs-post-feature-inner .ghs-copy {
		width: min(100%, 430px);
		justify-self: center;
	}
	.ghs-post-feature-inner .ghs-body p {
		display: -webkit-box;
		overflow: hidden;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 3;
	}
	.ghs-align-right .ghs-split-inner .ghs-copy,
	.ghs-align-right .ghs-split-inner .ghs-media-grid,
	.ghs-align-right .ghs-panels-inner .ghs-copy,
	.ghs-align-right .ghs-panels-inner .ghs-media-grid { order: initial; }
	.ghs-copy,
	.ghs-align-right .ghs-copy { align-items: flex-start; margin: 0; text-align: left; }
	.ghs-slider .ghs-heading,
	.ghs-slider .ghs-heading span { font-size: clamp(30px, 8vw, 36px) !important; line-height: 1 !important; }
	.ghs-slider .ghs-eyebrow,
	.ghs-slider .ghs-eyebrow span { margin-bottom: .65rem; font-size: 12px !important; line-height: 1.25 !important; letter-spacing: .1em; }
	.ghs-body { margin-top: .85rem; line-height: 1.55; }
	.ghs-slider .ghs-body,
	.ghs-slider .ghs-body p { font-size: 16px !important; }
	.ghs-button { min-height: 2.6rem; margin-top: .9rem; }
	.ghs-media-grid { gap: .65rem; }
	.ghs-split-inner .ghs-media-count-1 .ghs-media-card { aspect-ratio: 16 / 9; }
	.ghs-split-inner .ghs-media-count-2 .ghs-media-card { aspect-ratio: 4 / 5; }
	.ghs-split-inner .ghs-media-count-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); grid-template-rows: 1.2fr 1fr; }
	.ghs-split-inner .ghs-media-count-3 .ghs-media-card { aspect-ratio: 4 / 3; }
	.ghs-split-inner .ghs-media-count-3 .ghs-media-card:first-child { grid-column: 1 / -1; }
	.ghs-split-inner .ghs-media-count-4 .ghs-media-card { aspect-ratio: 4 / 3; }
	.ghs-panels-inner .ghs-media-count-1 .ghs-media-card { aspect-ratio: 16 / 9; }
	.ghs-panels-inner .ghs-media-count-2 .ghs-media-card { aspect-ratio: 4 / 3; }
	.ghs-panels-inner .ghs-media-count-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
	.ghs-panels-inner .ghs-media-count-3 .ghs-media-card { aspect-ratio: 4 / 5; }
	.ghs-media-caption { padding: .7rem; }
	.ghs-media-label { display: none; }
	.ghs-media-caption strong { font-size: .92rem; }
	.ghs-media-caption small { font-size: .58rem; }
	.ghs-centered-inner { align-content: center; gap: 1.15rem; padding-top: 1.6rem; }
	.ghs-centered-inner .ghs-media-count-1 .ghs-media-card { aspect-ratio: 16 / 8; }
	.ghs-centered-inner .ghs-media-count-2 { grid-template-columns: 1fr; }
	.ghs-centered-inner .ghs-media-count-2 .ghs-media-card { aspect-ratio: 16 / 7; }
	.ghs-centered-inner .ghs-media-count-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); grid-template-rows: 1.1fr 1fr; }
	.ghs-centered-inner .ghs-media-count-3 .ghs-media-card { aspect-ratio: 4 / 3; }
	.ghs-centered-inner .ghs-media-count-3 .ghs-media-card:first-child { grid-column: 1 / -1; }
	.ghs-event-summary-inner {
		grid-template-columns: 1fr;
		grid-template-rows: auto auto;
		align-content: center;
		gap: 22px;
		padding-top: 16px;
	}
	.ghs-event-summary-inner .ghs-copy { align-items: center; max-width: 34rem; margin-inline: auto; text-align: center; }
	.ghs-event-summary-inner .ghs-copy { padding-bottom: 0; }
	.ghs-slider .ghs-event-summary-inner .ghs-heading,
	.ghs-slider .ghs-event-summary-inner .ghs-heading span { font-size: clamp(32px, 8.5vw, 38px) !important; line-height: 1 !important; }
	.ghs-event-summary-inner .ghs-body { display: -webkit-box; max-width: 34rem; overflow: hidden; -webkit-box-orient: vertical; -webkit-line-clamp: 3; }
	.ghs-event-summary-inner .ghs-media-grid { width: 100%; align-self: start; gap: clamp(10px, 3vw, 16px); }
	.ghs-event-summary-inner .ghs-media-card { aspect-ratio: 4 / 5; border-radius: 0; }
	.ghs-event-summary-inner.ghs-event-ratio-square .ghs-media-card { aspect-ratio: 1 / 1; }
	.ghs-expansion-grid-inner {
		display: grid;
		grid-template-areas: "copy" "media";
		grid-template-rows: auto minmax(0, 1fr);
		gap: 14px;
		width: 100%;
		min-height: var(--ghs-height);
		padding: 18px 16px 72px;
	}
	.ghs-expansion-grid-inner .ghs-copy {
		display: flex;
		flex-direction: column;
		position: relative;
		top: auto;
		left: auto;
		z-index: 2;
		width: min(100%, 430px);
		padding: 0;
		justify-self: center;
		align-items: center;
		background: transparent;
		box-shadow: none;
		text-align: center;
		transform: none;
		backdrop-filter: none;
	}
	.ghs-expansion-cta { width: 100%; }
	.ghs-slider .ghs-expansion-grid-inner .ghs-heading,
	.ghs-slider .ghs-expansion-grid-inner .ghs-heading span { font-size: clamp(30px, 8vw, 36px) !important; }
	.ghs-expansion-grid-inner .ghs-body { margin-top: 7px; }
	.ghs-expansion-grid-inner .ghs-button { margin-top: 10px; }
	.ghs-expansion-cta.has-button .ghs-button { margin-top: 10px; }
	.ghs-expansion-triptych {
		position: relative;
		inset: auto;
		display: grid;
		grid-template-rows: auto minmax(0, 1fr);
		gap: 10px;
		min-height: 0;
	}
	.ghs-triptych-tabs {
		display: flex;
		gap: 14px;
		align-items: center;
		justify-content: center;
		overflow-x: auto;
		padding: 0 2px 5px;
		scrollbar-width: none;
	}
	.ghs-triptych-tabs::-webkit-scrollbar { display: none; }
	.ghs-triptych-tab {
		flex: 0 0 auto;
		padding: 3px 0 5px;
		border: 0;
		border-bottom: 1px solid transparent;
		background: transparent;
		color: #79501a;
		font-family: "Bodoni Moda", Didot, Georgia, serif;
		font-size: 15px;
		line-height: 1;
		cursor: pointer;
	}
	.ghs-triptych-tab.is-active { border-bottom-color: var(--ghs-gold); color: #1a1a1a; }
	.ghs-triptych-tab:focus-visible { outline: 2px solid var(--ghs-gold); outline-offset: 4px; }
	.ghs-triptych-panels { position: relative; display: block; height: 100%; min-height: 320px; }
	.ghs-triptych-panel { position: absolute; inset: 0; display: none; }
	.ghs-triptych-panel.is-mobile-active { display: block; }
	.ghs-triptych-panel:hover,
	.ghs-triptych-panel:focus-within { transform: none; }
	.ghs-triptych-caption { padding: 5rem 20px 22px; }
	.ghs-triptych-caption strong { font-size: clamp(25px, 7vw, 31px); }
	.ghs-triptych-caption span { font-size: 11px; }
	.ghs-expansion-video { background-position: center; }
	.ghs-event-summary-glow,
	.ghs-post-feature-glow { inset-block: 0; left: -18%; right: -18%; background: linear-gradient(90deg, transparent 0%, var(--ghs-event-glow, #ddb978) 45%, var(--ghs-event-glow, #ddb978) 72%, transparent 100%); opacity: .42; }
	.ghs-desktop-render { display: none; }
	.ghs-mobile-render { display: block; min-height: var(--ghs-height); color: var(--ghs-ink); }
	.ghs-mobile-render .ghs-button { background: var(--ghs-ink); color: #fff; }
	.ghs-full-overlay { align-items: flex-end; padding: 2rem 1.2rem 5.5rem; background: linear-gradient(0deg, rgba(0, 0, 0, .78), transparent 72%); }
	.ghs-image-badge { top: auto; bottom: 62px; max-width: calc(100% - 112px); padding: .45rem 1rem; }
	.ghs-logo-band { left: 0; right: 0; }
	.ghs-logo-band-top { top: 28px; }
	.ghs-logo-band-bottom { bottom: 82px; }
	.ghs-logo-band-copy { min-height: var(--ghs-height); padding-block: 8rem 9rem; }
	.ghs-logo-track { grid-template-columns: minmax(122px, 34vw) minmax(0, 1fr); height: 82px; }
	.ghs-logo-intro { justify-content: flex-end; gap: 11px; height: 100%; padding: 0 12px 0 20px; background: #fff; }
	.ghs-logo-intro strong { font-size: 17px; line-height: 1; }
	.ghs-logo-slit { width: 1px; height: 62px; margin: 0 -4px 0 0; transform: rotate(18deg); }
	.ghs-logo-window { -webkit-mask-image: linear-gradient(90deg, transparent, #000 18px, #000 calc(100% - 14px), transparent); mask-image: linear-gradient(90deg, transparent, #000 18px, #000 calc(100% - 14px), transparent); }
	.ghs-logo-run { min-width: 200%; }
	.ghs-logo-set { gap: 4px; min-width: 50%; padding-right: 4px; }
	.ghs-logo { width: 112px; height: 100%; padding: 0 10px; }
	.ghs-logo-grid-inner { grid-template-columns: 1fr; gap: 1.5rem; align-content: center; }
	.ghs-logo-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .65rem; }
	.ghs-logo-grid .ghs-logo { height: 4.5rem; }
	.ghs-controls { inset: auto 4.15rem .65rem; grid-template-columns: 1fr auto 1fr; }
	.ghs-counter { display: inline; font-size: .7rem; }
	.ghs-pagination { justify-content: flex-start; overflow: hidden; opacity: 1; transform: none; }
	.ghs-dot { display: none; width: 1.4rem; height: 2.5rem; }
	.ghs-dot.is-active { display: block; }
	.ghs-edge-nav { inset: auto .7rem .65rem; transform: none; }
	.ghs-edge-nav .ghs-arrow,
	.ghs-pause { width: 2.75rem; height: 2.75rem; }
	.ghs-arrow-preview { display: none; }
}

@media (prefers-reduced-motion: reduce) {
	.ghs-slide,
	.ghs-slide *,
	.ghs-media-image img,
	.ghs-full-image img,
	.ghs-logo-run {
		animation: none !important;
		transition-duration: 1ms !important;
	}
}
