/*
Theme Name:   Laura McKinzie Hinton
Theme URI:    http://localhost/lauramckinziehinton
Description:  Child theme of Twenty Twenty-Five. Custom design built with the Gutenberg block editor. All custom styling lives in this external stylesheet and theme.json — no inline CSS.
Author:       Laura McKinzie Hinton
Template:     twentytwentyfive
Version:      1.6.1
Requires at least: 6.6
Requires PHP: 7.4
License:      GNU General Public License v2 or later
License URI:  http://www.gnu.org/licenses/gpl-2.0.html
Text Domain:  lmh-child
*/

/* ==========================================================================
   Custom styles for Laura McKinzie Hinton
   Add design-specific CSS here (external stylesheet — never inline).
   Prefer theme.json for colors/typography/spacing where possible.

   SECTION MARKERS
   Every block is wrapped between a Start (S) and End (E) marker, e.g.
   a "Header S" comment, then the rules, then a "Header E" comment.
   Put each section's rules only between its own S and E markers.
   ========================================================================== */


/* ==========================================================================
   GLOBAL / LAYOUT PARTS
   ========================================================================== */

/* Header S */
/* Site Header: sticky top bar.
   Sticky must be applied to the template-part WRAPPER (<header class="wp-block-template-part">),
   NOT the inner group. The inner group's parent is only as tall as the header itself, so sticky
   there has no room to stick. The wrapper's parent (.wp-site-blocks) is the full page height,
   so sticky works and the bar stays pinned while scrolling. */
.wp-site-blocks > header.wp-block-template-part {
	position: sticky;
	top: 0;
	z-index: 100;
}

/* Header navigation link colour + hover */
.lmh-site-header .wp-block-navigation .wp-block-navigation-item__content {
	font-weight: 500;
}
.lmh-site-header .wp-block-navigation a:hover {
	color: var(--wp--preset--color--primary);
}

/* Never underline header nav links — including hover, focus, and the
   current/active page (WP adds an underline on aria-current by default) */
.lmh-site-header .wp-block-navigation a,
.lmh-site-header .wp-block-navigation a:hover,
.lmh-site-header .wp-block-navigation a:focus,
.lmh-site-header .wp-block-navigation .wp-block-navigation-item__content,
.lmh-site-header .wp-block-navigation .current-menu-item > a,
.lmh-site-header .wp-block-navigation [aria-current] {
	text-decoration: none;
}

/* Keep the site-title link the off-white brand colour, not the global link teal */
.lmh-site-header .wp-block-site-title a {
	color: var(--wp--preset--color--off-white);
	text-decoration: none;
}
/* Stop the logo from wrapping onto multiple lines */
.lmh-site-header .wp-block-site-title {
	white-space: nowrap;
}

/* "Connect with Laura" menu item styled as a pill button (desktop + mobile overlay) */
.lmh-site-header .lmh-nav-cta .wp-block-navigation-item__content {
	background-color: var(--wp--preset--color--primary);
	color: var(--wp--preset--color--base) !important;
	border-radius: 100px;
	padding: 10px 22px;
	font-family: var(--wp--preset--font-family--urbanist);
	font-weight: 600;
	transition: background-color 0.2s ease;
}
.lmh-site-header .lmh-nav-cta .wp-block-navigation-item__content:hover,
.lmh-site-header .lmh-nav-cta .wp-block-navigation-item__content:focus {
	background-color: #0089a3; /* darker teal — stays visible on the dark header */
	color: var(--wp--preset--color--base) !important;
}

/* Collapse the header nav into the hamburger on tablet & below (<=1023px)
   so the 7 menu items + CTA never overflow at mid widths.
   Above 1023px the full inline menu shows. */
@media (max-width: 1023px) {
	.lmh-site-header .wp-block-navigation__responsive-container-open {
		display: flex !important;
		color: var(--wp--preset--color--off-white);
	}
	.lmh-site-header .wp-block-navigation__responsive-container:not(.is-menu-open) {
		display: none !important;
	}

	/* Open overlay: comfortable padding so no item touches the edge */
	.lmh-site-header .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content {
		padding: 8px 28px 40px;
		gap: 22px;
	}
	/* CTA becomes a full-width centred pill, like the "Book a Conversation" button */
	.lmh-site-header .wp-block-navigation__responsive-container.is-menu-open .lmh-nav-cta {
		width: 100%;
		margin-top: 14px;
	}
	.lmh-site-header .wp-block-navigation__responsive-container.is-menu-open .lmh-nav-cta .wp-block-navigation-item__content {
		display: block;
		width: 100%;
		box-sizing: border-box;
		text-align: center;
		padding: 14px 24px;
		white-space: nowrap;
	}
}
/* Header E */


/* Footer S */
/* Footer link lists: no bullets, muted colour, spaced, hover to teal */
.lmh-footer-links {
	list-style: none;
	margin: 0;
	padding: 0;
}
.lmh-footer-links li {
	margin-bottom: 12px;
}
.lmh-footer-links a {
	font-size: 15px;
}

/* Footer navigation menu (editable WP menu) rendered vertically */
.lmh-footer-nav .wp-block-navigation__container {
	gap: 12px;
}
.lmh-footer-nav .wp-block-navigation-item__content {
	font-size: 15px;
}
/* Hover to teal (needs !important to beat WP's preset colour class) */
.lmh-footer-nav .wp-block-navigation-item__content:hover,
.lmh-footer-nav .wp-block-navigation-item__content:focus {
	color: var(--wp--preset--color--primary) !important;
}

/* Pin exact design sizes (bypass fluid clamp) */
.lmh-site-footer .lmh-footer-brand {
	font-size: 20px;
}
.lmh-site-footer .lmh-footer-desc {
	font-size: 15px;
	max-width: 280px;
}

/* Get in Touch — email with envelope icon */
.lmh-footer-contact {
	margin: 0 0 20px;
}
.lmh-email-link {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 14px;
	line-height: 1.4;
	color: var(--wp--preset--color--muted);
	text-decoration: none;
	transition: color 0.2s ease;
	white-space: nowrap;
}
.lmh-email-link span {
	overflow-wrap: normal;
	word-break: normal;
}
.lmh-email-link:hover {
	color: var(--wp--preset--color--primary);
}
.lmh-mail-icon {
	stroke: var(--wp--preset--color--primary);
	flex-shrink: 0;
	margin-top: 2px;
}
.lmh-site-footer a {
	color: var(--wp--preset--color--muted);
	text-decoration: none;
	transition: color 0.2s ease;
}
.lmh-site-footer a:hover {
	color: var(--wp--preset--color--primary);
}

/* Rounded-square social icons like the design (38px, 10px radius) */
.lmh-footer-social.wp-block-social-links .wp-social-link {
	width: 38px;
	height: 38px;
	border-radius: 10px;
}

/* Footer bottom bar */
.lmh-footer-bottom {
	gap: 12px;
}
/* Centre the copyright + legal links on phones */
@media (max-width: 600px) {
	.lmh-footer-bottom {
		flex-direction: column;
		align-items: center;
		text-align: center;
	}
	.lmh-footer-bottom p {
		text-align: center;
		width: 100%;
	}
}

/* Footer column layout — match the design's CSS grid exactly
   (brand 2.2fr, two menus 1fr each, Get in Touch 1.2fr, 60px gap) */
.lmh-site-footer .lmh-footer-grid.wp-block-columns {
	display: grid;
	grid-template-columns: 2.2fr 1fr 1fr 1.2fr;
	gap: 60px;
	align-items: start;
}

/* Tablet & small laptop: drop to 2 columns so the design 4-col grid
   never gets cramped (and the email column stays wide enough) */
@media (max-width: 1199px) {
	.lmh-site-footer .lmh-footer-grid.wp-block-columns {
		grid-template-columns: 1fr 1fr;
		gap: 40px 56px;
	}
}
/* Phones: single column */
@media (max-width: 600px) {
	.lmh-site-footer .lmh-footer-grid.wp-block-columns {
		grid-template-columns: 1fr;
		gap: 32px;
	}
}
/* Footer E */


/* ==========================================================================
   PAGE SECTIONS
   Add each page's CSS only between its own S / E markers below.
   ========================================================================== */

/* Home S */

/* Remove the theme's default 24px block gaps around <main> on the front page
   so the full-bleed dark hero sits flush under the header and above the footer
   (otherwise the white page background shows as strips top & bottom) */
.home .wp-site-blocks > main {
	margin-top: 0;
}
.home .wp-site-blocks > footer {
	margin-top: 0;
}

/* ---- Hero ---------------------------------------------------------------- */
.lmh-hero {
	padding-top: 0;
	padding-bottom: 0;
	overflow: hidden;
}

/* Two-column grid: content (wider) + portrait.
   min-height matches the design's inner area so the hero totals ~720px
   (80px top padding + 640px grid). */
.lmh-hero .lmh-hero__grid.wp-block-columns {
	display: grid;
	grid-template-columns: 1.2fr 1fr;
	gap: clamp(32px, 5vw, 72px);
	align-items: center;
	margin: 0;
	min-height: 640px;
}

/* Left column: stacked content, vertically centred in the hero */
.lmh-hero .lmh-hero__content {
	display: flex;
	flex-direction: column;
	gap: 28px;
}

/* Eyebrow pill with leading dot */
.lmh-hero__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	width: fit-content;
	max-width: 100%;
	margin: 0;
	padding: 8px 20px;
	background-color: rgba(0, 168, 188, 0.15);
	border: 1px solid rgba(0, 168, 188, 0.35);
	border-radius: 100px;
	color: var(--wp--preset--color--primary);
	font-family: var(--wp--preset--font-family--mulish);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	line-height: 1.2;
}
.lmh-hero__eyebrow::before {
	content: "";
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background-color: var(--wp--preset--color--primary);
	flex-shrink: 0;
}

/* Headline */
.lmh-hero__title {
	margin: 0;
	line-height: 1.08;
	font-weight: 700;
}
.lmh-hero__title em {
	color: var(--wp--preset--color--primary);
	font-style: normal;
}

/* Lead paragraph */
.lmh-hero__lead {
	margin: 0;
	max-width: 460px;
	font-size: 17px;
	line-height: 1.75;
}

/* Action buttons */
.lmh-hero__actions.wp-block-buttons {
	gap: 16px;
	margin-top: 4px;
}
.lmh-hero__actions .wp-block-button__link {
	padding: 16px 36px;
}
/* Outline (secondary) button */
.lmh-hero__btn-outline .wp-block-button__link {
	background-color: transparent;
	border: 2px solid rgba(251, 254, 255, 0.25);
	transition: border-color 0.2s ease, background-color 0.2s ease;
}
.lmh-hero__btn-outline .wp-block-button__link:hover,
.lmh-hero__btn-outline .wp-block-button__link:focus {
	background-color: rgba(251, 254, 255, 0.08);
	border-color: var(--wp--preset--color--primary);
	color: var(--wp--preset--color--off-white) !important;
}
/* Keep the primary hero button consistent with the header CTA on hover */
.lmh-hero__actions .wp-block-button:not(.lmh-hero__btn-outline) .wp-block-button__link:hover,
.lmh-hero__actions .wp-block-button:not(.lmh-hero__btn-outline) .wp-block-button__link:focus {
	background-color: #0089a3 !important;
}

/* Portrait: fixed 445px-wide card, centred, sitting near the bottom of the
   hero with a small gap below, rounded top corners only (matches the design) */
.lmh-hero__media {
	align-self: stretch;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	padding-bottom: 69px;
}
.lmh-hero__photo {
	width: 445px;
	max-width: 100%;
	margin: 0;
}
.lmh-hero__photo img {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 20px 20px 0 0;
}

/* Tablet & below: stack to a single column, portrait under the text */
@media (max-width: 900px) {
	.lmh-hero {
		padding-top: 48px;
		padding-bottom: 48px;
	}
	.lmh-hero .lmh-hero__grid.wp-block-columns {
		grid-template-columns: 1fr;
		gap: 24px;
		min-height: 0;
	}
	.lmh-hero .lmh-hero__content {
		justify-content: flex-start;
		padding-bottom: 0;
		text-align: center;
		align-items: center;
	}
	.lmh-hero__lead {
		margin-left: auto;
		margin-right: auto;
	}
	.lmh-hero__actions.wp-block-buttons {
		justify-content: center;
	}
	.lmh-hero__media {
		padding-bottom: 0;
		justify-content: center;
	}
	.lmh-hero__photo {
		width: auto;
		max-width: 340px;
	}
}

/* Phones: full-width buttons for easy tapping */
@media (max-width: 480px) {
	.lmh-hero__actions.wp-block-buttons {
		width: 100%;
		flex-direction: column;
	}
	.lmh-hero__actions .wp-block-button {
		width: 100%;
	}
	.lmh-hero__actions .wp-block-button__link {
		display: block;
		text-align: center;
	}
}

/* ---- About Laura --------------------------------------------------------- */
.lmh-about {
	padding-top: clamp(56px, 8vw, 100px);
	padding-bottom: clamp(56px, 8vw, 100px);
}

/* Two-column grid: intro (left) + expertise & quote (right) */
.lmh-about .lmh-about__grid.wp-block-columns {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(40px, 6vw, 80px);
	align-items: start;
	margin: 0;
}

/* Small teal uppercase eyebrow / label */
.lmh-about__eyebrow,
.lmh-about__label {
	margin: 0 0 16px;
	font-family: var(--wp--preset--font-family--mulish);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	line-height: 1.2;
}

/* Heading */
.lmh-about__title {
	margin: 0 0 24px;
	font-size: clamp(30px, 4vw, 41px);
	line-height: 1.12;
}

/* Body paragraphs */
.lmh-about__text {
	margin: 0 0 20px;
	font-size: 16px;
	line-height: 1.75;
	color: var(--wp--preset--color--contrast);
}

/* CTA button — match the design's larger padding */
.lmh-about__actions {
	margin-top: 8px;
}
.lmh-about__actions .wp-block-button__link {
	padding: 16px 36px;
}

/* Expertise pills */
.lmh-about__skills {
	list-style: none;
	margin: 12px 0 32px;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 9px;
}
.lmh-about__skills li {
	margin: 0;
	padding: 7px 16px;
	font-size: 14px;
	line-height: 1.3;
	color: var(--wp--preset--color--heading-dark);
	background-color: var(--wp--preset--color--base);
	border: 1px solid var(--wp--preset--color--light-accent);
	border-radius: 100px;
}

/* About: right-column image */
.lmh-about__photo {
	margin: 0 0 24px;
}
.lmh-about__photo img {
	width: 100%;
	height: auto;
	aspect-ratio: 16 / 10;
	object-fit: cover;
	border-radius: 20px;
	display: block;
}

/* About: "Areas of Expertise" light box */
.lmh-about__expertise.wp-block-group {
	padding: 32px;
	border-radius: 20px;
	margin-bottom: 24px;
}
.lmh-about__expertise .lmh-about__skills {
	margin-bottom: 0;
}

/* Quote card */
.lmh-about__quote.wp-block-group {
	padding: 32px;
	border-radius: 20px;
}
.lmh-about__quote-text {
	margin: 0 0 24px;
	font-family: var(--wp--preset--font-family--mulish);
	font-size: 16px;
	font-style: italic;
	line-height: 1.75;
}

/* Author row inside the quote card */
.lmh-about__author {
	gap: 14px;
	align-items: center;
}
.lmh-about__avatar {
	width: 44px;
	height: 44px;
	margin: 0;
	padding: 0;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 16px;
	flex-shrink: 0;
}
.lmh-about__author-info {
	display: flex;
	flex-direction: column;
	gap: 2px;
}
.lmh-about__author-name {
	margin: 0;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.3;
}
.lmh-about__author-title {
	margin: 0;
	font-size: 13px;
	line-height: 1.3;
}

/* Tablet & below: single column */
@media (max-width: 900px) {
	.lmh-about .lmh-about__grid.wp-block-columns {
		grid-template-columns: 1fr;
	}
}

/* Home E */


/* Journey S */
/* Journey E */


/* Why I Lead S */
.lmh-why {
	margin-block-start: 0 !important;
	padding-top: 0;
	padding-bottom: clamp(56px, 8vw, 100px);
}
.lmh-why__header {
	text-align: center;
	margin-bottom: 56px;
}
.lmh-why__eyebrow {
	margin: 0 0 16px;
	font-family: var(--wp--preset--font-family--mulish);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}
.lmh-why__title {
	margin: 0 0 20px;
	font-size: clamp(30px, 4vw, 41px);
	line-height: 1.12;
	color: var(--wp--preset--color--heading-dark);
}
.lmh-why__intro {
	margin: 0 auto;
	max-width: 620px;
	font-size: 18px;
	line-height: 1.7;
	color: var(--wp--preset--color--contrast);
}

/* Card grid */
.lmh-why__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
	align-items: stretch;
}
.lmh-why__card.wp-block-group {
	height: 100%;
	background-color: var(--wp--preset--color--base);
	border: 1px solid var(--wp--preset--color--light-accent);
	border-radius: 20px;
	padding: 40px 32px;
}
.lmh-why__icon {
	width: 60px;
	height: 60px;
	margin-bottom: 24px;
	border-radius: 18px;
	background-color: var(--wp--preset--color--light);
	color: var(--wp--preset--color--primary);
	display: flex;
	align-items: center;
	justify-content: center;
}
.lmh-why__icon svg {
	width: 26px;
	height: 26px;
}
.lmh-why__card-title {
	margin: 0 0 12px;
	font-size: 22px;
	font-weight: 700;
	line-height: 1.25;
	color: var(--wp--preset--color--heading-dark);
}
.lmh-why__card-text {
	margin: 0;
	font-size: 16px;
	line-height: 1.75;
	color: var(--wp--preset--color--contrast);
}

/* Featured (dark) middle card */
.lmh-why__card--featured.wp-block-group {
	background-color: var(--wp--preset--color--heading-dark);
	border-color: transparent;
}
.lmh-why__card--featured .lmh-why__card-title {
	color: var(--wp--preset--color--off-white);
}
.lmh-why__card--featured .lmh-why__card-text {
	color: var(--wp--preset--color--muted);
}
.lmh-why__card--featured .lmh-why__icon {
	background-color: var(--wp--preset--color--primary);
	color: var(--wp--preset--color--base);
}

/* Remove WordPress flow-layout top margin so all cards align at the same top */
.lmh-why__grid > * {
	margin-top: 0;
	margin-block-start: 0;
}
/* Left-align card contents (undo the constrained-layout auto-centering of the icon).
   Must match WP's .wp-block-group.is-layout-constrained specificity (0,2,0). */
.lmh-why__card.wp-block-group > * {
	margin-inline: 0 !important;
}
/* Hover: border turns teal, subtle lift */
.lmh-why__card {
	transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.lmh-why__card:hover {
	border-color: var(--wp--preset--color--primary);
	box-shadow: 0 14px 34px rgba(8, 54, 59, 0.10);
	transform: translateY(-4px);
}

/* Responsive */
@media (max-width: 900px) {
	.lmh-why__grid {
		grid-template-columns: 1fr;
		gap: 20px;
		max-width: 560px;
		margin-left: auto;
		margin-right: auto;
	}
}
/* Why I Lead E */


/* Building S */
.lmh-ventures {
	margin-block-start: 0 !important;
	padding-top: clamp(56px, 8vw, 80px);
	padding-bottom: clamp(56px, 8vw, 80px);
}
.lmh-ventures__grid.wp-block-columns {
	gap: clamp(36px, 5vw, 64px);
	align-items: center;
}
.lmh-ventures__eyebrow {
	margin: 0 0 16px;
	font-family: var(--wp--preset--font-family--mulish);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}
.lmh-ventures__title {
	margin: 0 0 20px;
	font-size: clamp(26px, 3.4vw, 32px);
	line-height: 1.2;
	color: var(--wp--preset--color--heading-dark);
}
.lmh-ventures__text {
	margin: 0 0 28px;
	font-size: 16px;
	line-height: 1.75;
	color: var(--wp--preset--color--contrast);
}
/* Venture cards list */
.lmh-ventures__list {
	display: flex;
	flex-direction: column;
	gap: 16px;
}
.lmh-ventures__list > * {
	margin: 0;
}
.lmh-ventures__card.wp-block-group {
	background-color: var(--wp--preset--color--base);
	border-radius: 14px;
	padding: 20px 24px;
	border-left: 3px solid var(--wp--preset--color--primary);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.lmh-ventures__card:hover {
	transform: translateX(4px);
	box-shadow: 0 10px 26px rgba(8, 54, 59, 0.08);
}
.lmh-ventures__card-title {
	margin: 0 0 4px;
	font-family: var(--wp--preset--font-family--urbanist);
	font-weight: 700;
	font-size: 17px;
	line-height: 1.25;
	color: var(--wp--preset--color--heading-dark);
}
.lmh-ventures__card-desc {
	margin: 0;
	font-size: 14px;
	line-height: 1.6;
	color: var(--wp--preset--color--contrast);
}
/* Image */
.lmh-ventures__photo img {
	width: 100%;
	aspect-ratio: 6 / 5;
	object-fit: cover;
	border-radius: 20px;
	display: block;
}

/* Responsive: stack, image on top */
@media (max-width: 900px) {
	.lmh-ventures__grid.wp-block-columns {
		flex-direction: column;
	}
	.lmh-ventures__photo img {
		aspect-ratio: 16 / 10;
	}
}
/* Building E */


/* Insights S */
/* Insights E */


/* Speaking S */
.lmh-speaking {
	margin-block-start: 0 !important;
	padding-top: clamp(56px, 8vw, 80px);
	padding-bottom: clamp(56px, 8vw, 80px);
}
.lmh-speaking__grid.wp-block-columns {
	gap: clamp(36px, 5vw, 64px);
	align-items: center;
}
.lmh-speaking__eyebrow {
	margin: 0 0 16px;
	font-family: var(--wp--preset--font-family--mulish);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}
.lmh-speaking__title {
	margin: 0 0 20px;
	font-size: clamp(26px, 3.4vw, 32px);
	line-height: 1.2;
	color: var(--wp--preset--color--heading-dark);
}
.lmh-speaking__text {
	margin: 0 0 28px;
	font-size: 16px;
	line-height: 1.75;
	color: var(--wp--preset--color--contrast);
}
/* Topic list with teal dot bullets */
.lmh-speaking__topics {
	list-style: none;
	margin: 0 0 32px;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 14px;
}
.lmh-speaking__topics li {
	position: relative;
	margin: 0;
	padding-left: 20px;
	font-size: 15px;
	line-height: 1.4;
	color: var(--wp--preset--color--contrast);
}
.lmh-speaking__topics li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.5em;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background-color: var(--wp--preset--color--primary);
}
/* Image */
.lmh-speaking__photo img {
	width: 100%;
	aspect-ratio: 6 / 5;
	object-fit: cover;
	border-radius: 20px;
	display: block;
}

/* Responsive: stack + hide the big empty column gap */
@media (max-width: 900px) {
	.lmh-speaking__grid.wp-block-columns {
		flex-direction: column;
	}
	.lmh-speaking__media {
		order: -1;
	}
	.lmh-speaking__photo img {
		aspect-ratio: 16 / 10;
	}
}
/* Speaking E */


/* Beyond S */
/* Beyond E */


/* Get in Touch S */
.lmh-contact {
	margin-block-start: 0 !important;
}
.lmh-contact__grid.wp-block-columns {
	gap: 0 !important;
	align-items: stretch;
	margin: 0;
}
.lmh-contact__grid.wp-block-columns > .wp-block-column {
	margin: 0;
}
/* Left image fills the whole column edge-to-edge */
.lmh-contact__media {
	padding: 0;
}
.lmh-contact__photo {
	margin: 0;
	height: 100%;
}
.lmh-contact__photo img {
	width: 100%;
	height: 100%;
	min-height: 420px;
	object-fit: cover;
	display: block;
}
/* Right white form panel */
.lmh-contact__form {
	background-color: var(--wp--preset--color--base);
	padding: clamp(40px, 5vw, 72px) clamp(24px, 4vw, 64px);
}
.lmh-contact__eyebrow {
	margin: 0 0 14px;
	font-family: var(--wp--preset--font-family--mulish);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}
.lmh-contact__title {
	margin: 0 0 16px;
	font-size: clamp(28px, 3.6vw, 38px);
	line-height: 1.15;
	color: var(--wp--preset--color--heading-dark);
}
.lmh-contact__text {
	margin: 0 0 28px;
	font-size: 16px;
	line-height: 1.7;
	color: var(--wp--preset--color--contrast);
}

/* --- Contact Form 7 fields --- */
.lmh-contact .lmh-field-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}
.lmh-contact .lmh-field {
	margin-bottom: 18px;
}
.lmh-contact .lmh-field label {
	display: block;
	margin-bottom: 8px;
	font-family: var(--wp--preset--font-family--mulish);
	font-size: 14px;
	font-weight: 600;
	color: var(--wp--preset--color--heading-dark);
}
.lmh-contact input[type="text"],
.lmh-contact input[type="email"],
.lmh-contact input[type="tel"],
.lmh-contact textarea {
	width: 100%;
	box-sizing: border-box;
	background-color: var(--wp--preset--color--base);
	border: 1px solid var(--wp--preset--color--light-accent);
	border-radius: 10px;
	padding: 13px 16px;
	font-family: var(--wp--preset--font-family--mulish);
	font-size: 15px;
	color: var(--wp--preset--color--contrast);
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.lmh-contact input::placeholder,
.lmh-contact textarea::placeholder {
	color: var(--wp--preset--color--muted-2);
}
.lmh-contact input[type="text"]:focus,
.lmh-contact input[type="email"]:focus,
.lmh-contact input[type="tel"]:focus,
.lmh-contact textarea:focus {
	outline: none;
	border-color: var(--wp--preset--color--primary);
	box-shadow: 0 0 0 3px rgba(0, 168, 188, 0.12);
}
.lmh-contact textarea {
	min-height: 120px;
	resize: vertical;
}
/* Consent row */
.lmh-contact .lmh-consent {
	margin: 6px 0 24px;
	font-size: 13px;
	line-height: 1.5;
	color: var(--wp--preset--color--muted-2);
}
.lmh-contact .lmh-consent .wpcf7-list-item {
	margin: 0;
	display: flex;
	align-items: flex-start;
	gap: 9px;
}
.lmh-contact .lmh-consent input[type="checkbox"] {
	margin-top: 2px;
	width: 16px;
	height: 16px;
	accent-color: var(--wp--preset--color--primary);
	flex-shrink: 0;
}
/* Submit button — teal pill */
.lmh-contact .wpcf7-submit {
	background-color: var(--wp--preset--color--primary);
	color: var(--wp--preset--color--base);
	border: none;
	border-radius: 100px;
	padding: 14px 34px;
	font-family: var(--wp--preset--font-family--urbanist);
	font-weight: 600;
	font-size: 15px;
	cursor: pointer;
	transition: background-color 0.2s ease;
}
.lmh-contact .wpcf7-submit:hover {
	background-color: var(--wp--preset--color--heading-dark);
}
/* CF7 response messages */
.lmh-contact .wpcf7-response-output {
	margin: 16px 0 0;
	border-radius: 10px;
	font-size: 14px;
}

/* Responsive: stack, image on top */
@media (max-width: 900px) {
	.lmh-contact__grid.wp-block-columns {
		flex-direction: column;
	}
	.lmh-contact__photo img {
		min-height: 260px;
		aspect-ratio: 16 / 9;
	}
}
@media (max-width: 600px) {
	.lmh-contact .lmh-field-row {
		grid-template-columns: 1fr;
	}
}
/* Get in Touch E */
