:root {
	--hs-ink: #071d32;
	--hs-body: #263f55;
	--hs-muted: #557084;
	--hs-blue: #086a9a;
	--hs-blue-dark: #075073;
	--hs-aqua: #6edbe8;
	--hs-gold: #e0b34b;
	--hs-line: #d6e3e9;
	--hs-soft: #eef7f9;
	--hs-white: #ffffff;
	--hs-night: #051726;
	--hs-radius: 24px;
	--hs-shadow: 0 24px 70px rgba( 7, 29, 50, 0.15 );
}

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

html {
	scroll-behavior: smooth;
}

body.hs-site {
	background: var(--hs-white);
	color: var(--hs-body);
	font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: 17px;
	font-weight: 400;
	line-height: 1.7;
	margin: 0;
	overflow-x: hidden;
}

body.hs-site img {
	display: block;
	height: auto;
	max-width: 100%;
}

body.hs-site h1,
body.hs-site h2,
body.hs-site h3,
body.hs-site p,
body.hs-site figure,
body.hs-site dl,
body.hs-site ul {
	margin-top: 0;
}

body.hs-site h1,
body.hs-site h2,
body.hs-site h3 {
	color: var(--hs-ink);
	font-family: Georgia, "Times New Roman", serif;
	font-weight: 600;
	letter-spacing: -0.025em;
	line-height: 1.12;
	overflow-wrap: anywhere;
	text-wrap: balance;
}

body.hs-site h1 {
	font-size: clamp( 3.1rem, 6.2vw, 5.35rem );
}

body.hs-site h2 {
	font-size: clamp( 2rem, 3.5vw, 3.25rem );
}

body.hs-site h3 {
	font-size: clamp( 1.3rem, 1.9vw, 1.75rem );
}

body.hs-site p,
body.hs-site li,
body.hs-site dd {
	color: var(--hs-body);
	text-wrap: pretty;
}

body.hs-site a {
	color: var(--hs-blue-dark);
	text-decoration-thickness: 0.08em;
	text-underline-offset: 0.18em;
}

body.hs-site a:focus-visible,
body.hs-site summary:focus-visible {
	outline: 3px solid var(--hs-gold);
	outline-offset: 4px;
}

.hs-shell {
	margin-inline: auto;
	max-width: 1240px;
	padding-inline: clamp( 22px, 4vw, 52px );
	width: 100%;
}

.hs-skip-link {
	background: var(--hs-night);
	border-radius: 0 0 8px 0;
	color: var(--hs-white) !important;
	font-weight: 800;
	left: 0;
	padding: 11px 18px;
	position: fixed;
	top: -90px;
	z-index: 10000;
}

.hs-skip-link:focus {
	top: 0;
}

.hs-kicker {
	align-items: center;
	color: var(--hs-blue-dark) !important;
	display: flex;
	font-size: 0.75rem;
	font-weight: 850;
	gap: 0.65rem;
	letter-spacing: 0.18em;
	line-height: 1.4;
	margin-bottom: 1.25rem;
	text-transform: uppercase;
}

.hs-kicker::before {
	background: var(--hs-gold);
	content: "";
	height: 2px;
	width: 30px;
}

/* Header */
.hs-site-header {
	background: rgba( 255, 255, 255, 0.96 );
	border-bottom: 1px solid rgba( 7, 29, 50, 0.1 );
	position: sticky;
	top: 0;
	z-index: 1000;
	-webkit-backdrop-filter: blur( 14px );
	backdrop-filter: blur( 14px );
}

.hs-header-inner {
	align-items: center;
	display: flex;
	gap: clamp( 16px, 2.4vw, 34px );
	height: 88px;
	justify-content: space-between;
}

.hs-brand {
	align-items: center;
	display: inline-flex;
	flex: 0 0 auto;
	gap: 12px;
	text-decoration: none !important;
}

.hs-brand-mark,
.hs-footer-mark {
	align-items: center;
	background: linear-gradient( 135deg, var(--hs-ink), var(--hs-blue) );
	border-radius: 50%;
	color: var(--hs-white);
	display: inline-flex;
	font-family: Georgia, "Times New Roman", serif;
	font-size: 1rem;
	font-weight: 700;
	height: 46px;
	justify-content: center;
	letter-spacing: -0.05em;
	width: 46px;
}

.hs-brand-name {
	color: var(--hs-ink);
	font-family: Georgia, "Times New Roman", serif;
	font-size: 1.3rem;
	font-weight: 700;
	line-height: 1;
}

.hs-brand-name small {
	color: var(--hs-muted);
	display: block;
	font-family: Inter, ui-sans-serif, sans-serif;
	font-size: 0.55rem;
	font-weight: 800;
	letter-spacing: 0.14em;
	margin-top: 6px;
	text-transform: uppercase;
}

.hs-desktop-nav {
	align-items: center;
	display: flex;
	gap: clamp( 18px, 2.1vw, 30px );
	margin-left: auto;
}

.hs-desktop-nav a {
	color: var(--hs-body) !important;
	font-size: 0.89rem;
	font-weight: 750;
	position: relative;
	text-decoration: none;
}

.hs-desktop-nav a::after {
	background: var(--hs-blue);
	bottom: -10px;
	content: "";
	height: 2px;
	left: 0;
	position: absolute;
	transform: scaleX( 0 );
	transform-origin: left;
	transition: transform 180ms ease;
	width: 100%;
}

.hs-desktop-nav a:hover::after,
.hs-desktop-nav a[aria-current="page"]::after {
	transform: scaleX( 1 );
}

.hs-family-link {
	align-items: center;
	background: var(--hs-soft);
	border: 1px solid #b9d3dd;
	border-radius: 999px;
	color: var(--hs-ink) !important;
	display: inline-flex;
	flex: 0 0 auto;
	font-size: 0.82rem;
	font-weight: 800;
	gap: 7px;
	min-height: 44px;
	padding: 7px 15px;
	text-decoration: none !important;
	transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
	white-space: nowrap;
}

.hs-family-link small {
	color: var(--hs-blue-dark);
	font-size: 0.58rem;
	letter-spacing: 0.12em;
}

.hs-family-link b {
	font-size: 0.95rem;
}

.hs-family-link:hover {
	background: #e2f2f5;
	border-color: #8ab9c7;
	transform: translateY( -1px );
}

.hs-mobile-nav {
	display: none;
	position: relative;
}

.hs-mobile-nav summary {
	align-items: center;
	border: 1px solid var(--hs-line);
	border-radius: 50%;
	cursor: pointer;
	display: flex;
	flex-direction: column;
	gap: 4px;
	height: 44px;
	justify-content: center;
	list-style: none;
	width: 44px;
}

.hs-mobile-nav summary::-webkit-details-marker {
	display: none;
}

.hs-mobile-nav summary span {
	background: var(--hs-ink);
	height: 2px;
	width: 18px;
}

.hs-mobile-nav nav {
	background: var(--hs-white);
	border: 1px solid var(--hs-line);
	border-radius: 16px;
	box-shadow: var(--hs-shadow);
	display: grid;
	min-width: 230px;
	padding: 10px;
	position: absolute;
	right: 0;
	top: 56px;
}

.hs-mobile-nav nav a {
	border-radius: 9px;
	color: var(--hs-ink);
	font-weight: 750;
	padding: 10px 12px;
	text-decoration: none;
}

.hs-mobile-nav nav a[aria-current="page"],
.hs-mobile-nav nav a:hover {
	background: var(--hs-soft);
}

/* Shared actions */
.hs-actions {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 22px;
	margin-top: 34px;
}

.hs-button {
	align-items: center;
	background: var(--hs-ink);
	border: 1px solid var(--hs-ink);
	border-radius: 999px;
	color: var(--hs-white) !important;
	display: inline-flex;
	font-size: 0.9rem;
	font-weight: 850;
	justify-content: center;
	line-height: 1.2;
	min-height: 52px;
	padding: 13px 24px;
	text-decoration: none !important;
	transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.hs-button:hover {
	background: var(--hs-blue-dark);
	border-color: var(--hs-blue-dark);
	transform: translateY( -2px );
}

.hs-button-light {
	background: var(--hs-white);
	border-color: var(--hs-white);
	color: var(--hs-ink) !important;
}

.hs-button-light:hover {
	background: #e7f5f7;
	border-color: #e7f5f7;
}

.hs-text-link,
.hs-card-link {
	align-items: center;
	color: var(--hs-blue-dark) !important;
	display: inline-flex;
	font-size: 0.88rem;
	font-weight: 850;
	gap: 8px;
	text-decoration: none !important;
}

.hs-text-link span,
.hs-card-link span {
	transition: transform 180ms ease;
}

.hs-text-link:hover span,
.hs-card-link:hover span {
	transform: translateX( 4px );
}

.hs-text-link-light {
	color: #a9eef4 !important;
}

/* Home hero */
.hs-hero {
	background:
		radial-gradient( circle at 82% 18%, rgba( 110, 219, 232, 0.2 ), transparent 28% ),
		linear-gradient( 145deg, #f5fafb 0%, #e6f3f6 100% );
	background-color: #edf7f9;
	padding: clamp( 64px, 9vw, 122px ) 0 clamp( 72px, 9vw, 126px );
}

.hs-hero-grid {
	align-items: center;
	display: grid;
	gap: clamp( 54px, 8vw, 108px );
	grid-template-columns: minmax( 0, 1.08fr ) minmax( 340px, 0.82fr );
}

.hs-hero-copy h1 {
	margin-bottom: 18px;
}

.hs-hero-lead {
	color: var(--hs-ink) !important;
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp( 1.3rem, 2.1vw, 1.85rem );
	line-height: 1.42;
	margin-bottom: 20px;
	max-width: 720px;
}

.hs-hero-summary {
	font-size: 1.03rem;
	max-width: 660px;
}

.hs-hero-visual {
	margin: 0;
	position: relative;
}

.hs-portrait,
.hs-lifestyle-photo,
.hs-journey-photo,
.hs-news-index-photo,
.hs-article-photo,
.hs-image-placeholder {
	background: var(--hs-soft);
	border-radius: var(--hs-radius);
	box-shadow: var(--hs-shadow);
	object-fit: cover;
	width: 100%;
}

.hs-hero-photo {
	aspect-ratio: 4 / 5;
	object-position: center 42%;
}

.hs-image-placeholder {
	align-items: center;
	aspect-ratio: 4 / 5;
	color: var(--hs-blue-dark);
	display: flex;
	font-family: Georgia, "Times New Roman", serif;
	font-size: 5rem;
	justify-content: center;
}

.hs-hero-visual::before {
	border: 1px solid rgba( 8, 106, 154, 0.35 );
	border-radius: var(--hs-radius);
	content: "";
	inset: 22px -22px -22px 22px;
	position: absolute;
	z-index: -1;
}

.hs-hero-visual figcaption {
	background: var(--hs-night);
	border: 1px solid rgba( 255, 255, 255, 0.18 );
	border-radius: 14px;
	bottom: 24px;
	box-shadow: 0 16px 34px rgba( 0, 0, 0, 0.2 );
	left: -30px;
	padding: 15px 18px;
	position: absolute;
	-webkit-backdrop-filter: blur( 12px );
	backdrop-filter: blur( 12px );
}

.hs-hero-visual figcaption strong,
.hs-hero-visual figcaption span {
	display: block;
}

.hs-hero-visual figcaption strong {
	color: var(--hs-white);
	font-family: Georgia, "Times New Roman", serif;
	font-size: 1.1rem;
}

.hs-hero-visual figcaption span {
	color: #d7e7ed;
	font-size: 0.73rem;
}

.hs-signal {
	background: var(--hs-night);
	padding: 30px 0;
}

.hs-signal-grid {
	display: grid;
	grid-template-columns: repeat( 3, 1fr );
}

.hs-signal-grid > div {
	border-left: 1px solid rgba( 255, 255, 255, 0.16 );
	padding: 8px clamp( 20px, 4vw, 42px );
}

.hs-signal-grid > div:last-child {
	border-right: 1px solid rgba( 255, 255, 255, 0.16 );
}

.hs-signal-grid span,
.hs-signal-grid strong,
.hs-signal-grid p {
	display: block;
}

.hs-signal-grid span {
	color: #91e4ec;
	font-size: 0.68rem;
	font-weight: 850;
	letter-spacing: 0.14em;
}

.hs-signal-grid strong {
	color: var(--hs-white);
	font-family: Georgia, "Times New Roman", serif;
	font-size: 1.35rem;
	margin: 10px 0 4px;
}

.hs-signal-grid p {
	color: #b8ccd7 !important;
	font-size: 0.79rem;
	margin: 0;
}

/* Sections */
.hs-section {
	background: var(--hs-white);
	padding: clamp( 78px, 10vw, 132px ) 0;
}

.hs-section-soft {
	background: var(--hs-soft);
}

.hs-section-heading {
	max-width: 810px;
}

.hs-section-heading h2 {
	margin-bottom: 24px;
}

.hs-heading-row {
	align-items: end;
	display: flex;
	justify-content: space-between;
	max-width: none;
}

.hs-heading-row > div {
	max-width: 730px;
}

.hs-heading-row > p {
	font-size: 0.95rem;
	max-width: 380px;
}

.hs-intro-grid,
.hs-profile-grid,
.hs-source-grid,
.hs-proof-grid,
.hs-contact-grid,
.hs-lifestyle-grid {
	display: grid;
	gap: clamp( 48px, 8vw, 112px );
	grid-template-columns: minmax( 0, 0.82fr ) minmax( 0, 1.18fr );
}

.hs-prose p {
	margin-bottom: 21px;
}

.hs-prose-large p {
	font-size: clamp( 1.07rem, 1.5vw, 1.24rem );
}

.hs-section-photo {
	background: var(--hs-ink);
}

.hs-photo-story {
	align-items: center;
	display: grid;
	gap: clamp( 52px, 8vw, 110px );
	grid-template-columns: minmax( 0, 1.1fr ) minmax( 320px, 0.72fr );
}

.hs-photo-story figure {
	margin: 0;
}

.hs-lifestyle-photo {
	aspect-ratio: 16 / 10;
	box-shadow: none;
	object-position: center;
}

.hs-photo-story h2,
.hs-photo-story > div > p:not(.hs-kicker) {
	color: var(--hs-white) !important;
}

.hs-photo-story > div > p:not(.hs-kicker) {
	color: #c8dce5 !important;
}

.hs-photo-story .hs-kicker,
.hs-proof .hs-kicker,
.hs-section-dark .hs-kicker,
.hs-cta .hs-kicker {
	color: #a9eef4 !important;
}

.hs-card-grid {
	display: grid;
	gap: 22px;
	grid-template-columns: repeat( 4, 1fr );
	margin-top: 48px;
}

.hs-card-grid article,
.hs-venture-card {
	background: var(--hs-white);
	border: 1px solid var(--hs-line);
	border-radius: var(--hs-radius);
	display: flex;
	flex-direction: column;
	min-height: 300px;
	overflow: hidden;
	padding: clamp( 28px, 4vw, 42px );
	position: relative;
	transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.hs-venture-card {
	color: var(--hs-body) !important;
	text-decoration: none !important;
}

.hs-card-grid article > span,
.hs-venture-card > span,
.hs-value-grid article > span,
.hs-principle-grid article > span {
	color: var(--hs-blue-dark);
	font-size: 0.7rem;
	font-weight: 850;
	letter-spacing: 0.14em;
}

.hs-card-grid h3 {
	margin: 48px 0 18px;
}

.hs-card-grid p {
	font-size: 0.93rem;
	margin-bottom: 24px;
}

.hs-venture-card:hover {
	border-color: rgba( 8, 106, 154, 0.45 );
	box-shadow: 0 22px 52px rgba( 7, 29, 50, 0.13 );
}

.hs-card-action {
	align-items: center;
	color: var(--hs-blue-dark);
	display: inline-flex;
	font-size: 0.82rem;
	font-weight: 850;
	gap: 8px;
	margin-top: auto;
}

.hs-card-action span {
	transition: transform 180ms ease;
}

.hs-venture-card:hover .hs-card-action span {
	transform: translate( 3px, -3px );
}

.hs-proof {
	background: var(--hs-ink);
}

.hs-proof-grid h2,
.hs-proof-grid > div > p:not(.hs-kicker) {
	color: var(--hs-white) !important;
}

.hs-proof-grid > div > p:not(.hs-kicker) {
	color: #c6d9e2 !important;
}

.hs-proof-list,
.hs-source-list {
	border-top: 1px solid rgba( 255, 255, 255, 0.2 );
}

.hs-proof-list a {
	border-bottom: 1px solid rgba( 255, 255, 255, 0.2 );
	display: grid;
	grid-template-columns: 1fr auto;
	padding: 25px 3px;
	text-decoration: none;
}

.hs-proof-list span {
	color: #98e7ef;
	font-size: 0.69rem;
	font-weight: 850;
	grid-column: 1 / span 2;
	letter-spacing: 0.12em;
}

.hs-proof-list strong {
	color: var(--hs-white);
	font-family: Georgia, "Times New Roman", serif;
	font-size: 1.18rem;
	padding-right: 18px;
}

.hs-proof-list em {
	color: #c1d4de;
	font-size: 0.78rem;
	font-style: normal;
}

/* News */
.hs-news-card {
	background: var(--hs-white);
	border: 1px solid var(--hs-line);
	border-radius: var(--hs-radius);
	color: var(--hs-body) !important;
	display: grid;
	grid-template-columns: minmax( 260px, 0.78fr ) minmax( 0, 1.22fr );
	margin-top: 42px;
	overflow: hidden;
	text-decoration: none !important;
	transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.hs-news-card:hover {
	border-color: rgba( 8, 106, 154, 0.4 );
	box-shadow: 0 24px 58px rgba( 7, 29, 50, 0.13 );
}

.hs-news-image img,
.hs-news-image .hs-image-placeholder {
	border-radius: 0;
	box-shadow: none;
	height: 100%;
	min-height: 360px;
	object-fit: cover;
	width: 100%;
}

.hs-news-card > div:last-child {
	padding: clamp( 30px, 5vw, 54px );
}

.hs-news-card time {
	color: var(--hs-blue-dark);
	font-size: 0.7rem;
	font-weight: 850;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.hs-news-card h2,
.hs-news-card h3 {
	margin: 14px 0 17px;
}

.hs-news-card h2 {
	font-size: clamp( 1.85rem, 3vw, 2.6rem );
}

.hs-news-card h3,
.hs-news-card h2 {
	color: var(--hs-ink);
}

.hs-news-card p {
	color: var(--hs-body) !important;
}

.hs-news-card:hover .hs-card-link span {
	transform: translateX( 4px );
}

.hs-news-note {
	background: var(--hs-night);
	padding: 30px 0;
	text-align: center;
}

.hs-news-note strong {
	color: var(--hs-white);
	font-family: Georgia, "Times New Roman", serif;
	font-size: 1.22rem;
}

.hs-news-note p {
	color: #bed1db !important;
	font-size: 0.86rem;
	margin: 4px 0 0;
}

/* Inner pages */
.hs-page-hero {
	background: linear-gradient( 135deg, #edf7f9, #f9fbfb );
	background-color: #f1f8f9;
	padding: clamp( 70px, 9vw, 122px ) 0;
}

.hs-page-hero-grid {
	align-items: center;
	display: grid;
	gap: clamp( 50px, 8vw, 104px );
	grid-template-columns: minmax( 0, 1.08fr ) minmax( 300px, 0.72fr );
}

.hs-page-hero h1 {
	font-size: clamp( 2.75rem, 5.4vw, 4.85rem );
	margin-bottom: 24px;
}

.hs-page-lead {
	color: var(--hs-body) !important;
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp( 1.2rem, 1.8vw, 1.55rem );
	line-height: 1.5;
	max-width: 900px;
}

.hs-page-hero figure {
	margin: 0;
}

.hs-about-photo {
	aspect-ratio: 4 / 5;
	object-position: center 38%;
}

.hs-page-hero-simple .hs-shell {
	max-width: 1120px;
}

.hs-profile-facts {
	background: var(--hs-ink);
	border-radius: var(--hs-radius);
	padding: clamp( 30px, 4vw, 46px );
}

.hs-profile-facts .hs-kicker {
	color: #9eeaf1 !important;
}

.hs-profile-facts dl {
	margin: 0;
}

.hs-profile-facts dl > div {
	border-top: 1px solid rgba( 255, 255, 255, 0.16 );
	padding: 18px 0;
}

.hs-profile-facts dt {
	color: #abc2ce;
	font-size: 0.68rem;
	font-weight: 850;
	letter-spacing: 0.13em;
	text-transform: uppercase;
}

.hs-profile-facts dd {
	color: var(--hs-white) !important;
	font-size: 1rem;
	font-weight: 750;
	margin: 5px 0 0;
}

.hs-profile-facts a {
	color: #a9eef4 !important;
}

.hs-value-grid {
	display: grid;
	grid-template-columns: repeat( 4, 1fr );
	margin-top: 46px;
}

.hs-value-grid article {
	border-left: 1px solid var(--hs-line);
	padding: 12px clamp( 20px, 3vw, 34px ) 28px;
}

.hs-value-grid article:last-child {
	border-right: 1px solid var(--hs-line);
}

.hs-value-grid h3 {
	margin: 42px 0 14px;
}

.hs-value-grid p {
	font-size: 0.9rem;
	margin-bottom: 0;
}

.hs-source-list {
	border-color: var(--hs-line);
}

.hs-source-list a {
	border-bottom: 1px solid var(--hs-line);
	display: grid;
	gap: 4px;
	padding: 22px 0;
	text-decoration: none;
}

.hs-source-list strong {
	color: var(--hs-ink);
	font-family: Georgia, "Times New Roman", serif;
	font-size: 1.15rem;
}

.hs-source-list span {
	color: var(--hs-muted);
	font-size: 0.84rem;
}

/* Journey */
.hs-journey-grid {
	display: grid;
	gap: 60px;
	grid-template-columns: minmax( 150px, 0.42fr ) minmax( 0, 1.18fr );
}

.hs-journey-index {
	color: rgba( 8, 106, 154, 0.14 );
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp( 4.5rem, 10vw, 8.5rem );
	font-weight: 700;
	line-height: 0.8;
}

.hs-section-dark {
	background: var(--hs-ink);
}

.hs-principle-grid {
	display: grid;
	gap: clamp( 52px, 8vw, 110px );
	grid-template-columns: 0.8fr 1.2fr;
}

.hs-principle-grid header h2 {
	color: var(--hs-white);
}

.hs-principle-grid > div {
	border-top: 1px solid rgba( 255, 255, 255, 0.2 );
}

.hs-principle-grid article {
	border-bottom: 1px solid rgba( 255, 255, 255, 0.2 );
	padding: 27px 2px;
}

.hs-principle-grid article > span {
	color: #9de9f0;
}

.hs-section-dark .hs-principle-grid h3 {
	color: var(--hs-white);
	margin: 8px 0;
}

.hs-principle-grid p {
	color: #c5d9e2 !important;
	margin-bottom: 0;
}

.hs-lifestyle-grid {
	align-items: center;
	grid-template-columns: minmax( 0, 1.05fr ) minmax( 0, 0.95fr );
}

.hs-lifestyle-grid figure {
	margin: 0;
}

.hs-journey-photo {
	aspect-ratio: 16 / 10;
	object-position: center;
}

/* Article */
.hs-article-hero {
	background: linear-gradient( 135deg, #edf7f9, #f9fbfb );
	background-color: #f1f8f9;
	padding: clamp( 72px, 9vw, 120px ) 0 clamp( 58px, 7vw, 88px );
}

.hs-article-hero .hs-shell {
	max-width: 1040px;
}

.hs-article-hero h1 {
	font-size: clamp( 2.6rem, 4.8vw, 4.45rem );
	margin-bottom: 24px;
}

.hs-article-hero time {
	color: var(--hs-muted);
	font-size: 0.82rem;
	font-weight: 750;
}

.hs-article-body {
	font-size: 1.05rem;
	max-width: 900px;
	padding-bottom: clamp( 74px, 10vw, 126px );
	padding-top: clamp( 56px, 8vw, 86px );
}

.hs-article-body > figure {
	margin: 0 0 52px;
}

.hs-article-photo {
	aspect-ratio: 16 / 10;
	object-position: center;
}

.hs-article-lead {
	color: var(--hs-ink) !important;
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp( 1.22rem, 1.9vw, 1.65rem );
	line-height: 1.5;
}

.hs-article-body h2 {
	font-size: clamp( 1.85rem, 3.2vw, 2.65rem );
	margin: 50px 0 18px;
}

.hs-article-body aside {
	background: var(--hs-soft);
	border-radius: var(--hs-radius);
	display: grid;
	gap: 9px;
	margin-top: 52px;
	padding: 30px;
}

.hs-article-body aside strong {
	color: var(--hs-ink);
	font-family: Georgia, "Times New Roman", serif;
	font-size: 1.25rem;
}

.hs-article-body aside a {
	font-size: 0.88rem;
	font-weight: 750;
}

.hs-article-back {
	align-items: center;
	border-top: 1px solid var(--hs-line);
	display: flex;
	justify-content: space-between;
	margin-top: 58px;
	padding-top: 34px;
}

.hs-article-back p {
	margin: 0;
}

/* Contact and policy */
.hs-contact-grid {
	align-items: start;
}

.hs-contact-grid ul {
	list-style: none;
	margin: 28px 0 0;
	padding: 0;
}

.hs-contact-grid li {
	border-top: 1px solid var(--hs-line);
	padding: 13px 0 13px 26px;
	position: relative;
}

.hs-contact-grid li::before {
	color: var(--hs-blue-dark);
	content: "✓";
	font-weight: 850;
	left: 0;
	position: absolute;
}

.hs-contact-card {
	background: var(--hs-soft);
	border-radius: var(--hs-radius);
	padding: clamp( 32px, 5vw, 54px );
}

.hs-contact-card > span {
	color: var(--hs-blue-dark);
	font-size: 0.7rem;
	font-weight: 850;
	letter-spacing: 0.14em;
}

.hs-contact-card h3 {
	font-size: 2.2rem;
	margin: 22px 0 14px;
}

.hs-contact-card .hs-button {
	margin-top: 16px;
}

.hs-policy {
	max-width: 850px;
}

.hs-policy h2 {
	font-size: clamp( 1.65rem, 2.5vw, 2.15rem );
	margin: 44px 0 14px;
}

/* CTA and 404 */
.hs-cta {
	background: linear-gradient( 125deg, var(--hs-blue-dark), var(--hs-ink) 72% );
	background-color: var(--hs-ink);
	padding: clamp( 66px, 8vw, 94px ) 0;
}

.hs-cta-inner {
	align-items: center;
	display: flex;
	gap: 42px;
	justify-content: space-between;
}

.hs-cta h2,
.hs-cta p:not(.hs-kicker) {
	color: var(--hs-white) !important;
}

.hs-cta h2 {
	margin-bottom: 12px;
}

.hs-cta p:not(.hs-kicker) {
	color: #d2e3ea !important;
	margin-bottom: 0;
}

.hs-not-found {
	background: linear-gradient( 135deg, #edf7f9, #f9fbfb );
	background-color: #f1f8f9;
	min-height: 70vh;
	padding: clamp( 84px, 12vw, 160px ) 0;
	position: relative;
}

.hs-not-found .hs-shell {
	position: relative;
}

.hs-not-found .hs-shell > span {
	color: rgba( 8, 106, 154, 0.13 );
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp( 7rem, 18vw, 13rem );
	font-weight: 700;
	line-height: 0.7;
	position: absolute;
	right: 24px;
	top: 0;
}

.hs-not-found h1 {
	font-size: clamp( 2.75rem, 5.4vw, 4.85rem );
	max-width: 760px;
}

.hs-not-found p:not(.hs-kicker) {
	max-width: 650px;
}

/* Footer */
.hs-site-footer {
	background: var(--hs-night);
	padding: 66px 0 28px;
}

.hs-footer-main {
	display: flex;
	justify-content: space-between;
}

.hs-footer-main > div:first-child {
	max-width: 430px;
}

.hs-footer-mark {
	background: var(--hs-white);
	color: var(--hs-ink);
	margin-bottom: 18px;
}

.hs-footer-main strong {
	color: var(--hs-white);
	display: block;
	font-family: Georgia, "Times New Roman", serif;
	font-size: 1.35rem;
}

.hs-footer-main p {
	color: #adc3cf !important;
	font-size: 0.88rem;
	margin-top: 8px;
}

.hs-footer-connect {
	display: grid;
	gap: 8px;
}

.hs-footer-connect > span {
	color: #91e4ec;
	font-size: 0.67rem;
	font-weight: 850;
	letter-spacing: 0.13em;
	margin-bottom: 5px;
	text-transform: uppercase;
}

.hs-footer-connect a {
	color: #c6d8e1 !important;
	font-size: 0.87rem;
	text-decoration: none;
}

.hs-footer-connect a:hover {
	color: var(--hs-white) !important;
}

.hs-footer-bottom {
	border-top: 1px solid rgba( 255, 255, 255, 0.14 );
	color: #93aab7;
	display: flex;
	font-size: 0.72rem;
	justify-content: space-between;
	margin-top: 50px;
	padding-top: 24px;
}

/* Progressive depth: visual layers, pointer response, and scroll context. */
.hs-hero,
.hs-page-hero,
.hs-article-hero,
.hs-not-found {
	--pointer-x: 70%;
	--pointer-y: 24%;
	isolation: isolate;
	overflow: clip;
	position: relative;
}

.hs-hero::after,
.hs-page-hero::after,
.hs-article-hero::after,
.hs-not-found::after {
	background: radial-gradient( circle at var(--pointer-x) var(--pointer-y), rgba( 110, 219, 232, 0.22 ), transparent 30% );
	content: "";
	inset: 0;
	pointer-events: none;
	position: absolute;
	z-index: 0;
}

.hs-hero > .hs-shell,
.hs-page-hero > .hs-shell,
.hs-article-hero > .hs-shell,
.hs-not-found > .hs-shell {
	position: relative;
	z-index: 1;
}

.hs-scroll-progress {
	background: linear-gradient( 90deg, var(--hs-aqua), var(--hs-blue), var(--hs-gold) );
	height: 3px;
	left: 0;
	pointer-events: none;
	position: fixed;
	top: 0;
	transform: scaleX( 0 );
	transform-origin: left center;
	width: 100%;
	z-index: 10001;
}

.hs-motion .hs-reveal {
	opacity: 0;
	translate: 0 24px;
	transition: opacity 600ms ease var(--reveal-delay, 0ms), translate 700ms cubic-bezier( 0.22, 1, 0.36, 1 ) var(--reveal-delay, 0ms);
}

.hs-motion .hs-reveal.is-visible {
	opacity: 1;
	translate: 0 0;
}

.hs-motion [data-depth] {
	--depth-lift: 0px;
	--tilt-x: 0deg;
	--tilt-y: 0deg;
	transform: perspective( 1100px ) translateY( var(--depth-lift) ) rotateX( var(--tilt-x) ) rotateY( var(--tilt-y) );
	transform-style: preserve-3d;
	-webkit-font-smoothing: antialiased;
	backface-visibility: hidden;
	transition: transform 180ms cubic-bezier( 0.22, 1, 0.36, 1 ), box-shadow 220ms ease, border-color 220ms ease;
	will-change: transform;
}

.hs-motion [data-depth].is-depth-active {
	--depth-lift: -6px;
}

.hs-motion [data-depth] h2,
.hs-motion [data-depth] h3,
.hs-motion [data-depth] strong,
.hs-motion [data-depth] .hs-card-action,
.hs-motion [data-depth] figcaption {
	backface-visibility: hidden;
	transform: translateZ( 18px );
}

.hs-site-header::before,
.hs-hero-visual::before,
.hs-contact-grid li::before {
	pointer-events: none;
}

@media ( max-width: 1040px ) {
	.hs-desktop-nav {
		display: none;
	}

	.hs-mobile-nav {
		display: block;
	}

	.hs-hero-grid,
	.hs-page-hero-grid {
		gap: 54px;
		grid-template-columns: 1.04fr 0.86fr;
	}

	.hs-card-grid {
		grid-template-columns: repeat( 2, 1fr );
	}

	.hs-value-grid {
		grid-template-columns: repeat( 2, 1fr );
	}

	.hs-value-grid article:nth-child( 2 ) {
		border-right: 1px solid var(--hs-line);
	}

	.hs-value-grid article:nth-child( n + 3 ) {
		border-top: 1px solid var(--hs-line);
	}
}

@media ( max-width: 767px ) {
	body.hs-site {
		font-size: 16px;
	}

	.hs-header-inner {
		gap: 12px;
		height: 76px;
	}

	.hs-brand-mark {
		height: 40px;
		width: 40px;
	}

	.hs-brand-name {
		font-size: 1.1rem;
	}

	.hs-brand-name small {
		font-size: 0.48rem;
	}

	.hs-family-link {
		min-height: 40px;
		padding: 6px 11px;
	}

	.hs-family-link small {
		display: none;
	}

	.hs-hero {
		padding-top: 60px;
	}

	.hs-hero-grid,
	.hs-page-hero-grid,
	.hs-intro-grid,
	.hs-profile-grid,
	.hs-source-grid,
	.hs-proof-grid,
	.hs-contact-grid,
	.hs-lifestyle-grid,
	.hs-photo-story,
	.hs-principle-grid,
	.hs-journey-grid {
		grid-template-columns: 1fr;
	}

	.hs-hero-visual {
		margin: 8px 16px 0;
	}

	.hs-hero-visual figcaption {
		bottom: 16px;
		left: -16px;
	}

	.hs-signal-grid {
		grid-template-columns: 1fr;
	}

	.hs-signal-grid > div,
	.hs-signal-grid > div:last-child {
		border-left: 0;
		border-right: 0;
		border-top: 1px solid rgba( 255, 255, 255, 0.14 );
		padding: 21px 4px;
	}

	.hs-signal-grid > div:last-child {
		border-bottom: 1px solid rgba( 255, 255, 255, 0.14 );
	}

	.hs-heading-row,
	.hs-cta-inner,
	.hs-article-back,
	.hs-footer-main {
		align-items: flex-start;
		flex-direction: column;
	}

	.hs-card-grid,
	.hs-value-grid {
		grid-template-columns: 1fr;
	}

	.hs-card-grid > :last-child {
		grid-column: auto;
	}

	.hs-value-grid article,
	.hs-value-grid article:nth-child( 2 ),
	.hs-value-grid article:last-child {
		border-left: 0;
		border-right: 0;
		border-top: 1px solid var(--hs-line);
		padding-left: 0;
		padding-right: 0;
	}

	.hs-news-card {
		grid-template-columns: 1fr;
	}

	.hs-news-image img,
	.hs-news-image .hs-image-placeholder {
		min-height: 280px;
	}

	.hs-journey-index {
		font-size: 5.25rem;
	}

	.hs-proof-list a {
		grid-template-columns: 1fr;
	}

	.hs-proof-list span {
		grid-column: auto;
	}

	.hs-proof-list em {
		margin-top: 5px;
	}

	.hs-footer-main {
		gap: 30px;
	}

	.hs-footer-bottom {
		align-items: flex-start;
		flex-direction: column;
		gap: 5px;
	}
}

@media ( max-width: 520px ) {
	.hs-shell {
		padding-inline: 20px;
	}

	body.hs-site h1 {
		font-size: 3rem;
	}

	.hs-page-hero h1,
	.hs-article-hero h1 {
		font-size: 2.55rem;
	}

	.hs-brand-name small {
		display: none;
	}

	.hs-family-link {
		font-size: 0.76rem;
		gap: 5px;
		padding-inline: 9px;
	}

	.hs-actions {
		align-items: flex-start;
		flex-direction: column;
	}

	.hs-hero-visual figcaption {
		max-width: 245px;
	}
}

@media ( prefers-reduced-motion: reduce ) {
	html {
		scroll-behavior: auto;
	}

	*,
	*::before,
	*::after {
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
	}

	.hs-scroll-progress {
		display: none;
	}
}
