 
html {
	scroll-behavior: smooth;
}
 
p {
	margin-bottom: 0;
}

/* ── BUTTONS ── */
.sth-btn,
input.sth-btn-primary {
	display: inline-block;
	font-family: 'Josefin Sans', sans-serif;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	padding: 13px 32px;
	border: 2px solid transparent;
	cursor: pointer;
	text-decoration: none;
	line-height: 1;
	transition: background 0.22s, border-color 0.22s, color 0.22s;
}

.sth-btn-primary,
input.sth-btn-primary {
	background: #005294;
	border-color: #005294;
	color: #fff !important;
}

.sth-btn-primary:hover,
input.sth-btn-primary:hover {
	background: #003e70;
	border-color: #003e70;
	color: #fff !important;
}

.sth-btn-red {
	background: #a71e1f;
	border-color: #a71e1f;
	color: #fff !important;
}

.sth-btn-red:hover {
	background: #880f10;
	border-color: #880f10;
	color: #fff !important;
}

/* ── LAYOUT ── */
.sth-section {
	padding: 80px 0;
}

.sth-section-white {
	background: #fff !important;
}

.sth-section-light {
	background: #f5f7fa !important;
}

.sth-section-dark {
	background: #0f1b2d !important;
}

.sth-section.pt-0 {
	padding-top: 0px !important;
}

.sth-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 32px;
}

/* ── EYEBROW / ACCENT ── */
.sth-section-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 10px;
}

.sth-eyebrow-line {
	width: 28px;
	height: 2px;
	background: #a71e1f;
}

.sth-eyebrow-text {
	font-family: 'Josefin Sans', sans-serif;
	font-size: 11px;
	letter-spacing: 0.3em;
	text-transform: uppercase;
	color: #a71e1f;
	font-weight: 600;
}

.sth-section-title {
	font-size: clamp(26px, 3.2vw, 38px);
}

.sth-section-title span {
	color: #005294;
}

.sth-section-title em {
	font-style: italic;
	color: #fb8b01;
}

.sth-section-lead {
	font-size: 15px;
	color: #666;
	line-height: 1.85;
	margin-top: 10px;
}
 
/* ═══════════════ BOOTSTRAP CAROUSEL OVERRIDES — FULL WIDTH + READABLE TEXT ═══════════════ */
.sth-carousel-full {
	position: relative;
	width: 100%;
	overflow: hidden;
}

.item {
	min-height: 90vh;
	background-size: cover;
	background-position: center 35%;
	position: relative;
}

.item::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(170deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.1) 40%, rgba(0, 0, 0, 0.5) 100%);
	z-index: 1;
}

.carousel-caption {
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	margin: 0 auto;
	transform: translateY(-50%);
	bottom: auto;
	text-align: left;
	max-width: 1200px;
	width: 100%;
	z-index: 3;
	background: transparent;
	padding: 0 32px;
}

.carousel-caption>* {
	max-width: 990px;
}

.carousel-caption .sth-hero-eyebrow span {
	color: rgba(255, 255, 255, 0.85);
	padding-bottom: 15px;
	display: block;
}

.carousel-caption h1 {
	font-size: clamp(44px, 6vw, 70px);
	color: #fff;
	line-height: 1.08;
	margin-bottom: 14px;
	text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
	font-weight: 600;
}

.sth-hero-actions {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}

.carousel-caption h1 span {
	color: #fb8b01;
}

.sth-hero-sub {
	font-family: 'Josefin Sans', sans-serif;
	font-size: 12px;
	letter-spacing: 0.3em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.7);
	font-weight: 600;
	margin-bottom: 18px;
}

.sth-hero-desc {
	font-size: 16px;
	color: rgba(255, 255, 255, 0.85);
	line-height: 1.85;
	font-weight: 400;
	max-width: 500px;
	margin-bottom: 34px;
	text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

.carousel-control.left,
.carousel-control.right {
	width: 5%;
	opacity: 0.6;
	z-index: 3;
	background-image: none;
}

.carousel-indicators li {
	background-color: rgba(251, 139, 1, 0.5);
	width: 12px;
	height: 12px;
	border-radius: 0;
	margin: 0 6px;
	border: none;
}

.carousel-indicators .active {
	background-color: #fb8b01;
	width: 12px;
	height: 12px;
	margin: 0 6px;
	border: none;
}

/* responsive caption adjustments */
@media (max-width: 768px) {
	.carousel-caption {
		padding: 0 20px;
		text-align: center;
	}

	.sth-hero-desc {
		font-size: 14px;
	}
}

/* stat bar */
.sth-stat-bar {
	background: #005294;
}

.sth-stat-inner {
	display: flex;
}

.sth-stat-item {
	flex: 1;
	text-align: center;
	padding: 24px 16px;
	border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.sth-stat-item:last-child {
	border-right: none;
}

.sth-stat-num {
	font-family: 'Josefin Sans', sans-serif;
	font-size: 30px;
	font-weight: 700;
	color: #fb8b01;
	display: block;
	line-height: 1;
	margin-bottom: 5px;
}

.sth-stat-label {
	font-size: 10px;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.5);
	font-family: 'Josefin Sans', sans-serif;
	font-weight: 600;
	margin: 0px;
	padding: 0;
	line-height: 1em;
}

/* about grid */
.sth-about-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: center;
}

.sth-about-visual {
	position: relative;
}

.sth-about-img-main {
	width: 100%;
	aspect-ratio: 4/5;
	object-fit: cover;
	box-shadow: 22px 22px 56px rgba(0, 0, 0, 0.13);
}

.sth-about-img-accent {
	position: absolute;
	width: 46%;
	aspect-ratio: 1;
	object-fit: cover;
	bottom: -34px;
	right: -28px;
	border: 5px solid #fff;
	box-shadow: 0 14px 44px rgba(0, 0, 0, 0.16);
}

.sth-about-badge {
	position: absolute;
	top: 30px;
	left: -22px;
	background: #005294;
	color: #fff;
	padding: 14px 18px;
	text-align: center;
	box-shadow: 0 8px 26px rgba(0, 82, 148, 0.3);
}

.sth-about-badge strong {
	font-family: 'Josefin Sans', sans-serif;
	font-size: 28px;
	font-weight: 700;
	color: #fb8b01;
	display: block;
	line-height: 1;
}

.sth-about-badge span {
	font-size: 9px;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	font-family: 'Josefin Sans', sans-serif;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.65);
}

.sth-body-text {
	font-size: 15px;
	color: #555;
	line-height: 1.9;
	font-weight: 300;
	margin-bottom: 14px;
}

.sth-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 20px;
}

.sth-tag {
	font-family: 'Josefin Sans', sans-serif;
	font-size: 11px;
	letter-spacing: 0.13em;
	text-transform: uppercase;
	font-weight: 600;
	color: #005294;
	border: 1px solid rgba(0, 82, 148, 0.22);
	padding: 8px 14px;
	background: rgba(0, 82, 148, 0.04);
	line-height: 1.2em;
	border-radius: 20px;
}

/* gallery */
.sth-gallery-section {
	background: #0f1b2d !important;
	padding: 0px;
}

.sth-gallery-header {
	padding: 70px 0 48px;
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
}

.sth-gallery-header h2 {
	font-size: clamp(30px, 3.8vw, 46px);
	color: #fff;
	line-height: 1.2;
}

.sth-gallery-header h2 span {
	color: #fb8b01;
}

.sth-gallery-subtitle {
	font-size: 13px;
	color: rgba(255, 255, 255, 50);
	max-width: 250px;
	text-align: right;
	line-height: 1.7;
}

.sth-gallery-grid {
	display: grid;
	grid-template-columns: 1.6fr 1fr 1fr;
	grid-auto-rows: 270px;
	gap: 3px;
	padding-bottom: 3px;
}

.sth-gallery-cell {
	position: relative;
	overflow: hidden;
}

.sth-gallery-cell:first-child {
	grid-row: 1 / 3;
}

.sth-gallery-cell img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.sth-gallery-cell-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(15, 27, 45, 0.72) 0%, transparent 55%);
	opacity: 0;
	transition: opacity 0.35s;
}

.sth-gallery-cell:hover .sth-gallery-cell-overlay {
	opacity: 1;
}

.sth-gallery-cell-label {
	position: absolute;
	bottom: 18px;
	left: 22px;
	font-family: 'Josefin Sans', sans-serif;
	font-size: 14px;
	font-weight: 600;
	color: #fff;
	opacity: 0;
	letter-spacing: 0.06em;
	transition: opacity 0.35s;
}

.sth-gallery-cell:hover .sth-gallery-cell-label {
	opacity: 1;
}

/* features */
.sth-features-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.sth-feature-card {
	background: #fff;
	border-radius: 8px;
	padding: 42px 30px;
	border-top: 3px solid transparent;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
	transition: transform 0.3s ease, box-shadow 0.3s ease, border-top-color 0.3s ease;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.sth-feature-card:hover {
	border-top-color: #005294;
	transform: translateY(-5px);
	box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
}

.sth-feature-icon {
	width: 68px;
	height: 68px;
	border-radius: 50%;
	background: rgba(0, 82, 148, 0.03);
	border: 1px solid rgba(0, 82, 148, 0.12);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 22px;
}

.sth-feature-icon svg {
	width: 32px;
	height: 32px;
	stroke: #005294;
	fill: none;
	stroke-width: 1.5;
}

.sth-feature-card h4 {
	font-size: 18px;
	margin-bottom: 10px;
	font-weight: 600;
	color: #444;
}

.sth-feature-card p {
	font-size: 14px;
	color: #777;
	line-height: 1.8;
}

/* nearby */
.sth-nearby-grid {
	display: grid;
	grid-template-columns: 1.5fr 1fr;
	gap: 72px;
	align-items: start;
}

.sth-nearby-img-wrap {
	position: relative;
	overflow: hidden;
}

.sth-nearby-img-wrap img {
	width: 100%;
	aspect-ratio: 3/4;
	object-fit: cover;
	filter: saturate(0.85);
}

.sth-nearby-img-wrap::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(15, 27, 45, 0.88) 0%, transparent 52%);
}

.sth-nearby-img-label {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 2;
	padding: 26px 22px;
}

.sth-nearby-badge {
	display: inline-flex;
	align-items: center;
	background: #a71e1f;
	padding: 5px 13px;
	margin-bottom: 11px;
}

.sth-nearby-badge span {
	font-family: 'Josefin Sans', sans-serif;
	font-size: 9px;
	letter-spacing: 0.25em;
	text-transform: uppercase;
	color: #fff;
	font-weight: 700;
}

.sth-nearby-img-label h3 {
	font-size: 24px;
	color: #fff;
	margin-bottom: 6px;
}

.sth-nearby-img-label p {
	font-size: 13px;
	color: rgb(255 255 255 / 75%);
	line-height: 1.6;
}

.sth-nearby-list-title {
	font-size: clamp(24px, 2.8vw, 34px);
	color: #fff;
}

.sth-nearby-list-title span {
	color: #fb8b01;
}

.sth-nearby-item {
	display: grid;
	grid-template-columns: 44px 1fr;
	gap: 14px;
	padding: 18px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.07);
	align-items: start;
}

.sth-nearby-item:first-of-type {
	border-top: 1px solid rgba(255, 255, 255, 0.07);
	margin-top: 22px;
}

.sth-nearby-num {
	font-family: 'Josefin Sans', sans-serif;
	font-size: 24px;
	font-weight: 600;
	color: rgb(251 139 1 / 50%);
	line-height: 1;
}

.sth-nearby-info h4 {
	font-size: 16px;
	color: rgba(255, 255, 255, 0.82);
	margin-bottom: 4px;
	font-weight: 500;
}

.sth-nearby-info p {
	font-size: 13px;
	color: rgba(255, 255, 255, 0.36);
	line-height: 1.6;
}

/* travels */
.sth-travels-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	min-height: 580px;
	background: #fff;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 14px 44px rgba(0, 0, 0, 0.06);
}

.sth-travels-img {
	position: relative;
	overflow: hidden;
	height: 100%;
}

.sth-travels-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.sth-travels-img::after {
	display: none;
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(to right, transparent 40%, rgba(255, 255, 255, 1) 100%);
}

.sth-travels-copy {
	padding: 60px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	background: #fff;
}

.sth-travels-copy h2 {
	font-size: clamp(24px, 2.8vw, 34px);
	margin-bottom: 6px;
}

.sth-travels-copy h2 span {
	color: #a71e1f;
}

.sth-perks {
	margin: 20px 0 28px;
}

.sth-perk {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 10px 0;
	border-bottom: 1px solid rgba(0, 82, 148, 0.1);
	font-size: 14px;
	color: #555;
	font-weight: 300;
}

.sth-perk:last-child {
	border-bottom: none;
}

.sth-perk-dot {
	width: 6px;
	height: 6px;
	background: #005294;
	border-radius: 50%;
	flex-shrink: 0;
}
 
.sth-contact-location-wrapper {
	background: #fff;
}

.sth-merged-contact-grid {
	display: grid;
	grid-template-columns: 1fr 1.3fr;
	gap: 64px;
	align-items: start;
}

.sth-contact-detail {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	padding: 15px 0;
	border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}

.sth-contact-detail:last-child {
	border-bottom: none;
}

.sth-contact-detail-icon {
	width: 40px;
	height: 40px;
	background: rgba(0, 82, 148, 0.06);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	border-radius: 4px;
	border: 1px #00529421 solid;
}

.sth-contact-detail-icon svg {
	width: 18px;
	height: 18px;
	stroke: #005294;
	fill: none;
	stroke-width: 1.5;
}

.sth-contact-detail-label {
	font-family: 'Josefin Sans', sans-serif;
	font-size: 10px;
	letter-spacing: 0.24em;
	text-transform: uppercase;
	color: #005294;
	font-weight: 700;
	display: block;
	margin-bottom: 3px;
}

.sth-contact-detail-value {
	font-size: 16px;
	color: #111111;
	font-weight: 400;
	line-height: 1.6;
}

.sth-contact-detail-value a {
	color: #111111;
	font-weight: 500;
}

.sth-contact-detail-value a:hover {
	color: #005294;
}

.sth-form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}

.sth-form-group {
	margin-bottom: 16px;
}

.sth-form-group label {
	display: block;
	font-family: 'Josefin Sans', sans-serif;
	font-size: 12px;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	font-weight: 700;
	color: #111111;
	margin-bottom: 8px;
}

.sth-form-group input,
.sth-form-group select,
.sth-form-group textarea {
	width: 100%;
	padding: 13px 18px;
	border: 1px solid #c0c0c0;
	background: #ffffff;
	font-family: 'Poppins', sans-serif;
	font-size: 16px;
	font-weight: 400;
	border-radius: 5px;
	color: #111111;
	line-height: 1.5;
	outline: none;
	appearance: none;
	transition: border-color 0.2s, box-shadow 0.2s;
}

.sth-form-group input:focus,
.sth-form-group select:focus,
.sth-form-group textarea:focus {
	border-color: #005294;
	background: #fff;
	box-shadow: 0 0 0 3px rgba(0, 82, 148, 0.1);
}

.sth-form-group textarea {
	resize: vertical;
	min-height: 120px;
}

.sth-form-submit {
	margin-top: 4px;
}

.sth-form-submit .sth-btn {
	padding: 14px 36px;
}

/* map row */
.sth-map-full-row {
	margin-top: 64px;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.sth-map-full-row iframe {
	width: 100%;
	height: 420px;
	border: none;
	display: block;
	border: 2px #dbdbdb solid;
}

.sth-merged-contact-grid .wpcf7-select {
  appearance: none !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  background-image: url("data:image/svg+xml;utf8,<svg fill='black' height='20' viewBox='0 0 20 20' width='20' xmlns='http://www.w3.org/2000/svg'><polygon points='0,0 20,0 10,10'/></svg>") !important;
  background-repeat: no-repeat !important;
  background-position: right 10px center !important;
  background-size: 12px !important;
  padding-right: 30px;
}

/* responsive */
@media (max-width: 991px) {

	.sth-about-grid,
	.sth-travels-grid,
	.sth-merged-contact-grid,
	.sth-nearby-grid {
		grid-template-columns: 1fr;
		gap: 36px;
	}

	.sth-about-img-accent {
		display: none;
	}

	.sth-about-badge {
		left: 10px;
	}

	.sth-travels-img {
		min-height: 300px;
	}

	.sth-travels-img::after {
		display: none;
	}

	.sth-travels-copy {
		padding: 10px 28px 46px 28px;
	}

	.sth-gallery-header {
		flex-direction: column;
		align-items: flex-start;
		gap: 10px;
		padding: 48px 0 34px;
	}

	.sth-gallery-subtitle {
		text-align: left;
	}

	.sth-section {
		padding: 60px 0;
	}

	.sth-features-grid {
		grid-template-columns: 1fr 1fr;
	}

	.sth-gallery-grid {
		grid-template-columns: 1fr;
		grid-template-rows: auto;
	}

	.sth-gallery-cell:first-child {
		grid-row: auto;
	}

	.sth-gallery-cell {
		height: 210px;
	}

	.sth-form-row {
		grid-template-columns: 1fr;
	}

	.sth-body-text {
		text-align: left !important;
	}

	.about-copy .sth-section-title,
	.about-copy div:has(.sth-btn),
	.sth-gallery-header *,
	.sth-gallery-subtitlez,
	.sth-merged-contact-grid h3 {
		text-align: center !important;
	}

	.about-copy .sth-section-eyebrow,
	.sth-gallery-header,
	.sth-tags {
		align-items: center !important;
		justify-content: center;
		width: 100%;
	}

	.sth-tags {
		margin: 25px 0px 20px !important;
	}

	.about-copy .sth-section-eyebrow .sth-eyebrow-line {
		display: none;
	}

	.sth-gallery-subtitle {
		min-width: 80%;
	}

	.sth-gallery-grid {
		grid-template-columns: 1fr 1fr !important;
		grid-auto-rows: inherit !important;
		padding-bottom: 3px !important;
	}

	.sth-gallery-cell:nth-child(1) {
		grid-column: 1 / -1;
	}

	.sth-nearby-grid>div:nth-child(1) {
		order: 2;
	}

	.sth-nearby-grid>div:nth-child(2) {
		order: 1;
	}

	.sth-eyebrow-line {
		display: none;
	}

	.sth-eyebrow-line {
		width: 20px !important;
	}

	.sth-nearby-grid .sth-section-lead {
		padding-bottom: 15px;
	}

	.sth-info-label {
		padding: 10px 0px;
	}

	.sth-form-submit {
		text-align: center;
	}

	.sth-btn-red {
		text-align: center;
	}


}


@media (max-width: 767px) {
	.sth-stat-inner {
		flex-wrap: wrap;
	}

	.sth-stat-item {
		min-width: 50%;
		border-right: none;
		border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	}

	.sth-features-grid {
		grid-template-columns: 1fr;
	}

	.sth-container {
		padding: 0 20px;
	}

	.carousel-caption h1 {
		font-size: 32px;
	}

	.sth-hero-desc {
		font-size: 14px;
		line-height: 1.4em;
	}

	.sth-hero-actions {
		justify-content: center;
	}

	.sth-stat-num {
		font-size: 24px;
	}

	.sth-gallery-subtitle {
		min-width: 100%;
	}
}

@media (max-width: 480px) {
	.sth-features-grid {
		grid-template-columns: 1fr;
	}
}