/* ==========================================================================
   CONTACT.CSS — Cultura Golf (/contact)
   Section-specific styling for the Contact page only.
   Enqueued by functions.php via the page-ID map.
   Form slots use the shared .cg-form-embed style in component.css.
   ========================================================================== */

/* -------------------------------- Hero --------------------------------- */
.cg-contact-hero {
	position: relative;
	display: flex;
	align-items: center;
	min-height: min(46vh, 440px);
	background: radial-gradient(125% 130% at 50% 0%, var(--cg-forest-light) 0%, var(--cg-forest-dark) 58%, var(--cg-midnight) 100%);
	color: var(--cg-on-dark);
	text-align: center;
	overflow: hidden;
}
.cg-contact-hero__inner {
	position: relative;
	z-index: 2;
	margin: 0 auto;
	max-width: 820px;
	padding-block: clamp(64px, 9vw, 104px);
}
.cg-contact-hero__eyebrow { color: var(--cg-gold-light); margin-bottom: 16px; }
.cg-contact-hero__title {
	color: var(--cg-on-dark);
	font-size: clamp(42px, 7vw, 72px);
	line-height: 1.05;
}

/* ------------------------------ Contact -------------------------------- */
.cg-contact { background: var(--cg-parchment); }
.cg-contact__intro {
	font-size: clamp(16px, 2vw, 18px);
	line-height: 1.9;
	color: var(--cg-stone);
	max-width: 680px;
	margin: 0 auto 44px;
	text-align: center;
}
.cg-contact__grid {
	display: grid;
	grid-template-columns: 1fr 1.15fr;
	gap: clamp(28px, 5vw, 56px);
	align-items: start;
}
.cg-contact__details .cg-eyebrow { margin-bottom: 20px; }
.cg-contact-list { display: flex; flex-direction: column; gap: 18px; margin-bottom: 34px; }
.cg-contact-list li { display: flex; align-items: center; gap: 14px; }
.cg-contact-list__icon {
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: var(--cg-forest);
	color: var(--cg-gold-light);
	font-size: 15px;
}
.cg-contact-list__text {
	font-size: 15.5px;
	color: var(--cg-ink);
}
/* Email / tel links in the contact list read black like the other details */
.cg-contact-list a {
	font-size: 15.5px;
	color: var(--cg-ink);
}
.cg-contact-list a:hover { color: var(--cg-gold-deep); }
.cg-contact__social-label { margin-bottom: 16px; }

/* Social icons on a light surface (override the footer/dark defaults) */
.cg-contact__details .cg-social a {
	border-color: var(--cg-edge);
	color: var(--cg-forest);
}
.cg-contact__details .cg-social a:hover {
	background: var(--cg-gold);
	border-color: var(--cg-gold);
	color: var(--cg-forest-dark);
}

.cg-contact__form { position: relative; }
@media (max-width: 860px) {
	.cg-contact__grid { grid-template-columns: 1fr; gap: 36px; }
}

/* ----------------------------- Newsletter ------------------------------ */
.cg-newsletter { background: var(--cg-ivory); }
.cg-newsletter__inner { max-width: 720px; margin: 0 auto; text-align: center; }
.cg-newsletter__body {
	font-size: clamp(16px, 2vw, 18px);
	line-height: 1.9;
	color: var(--cg-stone);
	max-width: 560px;
	margin: 0 auto 30px;
}
.cg-newsletter__consent {
	margin-top: 20px;
	font-size: 13px;
	line-height: 1.7;
	color: var(--cg-muted);
}

/* ------------------------------ Location ------------------------------- */
.cg-location { background: var(--cg-parchment); }
.cg-location__body {
	font-size: clamp(16px, 2vw, 18px);
	line-height: 1.9;
	color: var(--cg-stone);
	max-width: 700px;
	margin: 0 auto 34px;
	text-align: center;
}
.cg-location__map {
	border: 1px solid var(--cg-edge);
	border-top: 3px solid var(--cg-gold);
	border-radius: var(--cg-radius);
	overflow: hidden;
	box-shadow: 0 16px 40px rgba(27, 46, 29,0.12);
	line-height: 0;
}
.cg-location__map iframe { display: block; width: 100%; }
