/**
 * Romkes Gartenstudio — Custom CSS
 * Overrides not expressible in theme.json.
 */

/* ===========================
   Design Tokens
   =========================== */
:root {
	--romkes-border: rgba(61, 90, 58, 0.18);
	--romkes-transition: 0.3s ease;
}

/* ===========================
   Global
   =========================== */

/* Subtle paper texture overlay */
body::after {
	content: '';
	position: fixed;
	inset: 0;
	pointer-events: none;
	z-index: 9999;
	opacity: 0.025;
	background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Smooth scroll with offset for sticky header */
html {
	scroll-behavior: smooth;
	scroll-padding-top: 80px;
}

/* Long German word overflow protection */
h1, h2, h3, h4, p, li, figcaption {
	overflow-wrap: break-word;
	hyphens: auto;
}

/* Skip link (visually hidden until focused) */
.skip-link.screen-reader-text {
	position: absolute;
	left: -9999px;
	top: auto;
	width: 1px;
	height: 1px;
	overflow: hidden;
	z-index: 100000;
	padding: 0.5rem 1rem;
	background: var(--wp--preset--color--primary);
	color: var(--wp--preset--color--surface);
	font-size: 0.9rem;
	font-weight: 600;
	text-decoration: none;
	border-radius: 0 0 5px 5px;
}
.skip-link.screen-reader-text:focus {
	left: 50%;
	transform: translateX(-50%);
	top: 0;
	width: auto;
	height: auto;
}

/* Global focus ring */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
[tabindex]:focus-visible {
	outline: 2px solid var(--wp--preset--color--primary);
	outline-offset: 2px;
}

/* ===========================
   Header — Sticky blur
   =========================== */
.wp-block-group[class*="has-bg-background-color"][style*="sticky"] {
	backdrop-filter: blur(16px);
	background: rgba(244, 241, 235, 0.88) !important;
	border-bottom: 1px solid var(--romkes-border);
}

/* ===========================
   Nav CTA button
   =========================== */
.wp-block-navigation-item.is-style-nav-cta .wp-block-navigation-item__content {
	background: var(--wp--preset--color--primary);
	color: var(--wp--preset--color--surface) !important;
	padding: 0.45rem 1.1rem;
	border-radius: 5px;
	text-transform: none;
	font-size: 0.85rem;
	letter-spacing: 0.01em;
	transition: background var(--romkes-transition);
}
.wp-block-navigation-item.is-style-nav-cta .wp-block-navigation-item__content:hover {
	background: var(--wp--preset--color--primary-light);
}

/* Mobile nav overlay styling */
.wp-block-navigation__responsive-container.is-menu-open {
	background: var(--wp--preset--color--bg) !important;
	padding: 2rem;
}
.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-item__content {
	font-size: 1.1rem;
	padding: 0.75rem 0;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-weight: 600;
}

/* ===========================
   Section Labels — Lighter treatment
   =========================== */
.is-style-section-label {
	font-size: 0.78rem !important;
	font-weight: 500 !important;
	text-transform: uppercase;
	letter-spacing: 0.18em;
}

/* ===========================
   Hero — Gradient overlay
   =========================== */
.romkes-hero-gradient .wp-block-cover__background {
	display: none !important;
}
.romkes-hero-gradient::after {
	content: '';
	position: absolute;
	inset: 0;
	z-index: 1;
	pointer-events: none;
	background: linear-gradient(to bottom,
		rgba(28, 31, 26, 0.1) 0%,
		rgba(28, 31, 26, 0.05) 40%,
		rgba(244, 241, 235, 0.5) 70%,
		rgba(244, 241, 235, 1) 92%);
}
.romkes-hero-gradient .wp-block-cover__inner-container {
	z-index: 2 !important;
	position: relative;
}

/* Hero buttons — ensure visibility over the gradient fade */
.romkes-hero-gradient .wp-block-button.is-style-btn-dark .wp-block-button__link {
	background: var(--wp--preset--color--primary) !important;
	color: #fff !important;
	font-weight: 600;
	box-shadow: 0 2px 12px rgba(28, 31, 26, 0.25);
}
.romkes-hero-gradient .wp-block-button.is-style-btn-dark .wp-block-button__link:hover {
	background: var(--wp--preset--color--primary-light) !important;
}
.romkes-hero-gradient .wp-block-button.is-style-outline .wp-block-button__link {
	color: var(--wp--preset--color--dark) !important;
	border: 2px solid var(--wp--preset--color--dark) !important;
	background: rgba(244, 241, 235, 0.6) !important;
	font-weight: 600;
}
.romkes-hero-gradient .wp-block-button.is-style-outline .wp-block-button__link:hover {
	background: var(--wp--preset--color--dark) !important;
	color: var(--wp--preset--color--bg) !important;
}

/* Hero staggered fade-up animation */
@keyframes fadeUp {
	from { opacity: 0; transform: translateY(16px); }
	to { opacity: 1; transform: translateY(0); }
}
.romkes-hero-gradient .wp-block-cover__inner-container > .wp-block-group > * {
	animation: fadeUp 0.7s ease both;
}
.romkes-hero-gradient .wp-block-cover__inner-container > .wp-block-group > *:nth-child(1) { animation-delay: 0.2s; }
.romkes-hero-gradient .wp-block-cover__inner-container > .wp-block-group > *:nth-child(2) { animation-delay: 0.35s; }
.romkes-hero-gradient .wp-block-cover__inner-container > .wp-block-group > *:nth-child(3) { animation-delay: 0.5s; }
.romkes-hero-gradient .wp-block-cover__inner-container > .wp-block-group > *:nth-child(4) { animation-delay: 0.65s; }

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
	.romkes-hero-gradient .wp-block-cover__inner-container > .wp-block-group > *,
	.romkes-reveal {
		animation: none !important;
		opacity: 1 !important;
		transform: none !important;
		transition: none !important;
	}
}

/* Hero scroll indicator */
.romkes-hero-gradient .wp-block-cover__inner-container::after {
	content: '';
	position: fixed;
	bottom: 2rem;
	left: 50%;
	transform: translateX(-50%);
	width: 24px;
	height: 40px;
	border: 2px solid rgba(26, 24, 22, 0.3);
	border-radius: 12px;
	z-index: 10;
	pointer-events: none;
}
.romkes-hero-gradient .wp-block-cover__inner-container::before {
	content: '';
	position: fixed;
	bottom: 2.6rem;
	left: 50%;
	transform: translateX(-50%);
	width: 4px;
	height: 8px;
	background: rgba(26, 24, 22, 0.4);
	border-radius: 2px;
	z-index: 11;
	pointer-events: none;
	animation: scrollBounce 2s ease-in-out infinite;
}
@keyframes scrollBounce {
	0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
	50% { transform: translateX(-50%) translateY(8px); opacity: 0.4; }
}

/* ===========================
   Service Tags — Pill badges
   =========================== */
.is-style-service-tag-green,
.is-style-service-tag-gold,
.is-style-service-tag-dark {
	display: inline-block !important;
	font-size: 0.68rem !important;
	font-weight: 700 !important;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	padding: 0.25rem 0.6rem !important;
	border-radius: 3px;
	margin-bottom: 0.8rem;
	line-height: 1.4;
}
.is-style-service-tag-green {
	background: rgba(61, 90, 58, 0.1);
	color: var(--wp--preset--color--primary) !important;
}
.is-style-service-tag-gold {
	background: rgba(117, 101, 48, 0.1);
	color: var(--wp--preset--color--accent) !important;
}
/* Service tag gold on dark backgrounds — use lighter variant for contrast */
.has-dark-background-color .is-style-service-tag-gold,
[style*="background-color:var(--wp--preset--color--dark)"] .is-style-service-tag-gold {
	color: #C4B273 !important;
	background: rgba(196, 178, 115, 0.15) !important;
}
/* Accent-colored text on dark backgrounds */
.has-dark-background-color .has-accent-color,
[style*="background-color:var(--wp--preset--color--dark)"] .has-accent-color {
	color: #C4B273 !important;
}
.is-style-service-tag-dark {
	background: rgba(26, 24, 22, 0.08);
	color: var(--wp--preset--color--text-secondary) !important;
}

/* ===========================
   Service Cards — Hover lift
   =========================== */
.romkes-service-card {
	transition: transform var(--romkes-transition), box-shadow var(--romkes-transition);
	border-color: var(--romkes-border) !important;
}
.romkes-service-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 32px rgba(26, 24, 22, 0.06);
}
/* Responsive image handling inside service cards */
.romkes-service-card .wp-block-image img {
	aspect-ratio: 16 / 10;
	height: auto;
	object-fit: cover;
}

/* ===========================
   Ethos Badges
   =========================== */
.is-style-ethos-badge {
	display: inline-block !important;
	font-size: 0.75rem !important;
	font-weight: 600 !important;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	padding: 0.4rem 0.9rem !important;
	border: 1.5px solid var(--wp--preset--color--primary) !important;
	border-radius: 20px;
	color: var(--wp--preset--color--primary) !important;
	background: transparent !important;
}

/* ===========================
   Gallery Grid — CSS Grid layout
   =========================== */
.romkes-gallery-grid {
	display: grid !important;
	grid-template-columns: repeat(4, 1fr);
	grid-auto-rows: 260px;
	gap: 0.6rem;
}
.romkes-gallery-grid .wp-block-image {
	border-radius: 6px;
	overflow: hidden;
	margin: 0 !important;
	position: relative;
}
.romkes-gallery-grid .wp-block-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.6s ease;
}
.romkes-gallery-grid .wp-block-image:hover img {
	transform: scale(1.04);
}
.romkes-gallery-grid .is-style-gallery-tall {
	grid-row: span 2;
}
.romkes-gallery-grid .is-style-gallery-wide {
	grid-column: span 2;
}
/* Gallery captions */
.romkes-gallery-grid .wp-block-image figcaption {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 0.6rem 0.8rem;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
	color: rgba(255, 255, 255, 0.9);
	font-size: 0.78rem;
	font-weight: 500;
	margin: 0;
	opacity: 0;
	transition: opacity var(--romkes-transition);
}
.romkes-gallery-grid .wp-block-image:hover figcaption {
	opacity: 1;
}

/* ===========================
   Pricing Lists — Em-dash markers
   =========================== */
.romkes-pricing-list {
	list-style: none !important;
	padding-left: 0 !important;
}
.romkes-pricing-list li {
	padding-left: 1.3rem;
	position: relative;
}
.romkes-pricing-list li::before {
	content: '\2014';
	position: absolute;
	left: 0;
	color: var(--wp--preset--color--primary-muted);
}

/* ===========================
   CTA Section — Contrast fixes + breathing room
   =========================== */
.romkes-cta-cover {
	min-height: 500px;
}
/* CTA inner container above overlay — same fix as hero */
.romkes-cta-cover .wp-block-cover__inner-container {
	z-index: 2 !important;
	position: relative;
}

/* Increase overlay opacity for reliable contrast over garden imagery */
.romkes-cta-cover .wp-block-cover__background {
	opacity: 0.88 !important;
}

/* CTA text — force light colors over dark overlay (WP global styles override inline) */
.romkes-cta-cover .wp-block-cover__inner-container p.has-text-color {
	color: rgba(244, 241, 235, 0.78) !important;
}
.romkes-cta-cover .wp-block-cover__inner-container p[style*="color:#C4B17A"] {
	color: #C4B17A !important;
}

/* CTA Instagram button — brand gradient */
.romkes-cta-cover .wp-block-button.is-style-outline .wp-block-button__link {
	border: none !important;
	background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888) !important;
	color: #fff !important;
	font-weight: 600;
	padding: 0.75rem 1.5rem;
}
.romkes-cta-cover .wp-block-button.is-style-outline .wp-block-button__link:hover {
	background: linear-gradient(45deg, #e8882b, #d95d34, #d0203b, #c01d5e, #b01280) !important;
	color: #fff !important;
}

/* Inline SVG icons — WordPress block context */
.romkes-icon {
	display: inline-block;
	width: 1em;
	height: 1em;
	vertical-align: -0.125em;
	flex-shrink: 0;
	/* fill/stroke set per-SVG via attributes — don't override here */
}
.romkes-icon-link {
	display: inline-flex;
	align-items: center;
	gap: 0.4em;
}

/* ===========================
   Instagram Strip — Hover effects
   =========================== */
.romkes-insta-grid .wp-block-image img {
	transition: transform 0.5s ease, filter 0.3s ease;
	filter: brightness(0.85);
}
.romkes-insta-grid:hover .wp-block-image img {
	filter: brightness(0.7);
}
.romkes-insta-grid .wp-block-image:hover img {
	filter: brightness(1);
	transform: scale(1.05);
}

/* ===========================
   Contact Form — Field styling
   =========================== */
.romkes-contact-form label {
	display: block;
	font-size: 0.78rem;
	font-weight: 600;
	margin-bottom: 0.35rem;
	color: var(--wp--preset--color--text-secondary);
}
.romkes-contact-form input,
.romkes-contact-form textarea,
.romkes-contact-form select {
	width: 100%;
	padding: 0.7rem 0.9rem;
	border: 1.5px solid var(--romkes-border);
	border-radius: 5px;
	font-family: var(--wp--preset--font-family--body);
	font-size: 0.92rem;
	background: var(--wp--preset--color--surface);
	color: var(--wp--preset--color--text);
	transition: border-color var(--romkes-transition);
	box-sizing: border-box;
}
.romkes-contact-form input:focus,
.romkes-contact-form textarea:focus,
.romkes-contact-form select:focus {
	outline: 2px solid var(--wp--preset--color--primary);
	outline-offset: 2px;
	border-color: var(--wp--preset--color--primary);
}
.romkes-contact-form textarea {
	resize: vertical;
	min-height: 110px;
}
.romkes-contact-form .form-group {
	margin-bottom: 1.3rem;
}
.romkes-contact-form button[type="submit"] {
	display: inline-block;
	font-family: var(--wp--preset--font-family--body);
	font-size: 0.9rem;
	font-weight: 600;
	padding: 0.75rem 1.8rem;
	border-radius: 5px;
	border: none;
	cursor: pointer;
	letter-spacing: 0.01em;
	background: var(--wp--preset--color--primary);
	color: var(--wp--preset--color--surface);
	transition: background var(--romkes-transition);
}
.romkes-contact-form button[type="submit"]:hover {
	background: var(--wp--preset--color--primary-light);
}

/* ===========================
   Signature Micro-Interaction
   Monty Don quote — handwriting reveal on quotation marks
   =========================== */
@keyframes quoteReveal {
	from { opacity: 0; transform: translateX(-8px) scale(1.2); }
	to { opacity: 1; transform: translateX(0) scale(1); }
}
.romkes-quote-reveal {
	border-left-color: var(--wp--preset--color--accent) !important;
	border-left-width: 2px !important;
}
.romkes-quote-reveal p::first-letter {
	font-size: 1.6em;
	font-family: var(--wp--preset--font-family--display);
	color: var(--wp--preset--color--accent);
	animation: quoteReveal 0.8s 0.3s ease both;
}

/* ===========================
   Process Section — Override inline color styles for WCAG contrast
   =========================== */
/* Dark background sections — fix inline color contrast for WCAG AA */
.has-dark-background-color p.has-text-color[style*="color:rgba(244,241,235"] {
	color: rgba(244, 241, 235, 0.78) !important;
}
.has-dark-background-color p.has-text-color[style*="font-weight:500"] {
	color: rgba(244, 241, 235, 0.78) !important;
}
/* Footer links on dark background — override default primary color */
.has-dark-background-color a {
	color: rgba(244, 241, 235, 0.78) !important;
}
.has-dark-background-color a:hover {
	color: rgba(244, 241, 235, 0.95) !important;
}
/* Footer copyright on dark */
.has-dark-background-color .has-text-align-center.has-text-color {
	color: rgba(244, 241, 235, 0.7) !important;
}

/* Process section — fix inline color contrast on dark bg */
#prozess p[style*="color:rgba(244,241,235,0.5)"],
#prozess p[style*="color:rgba(244,241,235,0.55)"] {
	color: rgba(244, 241, 235, 0.78) !important;
}
#prozess p[style*="color:rgba(196,177,122,0.6)"] {
	color: rgba(196, 177, 122, 0.85) !important;
}
#prozess p[style*="color:#C4B17A"] {
	color: #C4B17A !important;
}

/* Beetpakete — fix inline color contrast on dark bg */
.wp-block-media-text__content p[style*="color:rgba(244,241,235,0.6)"] {
	color: rgba(244, 241, 235, 0.78) !important;
}

/* "Bald verfügbar" small accent text — ensure contrast */
p[style*="font-size:0.62rem"].has-accent-color {
	font-size: 0.7rem !important;
}

/* ===========================
   Scroll-triggered reveals (JS-gated)
   =========================== */
html.js-enabled .romkes-reveal {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity 0.5s ease, transform 0.5s ease;
}
html.js-enabled .romkes-reveal.visible {
	opacity: 1;
	transform: translateY(0);
}

/* ===========================
   Button variant overrides
   =========================== */
.wp-block-button.is-style-btn-dark .wp-block-button__link {
	background: var(--wp--preset--color--dark) !important;
	color: var(--wp--preset--color--bg) !important;
}
.wp-block-button.is-style-btn-dark .wp-block-button__link:hover {
	background: #3A3D38 !important;
}
/* Ensure sufficient contrast for text on accent background */
.has-accent-background-color {
	color: var(--wp--preset--color--surface) !important;
}
.wp-block-button.is-style-btn-accent .wp-block-button__link {
	background: var(--wp--preset--color--accent) !important;
	color: var(--wp--preset--color--surface) !important;
}
.wp-block-button.is-style-btn-accent .wp-block-button__link:hover {
	background: #867240 !important;
}
.wp-block-button.is-style-btn-outline-light .wp-block-button__link {
	background: transparent !important;
	color: var(--wp--preset--color--bg) !important;
	border: 1.5px solid rgba(244, 241, 235, 0.35) !important;
}
.wp-block-button.is-style-btn-outline-light .wp-block-button__link:hover {
	background: rgba(244, 241, 235, 0.1) !important;
}
.wp-block-button.is-style-btn-sm .wp-block-button__link {
	padding: 0.55rem 1.3rem !important;
	font-size: 0.82rem !important;
}

/* ===========================
   Responsive — 1024px
   =========================== */
@media (max-width: 1023px) {
	/* Services: 2-col → 1-col */
	.romkes-service-card {
		margin-bottom: 1.5rem;
	}

	/* Gallery: 4-col → 2-col */
	.romkes-gallery-grid {
		grid-template-columns: repeat(2, 1fr);
		grid-auto-rows: 220px;
	}
	.romkes-gallery-grid .is-style-gallery-tall {
		grid-row: span 1;
	}

	/* Process steps: remove right borders, add bottom */
	.has-dark-background-color .wp-block-column {
		border-right: none !important;
		border-bottom: 1px solid rgba(244, 241, 235, 0.08);
		padding: 2rem 0 !important;
	}
	.has-dark-background-color .wp-block-column:last-child {
		border-bottom: none;
	}

	/* Instagram strip: 6 → 4 */
	.romkes-insta-grid .wp-block-image:nth-child(n+5) {
		display: none;
	}
}

/* ===========================
   Responsive — 768px
   =========================== */
@media (max-width: 767px) {
	/* Remove paper texture on mobile (GPU perf) */
	body::after {
		display: none;
	}

	/* Hide hero scroll indicator on mobile */
	.romkes-hero-gradient .wp-block-cover__inner-container::after,
	.romkes-hero-gradient .wp-block-cover__inner-container::before {
		display: none;
	}

	/* Gallery: smaller rows, no spanning, max 6 images */
	.romkes-gallery-grid {
		grid-template-columns: repeat(2, 1fr);
		grid-auto-rows: 180px;
	}
	.romkes-gallery-grid .is-style-gallery-wide {
		grid-column: span 1;
	}
	.romkes-gallery-grid .wp-block-image:nth-child(n+7) {
		display: none;
	}

	/* About: constrain image height on mobile stack */
	.wp-block-media-text.is-stacked-on-mobile .wp-block-media-text__media img {
		max-height: 400px;
		object-fit: cover;
	}

	/* Beetpakete: fix image border-radius on mobile stack */
	.wp-block-media-text.is-stacked-on-mobile .wp-block-media-text__media img[style*="border-radius"] {
		border-radius: 10px 10px 0 0 !important;
	}

	/* Pricing: allow wrap on mobile */
	.wp-block-group[style*="flexWrap:nowrap"],
	.wp-block-group[style*="flex-wrap: nowrap"] {
		flex-wrap: wrap !important;
	}

	/* Sections: tighter padding */
	.wp-block-group.alignfull[style*="padding-top:7rem"] {
		padding-top: 4.5rem !important;
		padding-bottom: 4.5rem !important;
	}

	/* Footer: center stack */
	footer .wp-block-group[style*="space-between"] {
		flex-direction: column !important;
		text-align: center;
	}

	/* Instagram strip: 4 → 3 */
	.romkes-insta-grid .wp-block-image:nth-child(n+4) {
		display: none;
	}
}

/* ===========================
   Contact Page Layout
   (migrated from prototype.css — used by seeded Kontakt page content)
   =========================== */
.contact-grid {
	gap: 3.5rem;
	margin-top: 2rem;
}
.contact-info h3 {
	font-family: var(--wp--preset--font-family--display);
	font-size: 1.2rem;
	font-weight: 500;
	margin-bottom: 0.8rem;
}
.contact-info p {
	color: var(--wp--preset--color--text-muted);
	margin-bottom: 0.3rem;
	font-size: 0.92rem;
}
.contact-detail {
	margin-bottom: 1.8rem;
}
.contact-detail strong {
	color: var(--wp--preset--color--text-secondary);
	display: block;
	font-size: 0.72rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	margin-bottom: 0.3rem;
}

/* Contact Form Fields */
.form-group {
	margin-bottom: 1.3rem;
}
.form-group label {
	display: block;
	font-size: 0.78rem;
	font-weight: 600;
	margin-bottom: 0.35rem;
	color: var(--wp--preset--color--text-secondary);
}
.form-group input,
.form-group textarea,
.form-group select {
	width: 100%;
	padding: 0.7rem 0.9rem;
	border: 1.5px solid rgba(61, 90, 58, 0.18);
	border-radius: 5px;
	font-family: var(--wp--preset--font-family--body);
	font-size: 0.92rem;
	background: var(--wp--preset--color--surface);
	color: var(--wp--preset--color--text);
	transition: border-color 0.3s ease;
	box-sizing: border-box;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
	outline: 2px solid var(--wp--preset--color--primary);
	outline-offset: 2px;
	border-color: var(--wp--preset--color--primary);
}
.form-group textarea {
	resize: vertical;
	min-height: 110px;
}

/* Contact Form Submit Button */
.contact-form .btn,
.contact-form .btn-primary {
	display: inline-block;
	font-family: var(--wp--preset--font-family--body);
	font-size: 0.9rem;
	font-weight: 600;
	padding: 0.75rem 1.8rem;
	border-radius: 5px;
	border: none;
	cursor: pointer;
	letter-spacing: 0.01em;
	background: var(--wp--preset--color--primary);
	color: var(--wp--preset--color--surface);
	transition: background 0.3s ease;
}
.contact-form .btn:hover,
.contact-form .btn-primary:hover {
	background: var(--wp--preset--color--primary-light);
}

@media (max-width: 767px) {
	.contact-grid {
		gap: 2rem;
	}
}
