/**
 * Pattern Styles — Tukumaaq
 *
 * Scoped styles for block patterns. Each section's layout, spacing,
 * and component rules live here instead of global.css.
 */

/* ── Hero Home ────────────────────────────────────────────────────────────── */

.tk-hero-home { width: 100%; }
.tk-hero-home .wp-block-group > p {
	max-width: 520px;
	text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}
.tk-hero-home .wp-block-buttons { margin-top: var(--tk-space-lg) !important; }

.tk-hero-home > .wp-block-cover__background {
	background-color: var(--tk-color-navy) !important;
	opacity: 0.5 !important;
}

/* Hero "Book Now" — white fill */
.tk-hero-home .wp-block-button:not(.is-style-outline) .wp-block-button__link {
	background-color: var(--tk-color-white);
	color: var(--tk-color-navy);
	border-color: var(--tk-color-white);
	text-transform: none;
	transition: all 250ms ease;
}
.tk-hero-home .wp-block-button:not(.is-style-outline) .wp-block-button__link:hover {
	background-color: var(--tk-color-white);
	border-color: var(--tk-color-white);
	color: var(--tk-color-navy);
	transform: translateY(-2px);
	box-shadow: 0 4px 20px rgba(9, 45, 58, 0.2);
}

/* Hero "Contact Us" — white outline */
.tk-hero-home .wp-block-button.is-style-outline .wp-block-button__link {
	color: var(--tk-color-white);
	border-color: var(--tk-color-white);
	text-transform: none;
	transition: all 250ms ease;
}
.tk-hero-home .wp-block-button.is-style-outline .wp-block-button__link:hover {
	background-color: rgba(255, 255, 255, 0.15);
	border-color: var(--tk-color-white);
	color: var(--tk-color-white);
	transform: translateY(-2px);
}

/* ── About Block ──────────────────────────────────────────────────────────── */

.tk-pattern-about img {
	border-radius: var(--tk-radius-md);
}

/* ── Hotel Cards (shared) ─────────────────────────────────────────────────── */

.tk-hotel-card {
	text-align: left;
	background: #ffffff;
	border-radius: var(--tk-radius-md);
	padding: 8px;
	box-shadow: 0 2px 8px rgba(9, 45, 58, 0.08);
	transition: box-shadow 250ms ease, transform 250ms ease;
	overflow: hidden;
}

.tk-hotel-card:hover {
	box-shadow: 0 4px 20px rgba(9, 45, 58, 0.12);
	transform: translateY(-4px);
}

.tk-hotel-card .wp-block-image {
	margin-bottom: var(--tk-space-sm) !important;
	border-radius: var(--tk-radius-sm);
	overflow: hidden;
}

.tk-hotel-card .wp-block-image img {
	border-radius: var(--tk-radius-sm);
	width: 100%;
	height: auto;
	display: block;
}

.tk-hotel-card h3 {
	margin-top: 0 !important;
	margin-bottom: var(--tk-gap-tight) !important;
	padding: 0 8px;
}

.tk-hotel-card p {
	margin-top: 0 !important;
	padding: 0 8px var(--tk-space-md);
	font-size: 18px;
}

/* Hotels header — title + button side-by-side */
.tk-hotels-header {
	margin-bottom: var(--tk-gap-section) !important;
}

.tk-hotels-header .wp-block-buttons {
	flex-shrink: 0;
}

/* ── Amenities Grid — CSS Grid (rendered via render_block filter) ─────────── */

.tk-amenities-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: var(--tk-space-md) var(--tk-space-lg);
}

/* Collapse WP block gap between the two amenity grids */
.tk-amenities-grid + .tk-amenities-grid {
	margin-top: var(--tk-space-lg) !important;
}

.tk-amenity-item {
	text-align: center;
}

.tk-amenity-item img {
	width: 48px;
	height: 48px;
	border-radius: 0;
	margin: 0 auto var(--tk-space-sm);
	display: block;
	background: transparent;
}

.tk-amenity-item p {
	font-size: 0.9375rem;
	font-weight: 600;
	line-height: 1.3;
	color: var(--tk-color-navy);
	margin: 0;
}

/* ── Highlights Grid — CSS Grid (rendered via render_block filter) ────────── */

.tk-highlights-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}

.tk-highlight-card {
	position: relative;
	text-align: center;
	padding: 36px 22px 32px;
	border-radius: 16px;
	border: 1px solid rgba(17, 94, 131, 0.12);
	background: var(--tk-color-white);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	align-items: center;
	transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.tk-highlight-card::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(155deg, var(--tk-color-sky), var(--tk-color-teal));
	opacity: 0;
	transition: opacity 0.5s cubic-bezier(0.23, 1, 0.32, 1);
	z-index: 0;
}

.tk-highlight-card > * {
	position: relative;
	z-index: 1;
}

.tk-highlight-card:hover {
	transform: translateY(-8px);
	border-color: transparent;
	box-shadow:
		0 12px 32px rgba(9, 45, 58, 0.08),
		0 4px 12px rgba(9, 45, 58, 0.05);
}

.tk-highlight-card:hover::before {
	opacity: 1;
}

.tk-highlight-card h3,
.tk-highlight-card h4,
.tk-highlight-card p {
	transition: color 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.tk-highlight-card:hover h3,
.tk-highlight-card:hover h4 { color: var(--tk-color-white); }
.tk-highlight-card:hover p  { color: rgba(255, 255, 255, 0.78); }

/* ── Card icon ── */
.tk-highlight-card img {
	width: 130px;
	height: 116px;
	border-radius: 0;
	padding: 0;
	margin: 0 auto 22px;
	display: block;
	background: transparent;
	object-fit: contain;
	transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1),
	            filter 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.tk-highlight-card:hover img {
	transform: scale(1.08) translateY(-4px);
	filter: brightness(0) invert(1);
}

/* ── Card title ── */
.tk-highlight-card__title,
.tk-highlight-card h4 {
	font-family: var(--wp--preset--font-family--ilisarniq);
	font-weight: 700;
	font-size: 18px;
	color: var(--tk-color-navy);
	margin: 0 0 10px;
	line-height: 1.3;
}

/* ── Card divider ── */
.tk-highlight-divider {
	width: 28px;
	height: 2px;
	border: none;
	background: var(--tk-color-teal);
	border-radius: 1px;
	margin: 0 auto 12px;
	opacity: 0.35;
	transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.tk-highlight-card:hover .tk-highlight-divider {
	background: var(--tk-color-white);
	opacity: 0.4;
	width: 36px;
}

/* ── Card description ── */
.tk-highlight-card p {
	margin: 0;
	color: var(--tk-color-text);
	font-size: 1rem;
	line-height: 1.6;
}


/* ── Room Features — badge-style grid ─────────────────────────────────────── */

.tk-pattern-room-features {
	margin-top: 0 !important;
	padding-top: 0 !important;
}

.tk-pattern-room-features h2 {
	margin-bottom: var(--tk-space-lg) !important;
}

.tk-room-features-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 12px;
}

.tk-room-feature {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	padding: 10px 14px;
	border-radius: var(--tk-radius-md);
	background: var(--tk-color-white);
	border: 1.5px solid rgba(9, 45, 58, 0.15);
	font-size: 1rem;
	color: var(--tk-color-navy);
	transition: border-color var(--tk-transition-base), box-shadow var(--tk-transition-base);
}

.tk-room-feature:hover {
	border-color: rgba(110, 204, 224, 0.4);
	box-shadow: 0 4px 16px rgba(9, 45, 58, 0.06);
}

.tk-room-feature__icon {
	width: 36px;
	height: 36px;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

.tk-room-feature__icon img {
	border-radius: 0;
}

.tk-room-feature__label,
.tk-room-feature p {
	white-space: normal;
	min-width: 0;
	overflow-wrap: break-word;
	word-break: break-word;
	hyphens: auto;
	margin: 0;
}

.tk-room-feature {
	min-width: 0;
}

/* ── Additional features label ── */
.tk-room-features-label {
	margin-top: var(--tk-space-lg) !important;
	margin-bottom: var(--tk-space-sm) !important;
	font-size: var(--tk-size-h4) !important;
	color: var(--tk-color-navy) !important;
}

/* ── Additional features — dashed, lighter ── */
.tk-room-feature--additional {
	background: transparent;
	border-style: dashed;
	border-color: rgba(9, 45, 58, 0.18);
	color: var(--tk-color-text);
	font-size: 1rem;
	padding: 10px 14px;
}

.tk-room-feature--additional .tk-room-feature__icon {
	width: 44px;
	height: 44px;
	background: transparent;
	border-radius: 0;
}

/* ── Collapsible section (reusable) ── */
.tk-collapsible--hidden {
	display: none;
}

.tk-collapsible-content {
	margin-top: var(--tk-space-md);
}

/* Collapsible content: force single-column compact list */
.tk-collapsible-content .tk-room-features-grid {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.tk-collapsible-content .tk-room-feature {
	width: 100%;
	border: none;
	border-bottom: 1px solid rgba(9, 45, 58, 0.08);
	border-radius: 0;
	background: transparent;
	padding: 8px 0;
	font-size: 0.9375rem;
	font-weight: 600;
	color: var(--tk-color-teal);
}

.tk-collapsible-content .tk-room-feature p {
	color: var(--tk-color-teal);
}

.tk-collapsible-content .tk-room-feature:last-child {
	border-bottom: none;
}

.tk-collapsible-content .tk-room-feature:hover {
	box-shadow: none;
	border-color: rgba(9, 45, 58, 0.08);
	color: var(--tk-color-navy);
}

.tk-collapsible-content .tk-room-feature:hover p {
	color: var(--tk-color-navy);
}

.tk-collapsible-toggle {
	display: inline-block;
	margin-top: var(--tk-space-md);
	padding: 0.75em 2em;
	background-color: var(--tk-color-sky);
	color: var(--tk-color-navy);
	border: 2px solid var(--tk-color-sky);
	border-radius: 100px;
	font-family: var(--tk-font-heading);
	font-size: var(--tk-size-btn, 1.125rem);
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 0.03em;
	cursor: pointer;
	transition: all 250ms ease;
}

.tk-collapsible-toggle:hover {
	background-color: var(--tk-color-yellow);
	border-color: var(--tk-color-yellow);
	color: var(--tk-color-navy);
	transform: translateY(-2px);
}

/* ── Room feature — text-only variant (no icon) ── */
.tk-room-feature--text-only .tk-room-feature__icon {
	display: none;
}

/* ── CTA Plan Visit ───────────────────────────────────────────────────────── */

.tk-pattern-cta img {
	border-radius: var(--tk-radius-md);
}

/* Primary button on sky-blue background — flip to navy + white */
.tk-pattern-cta .wp-block-button:not(.is-style-outline) .wp-block-button__link {
	background-color: var(--tk-color-navy);
	color: var(--tk-color-white);
	border-color: var(--tk-color-navy);
	transition: all 250ms ease;
}
.tk-pattern-cta .wp-block-button:not(.is-style-outline) .wp-block-button__link:hover {
	background-color: var(--tk-color-yellow);
	color: var(--tk-color-navy);
	border-color: var(--tk-color-yellow);
	transform: translateY(-2px);
	box-shadow: 0 4px 20px rgba(9, 45, 58, 0.2);
}

/* Outline button on sky-blue background — navy border + text */
.tk-pattern-cta .wp-block-button.is-style-outline .wp-block-button__link {
	color: var(--tk-color-navy);
	border-color: var(--tk-color-navy);
	transition: all 250ms ease;
}
.tk-pattern-cta .wp-block-button.is-style-outline .wp-block-button__link:hover {
	background-color: var(--tk-color-yellow);
	color: var(--tk-color-navy);
	border-color: var(--tk-color-yellow);
	transform: translateY(-2px);
}

/* ── Hotel Feature ────────────────────────────────────────────────────────── */

.tk-pattern-hotel-feature {
	padding-bottom: 1rem;
}

.tk-pattern-hotel-feature img {
	border-radius: var(--tk-radius-md);
}

/* ── Content Image Right / Left ──────────────────────────────────────────── */

.tk-pattern-content-right img,
.tk-pattern-content-left img {
	border-radius: var(--tk-radius-md);
}

/* ── Amenities Inline ─────────────────────────────────────────────────────── */

.tk-amenity-inline .wp-block-image {
	flex-shrink: 0;
}

.tk-amenity-inline .wp-block-image img {
	border-radius: 0 !important;
}

/* ══════════════════════════════════════════════════════════════════════════════
   RESPONSIVE — Tablet (≤1024px)
   ══════════════════════════════════════════════════════════════════════════════ */

@media (max-width: 1024px) {

	/* Hotels header — wrap on tablet */
	.tk-hotels-header {
		flex-wrap: wrap;
		gap: var(--tk-space-sm);
	}

	/* Section header — reduce margin on tablet */
	.tk-section-header {
		margin-bottom: 48px !important;
	}

	/* Highlights grid — 2x2 on tablet */
	.tk-highlights-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 16px;
	}
}

/* ══════════════════════════════════════════════════════════════════════════════
   RESPONSIVE — Mobile (≤768px)
   ══════════════════════════════════════════════════════════════════════════════ */

@media (max-width: 768px) {

	/* Hero + CTA buttons — stack full-width on mobile */
	.tk-hero-home .wp-block-buttons,
	.tk-pattern-cta .wp-block-buttons {
		flex-direction: column !important;
		align-items: stretch !important;
		width: 100% !important;
	}

	.tk-hero-home .wp-block-button,
	.tk-pattern-cta .wp-block-button {
		width: 100% !important;
	}

	.tk-hero-home .wp-block-button__link,
	.tk-pattern-cta .wp-block-button__link {
		width: 100% !important;
		justify-content: center !important;
		text-align: center !important;
	}

	/* Hotels header — align button flush left, keep vertical spacing */
	.tk-hotels-header {
		justify-content: flex-start !important;
		column-gap: 0 !important;
	}

	/* Amenities inline — full width on mobile */
	.tk-amenities-inline-grid.wp-block-columns {
		flex-wrap: wrap !important;
		flex-direction: column !important;
	}

	.tk-amenities-inline-grid.wp-block-columns > .wp-block-column {
		flex-basis: 100% !important;
		flex-grow: 0 !important;
	}

	.tk-amenities-inline-grid.wp-block-columns + .tk-amenities-inline-grid.wp-block-columns {
		margin-top: var(--tk-space-sm) !important;
	}

	/* Hotel cards — keep 32px image gap on mobile */
	.tk-hotel-card .wp-block-image {
		margin-bottom: 2rem !important;
	}

	/* Room features — tighter padding on tablet (columns handled by auto-fit) */
	.tk-room-feature {
		padding: 12px 18px;
		font-size: var(--tk-size-xs);
	}

	/* Amenities + Highlights grids handled by CSS Grid — no overrides needed at 768px */

	/* Scroll variant — drag-friendly carousel on mobile, hidden scrollbar */
	.is-scroll .tk-hotels-scroll-track.wp-block-columns {
		flex-wrap: nowrap !important;
		flex-direction: row !important;
		overflow-x: auto;
		scroll-snap-type: x mandatory;
		-webkit-overflow-scrolling: touch;
		gap: var(--tk-space-md);
		padding-bottom: var(--tk-space-sm);
		scrollbar-width: none; /* Firefox */
	}

	.is-scroll .tk-hotels-scroll-track.wp-block-columns::-webkit-scrollbar {
		display: none; /* Chrome, Safari, Edge */
	}

	.is-scroll .tk-hotels-scroll-track.wp-block-columns > .wp-block-column {
		flex: 0 0 80vw !important;
		scroll-snap-align: start;
	}
}

/* ══════════════════════════════════════════════════════════════════════════════
   RESPONSIVE — Small phones (≤480px)
   ══════════════════════════════════════════════════════════════════════════════ */

@media (max-width: 480px) {

	/* Amenities — 2 columns on small screens */
	.tk-amenities-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	/* Highlights — single column on small phones */
	.tk-highlights-grid {
		grid-template-columns: 1fr;
		gap: 14px;
		max-width: 360px;
		margin: 0 auto;
	}

	.tk-highlight-card {
		padding: 28px 20px 24px;
	}

	.tk-highlight-card img {
		width: 80px;
		height: 72px;
		margin-bottom: 16px;
	}
}

/* ── Contact Page — 2-column layout ──────────────────────────────────────── */

.tk-contact-section {
	max-width: 1220px;
	margin: 0 auto;
}

/* ── Contact Page — Gravity Forms ────────────────────────────────────────── */

/* Field labels */
.tk-contact-form .gform_wrapper .gfield_label,
.tk-contact-form .gform_wrapper legend.gfield_label,
.tk-contact-form .gform_wrapper.gravity-theme .gfield_label,
.tk-contact-form .gform_wrapper.gravity-theme legend.gfield_label {
	font-family: var(--tk-font-body) !important;
	font-size: 1rem !important;
	font-weight: 700 !important;
	color: #4a4872 !important;
	margin-bottom: 0.5rem !important;
}

/* Required asterisk — larger and visible */
.tk-contact-form .gform_wrapper .gfield_required,
.tk-contact-form .gform_wrapper.gravity-theme .gfield_required {
	color: #A8916A !important;
	font-size: 1.25rem !important;
	font-weight: 700 !important;
	line-height: 1 !important;
}

/* Hide form title and required legend */
.tk-contact-form .gform_wrapper .gform_heading,
.tk-contact-form .gform_wrapper .gform_title,
.tk-contact-form .gform_wrapper .gform_required_legend,
.tk-contact-form .gform_wrapper.gravity-theme .gform_heading,
.tk-contact-form .gform_wrapper.gravity-theme .gform_title,
.tk-contact-form .gform_wrapper.gravity-theme .gform_required_legend {
	display: none !important;
}

/* Text inputs, selects, textareas */
.tk-contact-form .gform_wrapper input[type="text"],
.tk-contact-form .gform_wrapper input[type="email"],
.tk-contact-form .gform_wrapper input[type="tel"],
.tk-contact-form .gform_wrapper select,
.tk-contact-form .gform_wrapper textarea,
.tk-contact-form .gform_wrapper.gravity-theme input[type="text"],
.tk-contact-form .gform_wrapper.gravity-theme input[type="email"],
.tk-contact-form .gform_wrapper.gravity-theme input[type="tel"],
.tk-contact-form .gform_wrapper.gravity-theme select,
.tk-contact-form .gform_wrapper.gravity-theme textarea {
	font-family: var(--tk-font-body) !important;
	font-size: 1rem !important;
	color: var(--tk-color-navy) !important;
	background-color: #FFFFFF !important;
	border: 2px solid var(--tk-color-sky) !important;
	border-radius: 12px !important;
	height: 72px !important;
	padding: 0 1.25rem !important;
	transition: border-color 150ms ease, background-color 150ms ease !important;
	box-shadow: none !important;
}

.tk-contact-form .gform_wrapper input:focus,
.tk-contact-form .gform_wrapper select:focus,
.tk-contact-form .gform_wrapper textarea:focus {
	outline: none !important;
	box-shadow: none !important;
	background-color: #FFFFFF !important;
	border-color: var(--tk-color-yellow) !important;
}

/* Textarea — fixed height, rounded corners (not full pill) */
.tk-contact-form .gform_wrapper textarea,
.tk-contact-form .gform_wrapper.gravity-theme textarea {
	height: 142px !important;
	min-height: auto !important;
	resize: vertical;
	border-radius: 12px !important;
	padding: 0.875rem 1.25rem !important;
}

/* Placeholder text */
.tk-contact-form .gform_wrapper input::placeholder,
.tk-contact-form .gform_wrapper textarea::placeholder {
	color: #9795b5 !important;
}

/* Select dropdown arrow */
.tk-contact-form .gform_wrapper select,
.tk-contact-form .gform_wrapper.gravity-theme select {
	appearance: none !important;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%234a4872' d='M1.41 0L6 4.58 10.59 0 12 1.41l-6 6-6-6z'/%3E%3C/svg%3E") !important;
	background-repeat: no-repeat !important;
	background-position: right 1.25rem center !important;
	padding-right: 2.75rem !important;
}

/* Field spacing */
.tk-contact-form .gform_wrapper .gfield,
.tk-contact-form .gform_wrapper.gravity-theme .gfield {
	margin-bottom: 0.75rem !important;
	padding-bottom: 0 !important;
	padding-top: 0 !important;
}

/* Kill any extra spacing GF adds inside fields */
.tk-contact-form .gform_wrapper .gfield .ginput_container,
.tk-contact-form .gform_wrapper.gravity-theme .gfield .ginput_container {
	margin-top: 0.25rem !important;
}

/* Label-to-input gap */
.tk-contact-form .gform_wrapper .gfield_label,
.tk-contact-form .gform_wrapper.gravity-theme .gfield_label {
	margin-bottom: 0.25rem !important;
}

/* Remove any padding/margin on the form body */
.tk-contact-form .gform_wrapper .gform_body,
.tk-contact-form .gform_wrapper.gravity-theme .gform_body {
	padding: 0 !important;
	margin: 0 !important;
}

.tk-contact-form .gform_wrapper .gform_fields,
.tk-contact-form .gform_wrapper.gravity-theme .gform_fields {
	gap: 0 !important;
	grid-row-gap: 0 !important;
	row-gap: 0 !important;
}

/* Submit button */
.tk-contact-form .gform_wrapper .gform_button,
.tk-contact-form .gform_wrapper input[type="submit"],
.tk-contact-form .gform_wrapper.gravity-theme .gform_button,
.tk-contact-form .gform_wrapper.gravity-theme input[type="submit"] {
	display: inline-block !important;
	font-family: var(--tk-font-heading) !important;
	font-size: 1.125rem !important;
	font-weight: 900 !important;
	text-transform: uppercase !important;
	letter-spacing: 0.03em !important;
	background-color: #6ECCE0 !important;
	color: #092D3A !important;
	border: none !important;
	border-radius: 100px !important;
	padding: 18px 36px !important;
	cursor: pointer;
	transition: background-color 250ms ease !important;
	width: auto !important;
}

.tk-contact-form .gform_wrapper .gform_button:hover,
.tk-contact-form .gform_wrapper input[type="submit"]:hover {
	background-color: #F7DE79 !important;
	color: #092D3A !important;
}

/* Validation — error state */
.tk-contact-form .gform_wrapper .gfield_error input,
.tk-contact-form .gform_wrapper .gfield_error select,
.tk-contact-form .gform_wrapper .gfield_error textarea {
	border-color: #c0392b !important;
	box-shadow: none !important;
}

.tk-contact-form .gform_wrapper .gfield_error .gfield_label {
	color: #c0392b !important;
}

.tk-contact-form .gform_wrapper .validation_message {
	font-size: 0.8125rem !important;
	color: #c0392b !important;
	margin-top: 0.375rem !important;
}

/* Confirmation message */
.tk-contact-form .gform_wrapper .gform_confirmation_message {
	font-family: var(--tk-font-body);
	font-size: 1.125rem;
	color: var(--tk-color-navy);
	padding: var(--tk-space-lg);
	background-color: #f0faf5;
	border-left: 4px solid var(--tk-color-teal);
	border-radius: 4px;
}

/* Footer / honeypot — hide default GF footer padding */
.tk-contact-form .gform_wrapper .gform_footer,
.tk-contact-form .gform_wrapper.gravity-theme .gform_footer {
	margin-top: 1.5rem !important;
	padding-top: 0 !important;
}

/* ── Contact Page Responsive ─────────────────────────────────────────────── */

@media (max-width: 768px) {

	/* Stack columns on mobile */
	.tk-contact-section.wp-block-columns {
		flex-direction: column !important;
		gap: 0 !important;
	}

	.tk-contact-section.wp-block-columns > .wp-block-column {
		flex-basis: 100% !important;
	}

	/* Details column first, form column second */
	.tk-contact-section > .wp-block-column:first-child {
		order: 1;
		padding-bottom: var(--tk-space-lg) !important;
		margin-bottom: var(--tk-space-lg) !important;
		border-bottom: 1px solid #e7e6f2;
	}

	.tk-contact-section > .wp-block-column:last-child {
		order: 2;
	}

	/* Shorter inputs on mobile */
	.tk-contact-form .gform_wrapper input[type="text"],
	.tk-contact-form .gform_wrapper input[type="email"],
	.tk-contact-form .gform_wrapper input[type="tel"],
	.tk-contact-form .gform_wrapper select {
		height: 56px !important;
	}

	.tk-contact-form .gform_wrapper textarea {
		height: 120px !important;
	}

	/* Full-width submit on mobile */
	.tk-contact-form .gform_wrapper .gform_button,
	.tk-contact-form .gform_wrapper input[type="submit"] {
		width: 100% !important;
		text-align: center !important;
	}
}
