/* ==========================================================================
   Guko Stainless Steel Piping — "Coming soon" landing page
   Matches Figma: Landingspagina - Guko Stainless Steel Piping (node 1:452)
   ========================================================================== */

:root {
	--guko-orange: #e8621a;
	--guko-dark: #000000;
	--guko-bg: #f8f8f8;
	--guko-card-from: rgb(0, 49, 75);
	--guko-card-to: rgb(0, 133, 186);
	--guko-radius: 8px;
	--guko-gutter: 80px;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

body {
	margin: 0;
	background: var(--guko-bg);
	color: var(--guko-dark);
	font-family: 'Figtree', -apple-system, BlinkMacSystemFont, sans-serif;
	-webkit-font-smoothing: antialiased;
}

img {
	max-width: 100%;
	display: block;
}

a {
	color: inherit;
	text-decoration: none;
}

.guko-page {
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-height: 100vh;
}

/* Hero
   ========================================================================== */

.guko-hero__logo {
	width: 250px;
	height: 137px;
	flex-shrink: 0;
	overflow: hidden;
}

.guko-hero__logo a {
	display: block;
	width: 100%;
	height: 100%;
}

.guko-hero__logo img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: left center;
}

.guko-hero {
	display: flex;
	align-items: center;
	gap: 64px;
	padding: 96px var(--guko-gutter);
	width: 100%;
}

.guko-hero__narrative {
	flex: 1 0 0;
	min-width: 0;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 24px;
}

.guko-hero__heading {
	margin: 0;
	width: 100%;
	font-family: 'Lato', sans-serif;
	font-weight: 700;
	font-size: 48px;
	line-height: 1.2;
	word-break: break-word;
}

.guko-hero__heading--accent {
	color: var(--guko-orange);
}

.guko-hero__subheading {
	margin: 0;
	width: 100%;
	font-family: 'Lato', sans-serif;
	font-weight: 700;
	font-size: 20px;
	line-height: 1.2;
	word-break: break-word;
}

.guko-hero__intro {
	margin: 0;
	width: 100%;
	font-family: 'Figtree', sans-serif;
	font-weight: 400;
	font-size: 16px;
	line-height: 1.6;
	word-break: break-word;
}

/* Contact blocks
   ========================================================================== */

.guko-contact-blocks {
	display: flex;
	align-items: flex-start;
	gap: 24px;
	width: 100%;
	padding-top: 12px;
}

.guko-contact-block {
	flex: 1 0 0;
	min-width: 0;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 12px;
	padding: 20px;
	background: #ffffff;
	border-radius: var(--guko-radius);
}

.guko-contact-block__icon {
	display: block;
	width: 24px;
	height: 24px;
}

.guko-contact-block__icon img {
	width: 100%;
	height: 100%;
}

.guko-contact-block__label {
	margin: 0;
	font-family: 'Outfit', sans-serif;
	font-weight: 700;
	font-size: 16px;
	white-space: nowrap;
}

.guko-contact-block__value {
	margin: 0;
	font-family: 'Figtree', sans-serif;
	font-weight: 400;
	font-size: 14px;
	width: 100%;
}

.guko-contact-block__value a:hover {
	color: var(--guko-orange);
}

/* Visual grid (photos + card)
   ========================================================================== */

.guko-hero__visual {
	flex: 1 0 0;
	display: flex;
	align-items: center;
	align-self: stretch;
}

.guko-visual-grid {
	flex: 1 0 0;
	min-width: 0;
	height: 100%;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	grid-template-rows: repeat(2, minmax(0, 1fr));
	gap: 16px;
	overflow: hidden;
}

.guko-visual-grid__photo {
	position: relative;
	border-radius: var(--guko-radius);
	overflow: hidden;
}

.guko-visual-grid__photo--main {
	grid-column: 1;
	grid-row: 1 / span 2;
}

.guko-visual-grid__photo--top {
	grid-column: 2;
	grid-row: 1;
}

.guko-visual-grid__photo img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.guko-visual-grid__card {
	position: relative;
	grid-column: 2;
	grid-row: 2;
	display: flex;
	flex-direction: column;
	overflow: hidden;
	border-radius: var(--guko-radius);
	padding: 24px 32px;
}

.guko-visual-grid__card-bg {
	position: absolute;
	inset: 0;
	border-radius: var(--guko-radius);
	background-image: linear-gradient(90deg, var(--guko-card-from) 0%, var(--guko-card-to) 116%);
}

.guko-visual-grid__card-bg::after {
	content: '';
	position: absolute;
	inset: 0;
	background-image: url('../images/frame-pattern.png');
	background-size: 260% auto;
	background-position: center;
	background-repeat: no-repeat;
	opacity: 0.2;
}

.guko-visual-grid__card-content {
	position: relative;
	flex: 1 0 0;
	min-height: 0;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-end;
	gap: 56px;
	width: 100%;
}

.guko-visual-grid__card-logo {
	width: 167px;
	height: 87px;
	object-fit: contain;
	object-position: left center;
}

.guko-visual-grid__card-link {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	width: 100%;
	font-family: 'Figtree', sans-serif;
	font-weight: 600;
	font-size: 14px;
	color: #ffffff;
}

.guko-visual-grid__card-link-text {
	flex: 1 1 auto;
	min-width: 0;
}

.guko-visual-grid__card-link img {
	flex-shrink: 0;
}

/* Fallback template (non front-page content)
   ========================================================================== */

.guko-fallback {
	max-width: 800px;
	margin: 0 auto;
	padding: 96px var(--guko-gutter);
}

/* Responsive
   ========================================================================== */

@media (max-width: 1024px) {
	:root {
		--guko-gutter: 40px;
	}

	.guko-hero {
		flex-direction: column;
		align-items: stretch;
		padding-top: 64px;
		padding-bottom: 64px;
	}

	.guko-hero__visual {
		align-self: auto;
	}

	.guko-visual-grid {
		height: 480px;
	}

	.guko-hero__heading {
		font-size: 36px;
	}
}

@media (max-width: 640px) {
	:root {
		--guko-gutter: 20px;
	}

	.guko-hero__logo {
		width: 190px;
		height: 104px;
	}

	.guko-hero__heading {
		font-size: 28px;
	}

	.guko-hero__subheading {
		font-size: 18px;
	}

	.guko-visual-grid {
		height: 420px;
		gap: 12px;
	}

	.guko-visual-grid__card {
		padding: 16px 20px;
	}

	.guko-visual-grid__card-content {
		gap: 24px;
	}

	.guko-visual-grid__card-logo {
		width: 120px;
		height: 63px;
	}
}

@media (max-width: 400px) {
	.guko-contact-blocks {
		flex-direction: column;
	}

	.guko-contact-block {
		width: 100%;
	}
}
