/* =========================================================================
   Heights Offers Grid — asymmetric large/small photo cards + add-on strip
   Styled to the live Pearl Island site: white canvas, slate serif headings,
   Quentin script kicker, deep-teal photo overlays, pink pill CTAs.
   ========================================================================= */
.hog, .hog * { box-sizing: border-box; }

.hog {
	width: 100%;
	font-family: var(--hx-sans, 'Nunito', sans-serif);
	color: var(--hx-body, #56606E);
	font-size: 16px;
	line-height: 1.6;
}
.hog a { text-decoration: none; color: inherit; }

/* ----------------------------------------------------------------------
   Section head
   ------------------------------------------------------------------- */
.hog-head {
	text-align: center;
	max-width: 760px;
	margin: 0 auto 52px;
}
.hog-kicker {
	display: block;
	font-family: var(--hx-script, 'Quentin', cursive);
	font-weight: 400;
	font-size: 2.2rem;
	line-height: 1.2;
	color: var(--hx-pink-dark, #E79FC7);
	margin-bottom: 6px;
}
.hog-title {
	margin: 0;
	font-family: var(--hx-serif, 'Miller Banner', serif);
	font-weight: 600;
	font-size: clamp(2rem, 4vw, 2.9rem);
	line-height: 1.12;
	color: var(--hx-slate, #626A82);
}
.hog-desc {
	margin: 16px 0 0;
	color: var(--hx-body, #56606E);
	font-weight: 500;
}

/* ----------------------------------------------------------------------
   Asymmetric grid
   ------------------------------------------------------------------- */
.hog-grid {
	display: grid;
	grid-template-columns: repeat(12, 1fr);
	gap: 26px;
}
.hog-card {
	position: relative;
	grid-column: span 6;
	border-radius: 22px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	min-height: 560px;
	box-shadow: 0 16px 44px rgba(6, 44, 47, .12);
	transition: transform .3s ease, box-shadow .3s ease;
}
.hog-card-link {
	position: absolute;
	inset: 0;
	z-index: 4;
	border-radius: inherit;
	cursor: pointer;
}
.hog-panel { pointer-events: none; z-index: 5; }
.hog-panel .hog-btn { pointer-events: auto; position: relative; }
.hog-card:hover {
	transform: translateY(-7px);
	box-shadow: 0 30px 62px rgba(6, 44, 47, .2);
}
.hog-card--lg { grid-column: span 7; }
.hog-card--sm { grid-column: span 5; min-height: 520px; }

@media (max-width: 920px) {
	.hog-card, .hog-card--lg, .hog-card--sm {
		grid-column: span 12;
		min-height: 500px;
	}
}

/* Photo fills whole card, teal gradient rises from the bottom */
.hog-card-bg {
	position: absolute;
	inset: 0;
	z-index: 0;
	background-size: cover;
	background-position: center;
	background-color: var(--hx-sky, #D7EEF4);
	transition: transform .5s ease;
}
.hog-card:hover .hog-card-bg { transform: scale(1.04); }
.hog-card::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(180deg,
		rgba(0, 39, 38, 0)   36%,
		rgba(0, 39, 38, .52) 62%,
		rgba(0, 39, 38, .88) 100%);
}

/* Badge */
.hog-badge {
	position: absolute;
	top: 16px;
	right: 16px;
	z-index: 3;
	font-weight: 800;
	font-size: .68rem;
	letter-spacing: .12em;
	text-transform: uppercase;
	padding: 8px 16px;
	border-radius: 999px;
	box-shadow: 0 6px 18px rgba(0, 0, 0, .18);
	background: var(--hx-pink, #F1BAD7);
	color: var(--hx-teal-dark, #062C2F);
}
.hog-badge--teal  { background: var(--hx-teal-dark, #062C2F); color: #fff; }
.hog-badge--sky   { background: var(--hx-sky, #D7EEF4); color: var(--hx-teal-dark, #062C2F); }
.hog-badge--cream { background: var(--hx-cream, #F7EFE0); color: var(--hx-teal-dark, #062C2F); }
.hog-badge--white { background: rgba(255,255,255,.92); color: var(--hx-teal-dark, #062C2F); }

/* Content panel — lower third */
.hog-panel {
	position: relative;
	z-index: 2;
	padding: 26px 28px;
	color: #fff;
}
.hog-card-title {
	margin: 0 0 10px;
	font-family: var(--hx-serif, 'Miller Banner', serif);
	font-weight: 600;
	font-size: 1.6rem;
	line-height: 1.15;
	color: #fff;
	text-shadow: 0 2px 12px rgba(0, 0, 0, .3);
}
.hog-card--lg .hog-card-title { font-size: 1.9rem; }

.hog-meta {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	margin-bottom: 14px;
}
.hog-meta span {
	background: rgba(255, 255, 255, .16);
	border: 1px solid rgba(255, 255, 255, .32);
	backdrop-filter: blur(4px);
	border-radius: 999px;
	padding: 5px 13px;
	font-weight: 800;
	font-size: .68rem;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.hog-incl {
	list-style: none;
	margin: 0 0 16px;
	padding: 0;
}
.hog-incl li {
	font-size: .9rem;
	font-weight: 700;
	padding: 3px 0;
	display: flex;
	gap: 9px;
	align-items: baseline;
	text-shadow: 0 1px 6px rgba(0, 0, 0, .3);
}
.hog-incl li::before {
	content: "★";
	color: var(--hx-sand, #FFEFAF);
	font-size: .72rem;
	flex: 0 0 auto;
}

/* Price bar + CTA */
.hog-pricebar {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 14px;
	border-top: 1px dashed rgba(255, 255, 255, .35);
	padding-top: 16px;
}
.hog-price small {
	display: block;
	font-size: .64rem;
	font-weight: 800;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, .78);
}
.hog-price b {
	font-family: var(--hx-serif, 'Miller Banner', serif);
	font-weight: 600;
	font-size: 1.9rem;
	line-height: 1.15;
}
.hog-price span {
	font-size: .8rem;
	color: rgba(255, 255, 255, .78);
	font-weight: 700;
}

.hog-btn {
	display: inline-block;
	font-family: var(--hx-sans, 'Nunito', sans-serif);
	font-weight: 800;
	font-size: .74rem;
	letter-spacing: .1em;
	text-transform: uppercase;
	padding: 14px 28px;
	border-radius: 999px;
	background: var(--hx-pink, #F1BAD7);
	color: var(--hx-teal-dark, #062C2F);
	box-shadow: 0 10px 26px rgba(241, 186, 215, .45);
	transition: background .25s ease, color .25s ease, transform .25s ease;
	white-space: nowrap;
	text-align: center;
}
.hog-btn:hover {
	background: #fff;
	color: var(--hx-teal-dark, #062C2F);
	transform: translateY(-2px);
}
.hog-btn--ghost {
	background: rgba(255, 255, 255, .12);
	border: 2px solid rgba(255, 255, 255, .85);
	color: #fff;
	box-shadow: none;
}
.hog-btn--ghost:hover { background: #fff; color: var(--hx-teal-dark, #062C2F); }

/* ----------------------------------------------------------------------
   Add-on strip
   ------------------------------------------------------------------- */
.hog-addon {
	margin-top: 26px;
	background: #fff;
	border: 1px solid var(--hx-sky, #D7EEF4);
	border-radius: 18px;
	padding: 22px 30px;
	display: flex;
	align-items: center;
	gap: 20px;
	flex-wrap: wrap;
	box-shadow: 0 10px 30px rgba(6, 44, 47, .06);
}
.hog-addon-ico {
	flex: 0 0 52px;
	height: 52px;
	border-radius: 14px;
	background: var(--hx-sky, #D7EEF4);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	overflow: hidden;
}
.hog-addon-ico img { width: 100%; height: 100%; object-fit: cover; }
.hog-addon-txt { flex: 1; min-width: 240px; }
.hog-addon-txt b {
	display: block;
	font-family: var(--hx-serif, 'Miller Banner', serif);
	font-weight: 600;
	font-size: 1.15rem;
	color: var(--hx-slate, #626A82);
}
.hog-addon-txt span {
	font-size: .87rem;
	font-weight: 600;
	color: var(--hx-body, #56606E);
}
.hog-addon-price {
	font-family: var(--hx-serif, 'Miller Banner', serif);
	font-size: 1.5rem;
	color: var(--hx-teal-dark, #062C2F);
	white-space: nowrap;
}
.hog-addon-price small {
	display: block;
	font-family: var(--hx-sans, 'Nunito', sans-serif);
	font-size: .64rem;
	font-weight: 800;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: #98A2AE;
}
.hog-addon .hog-btn { box-shadow: none; }

/* Footnote */
.hog-footnote {
	text-align: center;
	font-size: .76rem;
	font-weight: 600;
	color: #98A2AE;
	margin-top: 28px;
}

@media (max-width: 600px) {
	/* Keep a clear photo area on top; the text sits on a solid dark
	   gradient below it instead of covering the whole image. */
	.hog-card, .hog-card--lg, .hog-card--sm { min-height: 0; }
	.hog-card::before {
		background: linear-gradient(180deg, rgba(0, 39, 38, 0) 40%, rgba(0, 39, 38, .35) 100%);
	}
	.hog-panel {
		margin-top: 210px;
		padding: 46px 16px 18px;
		background: linear-gradient(180deg, rgba(0, 39, 38, 0) 0, rgba(0, 39, 38, .82) 44px, rgba(0, 39, 38, .94) 100%);
	}
	.hog-card-title, .hog-card--lg .hog-card-title { font-size: 1.3rem; }
	.hog-meta span { font-size: .62rem; padding: 4px 10px; }
	.hog-incl li { font-size: .8rem; }
	.hog-price b { font-size: 1.5rem; }
	.hog-pricebar { flex-direction: column; align-items: stretch; gap: 10px; }
	.hog-btn { width: 100%; }
	.hog-addon { padding: 20px; }
}
