:root {
	--ink: #081a24;
	--marine: #0e2b39;
	--blue: #155b78;
	--mist: #ddecef;
	--paper: #f4f2ed;
	--white: #fff;
	--cyan: #54b6c7;
	--orange: #e9783e;
	--green: #3a9b72;
	--line: rgba(8, 26, 36, 0.16);
	--line-light: rgba(255, 255, 255, 0.2);
	--shadow: 0 22px 60px rgba(8, 26, 36, 0.12);
	--radius: 18px;
	--container: 1240px;
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	overflow-x: hidden;
	color: var(--ink);
	background: var(--paper);
	font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: 17px;
	line-height: 1.55;
	-webkit-font-smoothing: antialiased;
}

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

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

p {
	margin: 0 0 1.2rem;
}

h1,
h2,
h3,
h4 {
	margin: 0;
	font-weight: 700;
	line-height: 1.05;
	letter-spacing: -0.045em;
}

h1 {
	font-size: clamp(3rem, 7vw, 6.9rem);
}

h2 {
	font-size: clamp(2.2rem, 4.5vw, 4.3rem);
}

h3 {
	font-size: clamp(1.5rem, 2.5vw, 2.1rem);
}

.container {
	width: min(calc(100% - 48px), var(--container));
	margin-inline: auto;
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.screen-reader-text:focus {
	z-index: 1000;
	top: 12px;
	left: 12px;
	width: auto;
	height: auto;
	padding: 12px 16px;
	margin: 0;
	overflow: visible;
	clip: auto;
	color: var(--white);
	background: var(--ink);
}

.eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	color: var(--blue);
	font-family: "IBM Plex Mono", ui-monospace, monospace;
	font-size: 0.72rem;
	font-weight: 600;
	letter-spacing: 0.13em;
	line-height: 1.2;
	text-transform: uppercase;
}

.eyebrow::before {
	display: inline-block;
	width: 24px;
	height: 1px;
	background: currentColor;
	content: "";
}

.eyebrow--light {
	color: var(--cyan);
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	min-height: 52px;
	padding: 13px 22px;
	border: 1px solid transparent;
	border-radius: 999px;
	font-size: 0.9rem;
	font-weight: 700;
	line-height: 1.2;
	transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.button:hover {
	transform: translateY(-2px);
}

.button--small {
	min-height: 42px;
	padding: 10px 17px;
	font-size: 0.8rem;
}

.button--accent {
	color: var(--white);
	background: var(--orange);
}

.button--accent:hover {
	background: #d96430;
}

.button--outline-light {
	color: var(--white);
	border-color: rgba(255, 255, 255, 0.45);
}

.button--outline-light:hover {
	background: var(--white);
	color: var(--ink);
}

.button--dark {
	color: var(--white);
	background: var(--ink);
}

.text-link {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	color: var(--blue);
	font-size: 0.9rem;
	font-weight: 700;
}

.text-link:hover {
	color: var(--orange);
}

.site-header {
	position: relative;
	z-index: 20;
	color: var(--white);
	background: var(--ink);
}

.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 86px;
}

.site-header__meta {
	border-top: 1px solid var(--line-light);
	color: rgba(255, 255, 255, 0.68);
	font-size: 0.75rem;
}

.site-header__meta-inner {
	display: flex;
	justify-content: space-between;
	gap: 24px;
	padding-block: 9px;
}

.site-header__meta-links {
	display: flex;
	gap: 20px;
}

.site-header__meta-links a:hover {
	color: var(--white);
}

.site-branding__text {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	color: var(--white);
}

.site-branding__text strong {
	display: block;
	font-size: 1.25rem;
	letter-spacing: -0.04em;
}

.site-branding__text small {
	display: block;
	margin-top: 3px;
	color: var(--cyan);
	font-family: "IBM Plex Mono", ui-monospace, monospace;
	font-size: 0.52rem;
	letter-spacing: 0.14em;
}

.site-branding__mark {
	display: grid;
	place-items: center;
	width: 42px;
	height: 42px;
	border: 1px solid rgba(84, 182, 199, 0.7);
	border-radius: 50%;
	color: var(--cyan);
	font-family: "IBM Plex Mono", ui-monospace, monospace;
	font-size: 0.76rem;
	font-weight: 700;
}

.primary-navigation {
	display: flex;
	align-items: center;
	gap: 30px;
}

.primary-menu {
	display: flex;
	align-items: center;
	gap: 24px;
	margin: 0;
	padding: 0;
	list-style: none;
	font-size: 0.88rem;
}

.primary-menu a {
	color: rgba(255, 255, 255, 0.76);
}

.primary-menu a:hover,
.primary-menu .current-menu-item > a {
	color: var(--white);
}

.language-switcher {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	margin-left: 4px;
	color: rgba(255, 255, 255, 0.45);
	font-family: "IBM Plex Mono", ui-monospace, monospace;
	font-size: 0.68rem;
	letter-spacing: 0.08em;
}

.language-switcher a {
	color: inherit;
}

.language-switcher a:hover,
.language-switcher a.is-active {
	color: var(--cyan);
}

.menu-toggle {
	display: none;
	width: 42px;
	height: 42px;
	padding: 10px;
	border: 1px solid var(--line-light);
	border-radius: 50%;
	color: var(--white);
	background: transparent;
}

.menu-toggle__line {
	display: block;
	width: 20px;
	height: 1px;
	margin: 5px auto;
	background: currentColor;
}

.hero {
	position: relative;
	display: flex;
	align-items: center;
	min-height: 730px;
	overflow: hidden;
	color: var(--white);
	background:
		linear-gradient(110deg, rgba(8, 26, 36, 0.98) 0%, rgba(8, 26, 36, 0.84) 47%, rgba(8, 26, 36, 0.45) 100%),
		var(--hero-image, linear-gradient(135deg, #0e2b39 0%, #155b78 55%, #0e2b39 100%));
	background-position: center;
	background-size: cover;
}

.hero::after {
	position: absolute;
	right: 5%;
	bottom: -30%;
	width: 52vw;
	height: 52vw;
	border: 1px solid rgba(84, 182, 199, 0.22);
	border-radius: 50%;
	content: "";
}

.hero__inner {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(330px, 0.65fr);
	align-items: center;
	gap: clamp(48px, 9vw, 140px);
}

.hero__copy {
	max-width: 720px;
}

.hero__copy h1 {
	max-width: 760px;
	margin: 24px 0;
}

.hero__copy h1::first-line {
	color: var(--white);
}

.hero__copy p {
	max-width: 590px;
	color: rgba(255, 255, 255, 0.76);
	font-size: clamp(1.05rem, 1.7vw, 1.3rem);
}

.hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 34px;
}

.hero__panel {
	padding: 30px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: var(--radius);
	background: rgba(8, 26, 36, 0.72);
	box-shadow: var(--shadow);
	backdrop-filter: blur(12px);
}

.hero__panel h2 {
	margin: 18px 0 24px;
	font-size: clamp(1.8rem, 3vw, 2.8rem);
}

.hero__panel-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	border-top: 1px solid var(--line-light);
	border-left: 1px solid var(--line-light);
}

.hero__panel-grid div {
	padding: 18px 14px;
	border-right: 1px solid var(--line-light);
	border-bottom: 1px solid var(--line-light);
}

.hero__panel-grid strong,
.hero__panel-grid span {
	display: block;
}

.hero__panel-grid strong {
	color: var(--cyan);
	font-family: "IBM Plex Mono", ui-monospace, monospace;
	font-size: 1.1rem;
}

.hero__panel-grid span {
	margin-top: 5px;
	color: rgba(255, 255, 255, 0.66);
	font-size: 0.75rem;
}

.hero__coordinates {
	display: flex;
	justify-content: space-between;
	gap: 12px;
	margin-top: 20px;
	color: rgba(255, 255, 255, 0.55);
	font-family: "IBM Plex Mono", ui-monospace, monospace;
	font-size: 0.66rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.hero__scroll {
	position: absolute;
	z-index: 1;
	bottom: 30px;
	left: 50%;
	display: flex;
	align-items: center;
	gap: 10px;
	color: rgba(255, 255, 255, 0.6);
	font-family: "IBM Plex Mono", ui-monospace, monospace;
	font-size: 0.66rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	transform: translateX(-50%);
}

.hero__scroll span {
	display: block;
	width: 24px;
	height: 1px;
	background: var(--cyan);
}

.section {
	padding: clamp(80px, 10vw, 150px) 0;
}

.section--intro {
	background: var(--paper);
}

.section--dark,
.page-hero {
	color: var(--white);
	background: var(--ink);
}

.section--mist {
	background: var(--mist);
}

.section--projects {
	background: var(--paper);
}

.section--cta {
	padding-top: 0;
	background: var(--paper);
}

.split-heading,
.section-heading {
	display: flex;
	justify-content: space-between;
	gap: 48px;
}

.split-heading {
	align-items: end;
}

.split-heading > div:first-child,
.section-heading > div:first-child {
	max-width: 720px;
}

.split-heading h2,
.section-heading h2 {
	margin-top: 22px;
}

.split-heading__text {
	max-width: 390px;
	color: rgba(8, 26, 36, 0.7);
}

.split-heading__text .text-link {
	margin-top: 12px;
}

.section-heading {
	align-items: end;
	margin-bottom: 48px;
}

.section-heading--light h2 {
	color: var(--white);
}

.section-heading--light .eyebrow {
	color: var(--cyan);
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	border-top: 1px solid var(--line-light);
	border-left: 1px solid var(--line-light);
}

.services-grid--light {
	border-color: var(--line);
}

.service-card {
	display: grid;
	grid-template-columns: 56px minmax(0, 1fr) 24px;
	gap: 18px;
	align-items: start;
	min-height: 174px;
	padding: 26px;
	border-right: 1px solid var(--line-light);
	border-bottom: 1px solid var(--line-light);
	color: var(--white);
	transition: background 180ms ease, transform 180ms ease;
}

.service-card--light {
	color: var(--ink);
	border-color: var(--line);
}

.service-card:hover {
	background: rgba(84, 182, 199, 0.1);
}

.service-card__number {
	color: var(--cyan);
	font-family: "IBM Plex Mono", ui-monospace, monospace;
	font-size: 0.78rem;
}

.service-card__body strong,
.service-card__body span {
	display: block;
}

.service-card__body strong {
	font-size: clamp(1.15rem, 2vw, 1.6rem);
}

.service-card__body span {
	max-width: 360px;
	margin-top: 12px;
	color: rgba(255, 255, 255, 0.62);
	font-size: 0.92rem;
}

.service-card--light .service-card__body span {
	color: rgba(8, 26, 36, 0.66);
}

.service-card__arrow {
	color: var(--orange);
	font-size: 1.2rem;
	transition: transform 180ms ease;
}

.service-card:hover .service-card__arrow {
	transform: translate(3px, -3px);
}

.location-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 14px;
}

.location-card {
	display: flex;
	min-height: 310px;
	flex-direction: column;
	align-items: flex-start;
	padding: 28px;
	border: 1px solid rgba(8, 26, 36, 0.14);
	background: rgba(255, 255, 255, 0.25);
	transition: transform 180ms ease, background 180ms ease;
}

.location-card:hover {
	transform: translateY(-5px);
	background: rgba(255, 255, 255, 0.65);
}

.location-card__code {
	color: var(--orange);
	font-family: "IBM Plex Mono", ui-monospace, monospace;
	font-size: 0.78rem;
}

.location-card__title {
	margin-top: auto;
	font-size: clamp(2rem, 4vw, 3.4rem);
	font-weight: 700;
	letter-spacing: -0.06em;
}

.location-card__text {
	max-width: 310px;
	margin: 12px 0 22px;
	color: rgba(8, 26, 36, 0.66);
	font-size: 0.92rem;
}

.projects-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}

.project-card {
	overflow: hidden;
	border: 1px solid rgba(8, 26, 36, 0.14);
	background: var(--white);
}

.project-card__visual {
	position: relative;
	display: flex;
	min-height: 230px;
	align-items: end;
	padding: 20px;
	overflow: hidden;
	background:
		linear-gradient(145deg, rgba(8, 26, 36, 0.18), rgba(8, 26, 36, 0.72)),
		var(--project-image, linear-gradient(135deg, var(--blue), var(--ink)));
	background-position: center;
	background-size: cover;
}

.project-card__visual::before,
.project-card__visual::after {
	position: absolute;
	width: 150%;
	height: 1px;
	background: rgba(255, 255, 255, 0.35);
	content: "";
	transform: rotate(-26deg);
}

.project-card__visual::before {
	top: 30%;
	left: -20%;
}

.project-card__visual::after {
	top: 58%;
	left: -10%;
}

.project-card__visual-label {
	position: relative;
	z-index: 1;
	color: rgba(255, 255, 255, 0.78);
	font-family: "IBM Plex Mono", ui-monospace, monospace;
	font-size: 0.68rem;
	letter-spacing: 0.1em;
}

.project-card__content {
	padding: 26px;
}

.project-card__content h3 {
	margin: 16px 0 14px;
}

.project-card__content p {
	color: rgba(8, 26, 36, 0.68);
	font-size: 0.92rem;
}

.project-card__meta {
	display: block;
	margin: 24px 0;
	padding-top: 16px;
	border-top: 1px solid var(--line);
	color: var(--blue);
	font-family: "IBM Plex Mono", ui-monospace, monospace;
	font-size: 0.68rem;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.cta-panel {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 28px;
	padding: clamp(36px, 6vw, 72px);
	color: var(--white);
	background: var(--marine);
}

.cta-panel h2 {
	max-width: 720px;
	margin-top: 20px;
}

.page-hero {
	position: relative;
	overflow: hidden;
	background:
		linear-gradient(115deg, rgba(8, 26, 36, 0.98), rgba(14, 43, 57, 0.82)),
		linear-gradient(135deg, var(--blue), var(--ink));
}

.page-hero::after {
	position: absolute;
	right: 3%;
	bottom: -60%;
	width: 48vw;
	height: 48vw;
	border: 1px solid rgba(84, 182, 199, 0.2);
	border-radius: 50%;
	content: "";
}

.page-hero__inner,
.page-hero .container {
	position: relative;
	z-index: 1;
}

.page-hero h1 {
	max-width: 920px;
	margin: 22px 0;
}

.page-hero p {
	max-width: 650px;
	color: rgba(255, 255, 255, 0.7);
	font-size: 1.1rem;
}

.page-hero--small {
	padding: clamp(90px, 12vw, 170px) 0;
}

.page-hero--service {
	padding: clamp(90px, 12vw, 170px) 0;
}

.page-hero--service .button {
	margin-top: 18px;
}

.service-detail-grid,
.project-detail-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
	gap: clamp(44px, 8vw, 120px);
	align-items: start;
}

.prose {
	max-width: 780px;
}

.prose h2,
.prose h3 {
	margin: 42px 0 18px;
}

.prose p,
.prose li {
	color: rgba(8, 26, 36, 0.72);
}

.prose ul,
.prose ol {
	padding-left: 1.3rem;
}

.prose__note {
	margin-top: 30px;
	padding: 16px 18px;
	border-left: 3px solid var(--orange);
	background: rgba(225, 162, 58, 0.1);
	color: rgba(8, 42, 67, 0.74);
	font-size: 0.9rem;
}

.detail-aside {
	display: grid;
	gap: 16px;
}

.detail-aside__block {
	padding: 26px;
	border: 1px solid var(--line);
	background: rgba(255, 255, 255, 0.3);
}

.detail-aside__block p {
	margin-top: 18px;
	color: rgba(8, 26, 36, 0.7);
}

.detail-aside__block--accent {
	border-color: rgba(233, 120, 62, 0.5);
	background: rgba(233, 120, 62, 0.08);
}

.detail-list {
	margin: 20px 0 0;
}

.detail-list div {
	display: grid;
	grid-template-columns: 0.7fr 1fr;
	gap: 12px;
	padding: 13px 0;
	border-top: 1px solid var(--line);
}

.detail-list dt {
	color: rgba(8, 26, 36, 0.54);
	font-size: 0.82rem;
}

.detail-list dd {
	margin: 0;
	font-weight: 650;
}

.project-detail__image {
	margin: 0 0 32px;
}

.quote-grid {
	display: grid;
	grid-template-columns: minmax(0, 0.8fr) minmax(360px, 1.2fr);
	gap: clamp(44px, 8vw, 120px);
	align-items: start;
}

.quote-note {
	margin-top: 36px;
	padding: 24px;
	border-left: 3px solid var(--orange);
	background: rgba(233, 120, 62, 0.08);
}

.quote-note ul {
	margin: 18px 0 0;
	padding-left: 1.2rem;
	color: rgba(8, 26, 36, 0.72);
}

.quote-form {
	display: grid;
	gap: 18px;
	padding: clamp(24px, 5vw, 44px);
	border: 1px solid var(--line);
	background: var(--white);
	box-shadow: var(--shadow);
}

.form-field,
.form-field-row {
	display: grid;
	gap: 8px;
}

.form-field-row {
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
}

.form-field label {
	color: rgba(8, 26, 36, 0.72);
	font-size: 0.78rem;
	font-weight: 700;
}

.form-field input,
.form-field select,
.form-field textarea {
	width: 100%;
	padding: 13px 14px;
	border: 1px solid rgba(8, 26, 36, 0.2);
	border-radius: 8px;
	color: var(--ink);
	background: var(--paper);
	font: inherit;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
	outline: 3px solid rgba(84, 182, 199, 0.28);
	border-color: var(--blue);
}

.form-notice {
	padding: 14px 16px;
	border-left: 3px solid var(--green);
	background: rgba(58, 155, 114, 0.1);
	font-size: 0.9rem;
}

.form-notice--error {
	border-left-color: var(--orange);
	background: rgba(233, 120, 62, 0.1);
}

.content-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
}

.content-card {
	padding: 26px;
	border: 1px solid var(--line);
	background: var(--white);
}

.content-card h2 {
	font-size: 2rem;
}

.site-footer {
	color: var(--white);
	background: var(--ink);
}

.site-footer__top {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
	gap: clamp(32px, 6vw, 84px);
	padding-top: clamp(56px, 7vw, 80px);
	padding-bottom: clamp(56px, 7vw, 80px);
}

.site-branding__text--footer {
	display: inline-flex;
}

.site-footer__brand p {
	max-width: 370px;
	margin-top: 22px;
	color: rgba(255, 255, 255, 0.6);
}

.site-footer__contact {
	justify-self: end;
	max-width: 420px;
}

.site-footer__contact .eyebrow {
	color: var(--cyan);
}

.site-footer__email {
	display: block;
	margin: 18px 0 20px;
	max-width: none;
	overflow-wrap: normal;
	white-space: nowrap;
	color: var(--white);
	font-size: clamp(1rem, 1.7vw, 1.55rem);
	line-height: 1.08;
	font-weight: 700;
	letter-spacing: -0.045em;
}

.site-footer__contact-note {
	max-width: 360px;
	margin: -8px 0 18px;
	color: rgba(255, 255, 255, 0.52);
	font-size: 0.82rem;
	line-height: 1.45;
}

.site-footer__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 20px;
	color: rgba(255, 255, 255, 0.65);
	font-size: 0.9rem;
}

.site-footer__bottom {
	display: flex;
	justify-content: space-between;
	gap: 24px;
	padding-top: 20px;
	padding-bottom: 20px;
	border-top: 1px solid var(--line-light);
	color: rgba(255, 255, 255, 0.46);
	font-family: "IBM Plex Mono", ui-monospace, monospace;
	font-size: 0.68rem;
	letter-spacing: 0.03em;
}

@media (max-width: 960px) {
	.primary-navigation {
		gap: 16px;
	}

	.primary-menu {
		gap: 14px;
		font-size: 0.8rem;
	}

	.hero {
		min-height: auto;
		padding: 110px 0 100px;
	}

	.hero__inner {
		grid-template-columns: 1fr;
	}

	.hero__panel {
		max-width: 560px;
	}

	.projects-grid {
		grid-template-columns: 1fr;
	}

	.project-card {
		display: grid;
		grid-template-columns: 0.8fr 1.2fr;
	}
}

@media (max-width: 720px) {
	.container {
		width: min(calc(100% - 32px), var(--container));
	}

	.site-header__inner {
		min-height: 72px;
	}

	.site-header__meta {
		display: none;
	}

	.menu-toggle {
		display: block;
	}

	.primary-navigation {
		position: absolute;
		top: 72px;
		right: 16px;
		left: 16px;
		display: none;
		align-items: stretch;
		flex-direction: column;
		gap: 18px;
		padding: 22px;
		border: 1px solid var(--line-light);
		background: var(--ink);
		box-shadow: var(--shadow);
	}

	.primary-navigation.is-open {
		display: flex;
	}

	.primary-menu {
		align-items: stretch;
		flex-direction: column;
		gap: 0;
	}

	.primary-menu li {
		border-bottom: 1px solid var(--line-light);
	}

	.primary-menu a {
		display: block;
		padding: 13px 0;
	}

	.primary-navigation__cta {
		width: 100%;
	}

	.hero {
		padding-top: 82px;
	}

	.hero__panel {
		padding: 22px;
	}

	.hero__coordinates {
		flex-wrap: wrap;
	}

	.hero__scroll {
		display: none;
	}

	.split-heading,
	.section-heading,
	.cta-panel,
	.site-footer__top {
		align-items: flex-start;
		flex-direction: column;
	}

	.section-heading {
		margin-bottom: 30px;
	}

	.section-heading .button,
	.section-heading .text-link {
		margin-top: 4px;
	}

	.services-grid,
	.location-grid,
	.content-grid {
		grid-template-columns: 1fr;
	}

	.service-card {
		min-height: 150px;
		padding: 22px;
	}

	.location-card {
		min-height: 250px;
	}

	.project-card {
		display: block;
	}

	.service-detail-grid,
	.project-detail-grid,
	.quote-grid {
		grid-template-columns: 1fr;
	}

	.form-field-row {
		grid-template-columns: 1fr;
	}

	.site-footer__top {
		gap: 54px;
	}

	.site-footer__contact {
		justify-self: start;
	}

	.site-footer__bottom {
		align-items: flex-start;
		flex-direction: column;
		gap: 8px;
	}
}

@media (prefers-reduced-motion: reduce) {
	* {
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
		animation-duration: 0.01ms !important;
	}
}

/* -------------------------------------------------------------------------
 * Premium maritime direction
 * Inspired by modern ship-repair yards: photographic, calm and precise.
 * ------------------------------------------------------------------------- */
:root {
	--ink: #082a43;
	--marine: #0b4669;
	--blue: #08739b;
	--mist: #eaf4f6;
	--paper: #f8fbfc;
	--white: #ffffff;
	--cyan: #8bd3de;
	--orange: #e1a23a;
	--line: rgba(8, 42, 67, 0.14);
	--line-light: rgba(255, 255, 255, 0.22);
	--shadow: 0 24px 70px rgba(8, 42, 67, 0.14);
	--radius: 0;
}

body {
	background: var(--paper);
	font-size: 16px;
}

h1,
h2,
h3,
h4 {
	letter-spacing: -0.04em;
}

.site-header {
	background: var(--ink);
	box-shadow: 0 10px 30px rgba(8, 42, 67, 0.12);
}

.site-header__inner {
	min-height: 94px;
}

.site-header__meta {
	border-top-color: rgba(139, 211, 222, 0.22);
	color: rgba(255, 255, 255, 0.7);
	background: rgba(0, 0, 0, 0.08);
}

.site-branding__mark {
	border-color: rgba(139, 211, 222, 0.8);
	color: var(--cyan);
}

.site-branding__text small {
	color: var(--cyan);
}

.primary-menu {
	gap: 27px;
}

.primary-menu a {
	color: rgba(255, 255, 255, 0.8);
	font-size: 0.84rem;
	letter-spacing: 0.01em;
}

.button--accent {
	color: var(--ink);
	background: var(--orange);
	box-shadow: 0 8px 20px rgba(225, 162, 58, 0.2);
}

.button--accent:hover {
	color: var(--ink);
	background: #f0b94f;
}

.button--outline-light {
	border-color: rgba(255, 255, 255, 0.62);
}

.button--outline-light:hover {
	color: var(--ink);
}

.text-link:hover {
	color: var(--orange);
}

.hero {
	min-height: min(830px, calc(100vh - 118px));
	position: relative;
	background:
		linear-gradient(90deg, rgba(4, 27, 46, 0.94) 0%, rgba(7, 55, 83, 0.78) 42%, rgba(7, 73, 105, 0.26) 100%),
		var(--hero-image, url("../images/ship-repair-hero.png"));
	background-position: center;
	background-size: cover;
}

.hero__slides {
	position: absolute;
	inset: 0;
	z-index: 0;
	overflow: hidden;
}

.hero__slide {
	position: absolute;
	inset: -2%;
	background-image:
		linear-gradient(90deg, rgba(4, 27, 46, 0.94) 0%, rgba(7, 55, 83, 0.78) 42%, rgba(7, 73, 105, 0.26) 100%),
		var(--slide-image);
	background-position: center;
	background-size: cover;
	opacity: 0;
	transform: scale(1.035);
	transition: opacity 1.35s ease, transform 7s ease;
}

.hero__slide.is-active {
	opacity: 1;
	transform: scale(1);
}

.hero::before {
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(180deg, rgba(0, 26, 44, 0.18), transparent 42%, rgba(0, 24, 41, 0.45));
	content: "";
	pointer-events: none;
}

.hero::after {
	right: -10%;
	bottom: -44%;
	width: 48vw;
	height: 48vw;
	border-color: rgba(139, 211, 222, 0.32);
}

.hero__inner {
	grid-template-columns: minmax(0, 1.18fr) minmax(300px, 0.55fr);
	gap: clamp(44px, 8vw, 118px);
}

.hero__slider-controls {
	position: absolute;
	right: clamp(24px, 5vw, 76px);
	bottom: 34px;
	z-index: 3;
	display: flex;
	align-items: center;
	gap: 8px;
}

.hero__slider-controls button {
	width: 28px;
	height: 3px;
	padding: 0;
	border: 0;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.45);
	cursor: pointer;
	transition: width 240ms ease, background 240ms ease;
}

.hero__slider-controls button:hover,
.hero__slider-controls button:focus-visible {
	background: var(--white);
	outline: 2px solid rgba(255, 255, 255, 0.32);
	outline-offset: 5px;
}

.hero__slider-controls button.is-active {
	width: 54px;
	background: var(--orange);
}

.hero__copy h1 {
	max-width: 820px;
	margin: 22px 0 24px;
	font-size: clamp(2.8rem, 5.35vw, 5.35rem);
	line-height: 0.98;
	text-shadow: 0 8px 30px rgba(0, 24, 41, 0.2);
}

.hero__copy p {
	max-width: 610px;
	color: rgba(255, 255, 255, 0.84);
	font-size: clamp(1.05rem, 1.55vw, 1.22rem);
}

.hero__panel {
	padding: 34px;
	border: 0;
	border-top: 4px solid var(--orange);
	border-radius: 0;
	color: var(--ink);
	background: rgba(248, 251, 252, 0.94);
	box-shadow: 0 24px 70px rgba(0, 23, 40, 0.25);
	backdrop-filter: blur(10px);
}

.hero__panel .eyebrow {
	color: var(--blue);
}

.hero__panel h2 {
	margin: 17px 0 26px;
	font-size: clamp(1.75rem, 2.6vw, 2.65rem);
}

.hero__panel-grid {
	border-color: rgba(8, 42, 67, 0.16);
}

.hero__panel-grid div {
	border-color: rgba(8, 42, 67, 0.16);
}

.hero__panel-grid strong {
	color: var(--blue);
}

.hero__panel-grid span {
	color: rgba(8, 42, 67, 0.66);
}

.hero__coordinates {
	color: rgba(8, 42, 67, 0.62);
}

.hero__scroll {
	color: rgba(255, 255, 255, 0.76);
}

.hero__scroll span {
	background: var(--orange);
}

.section--intro,
.section--projects {
	background: var(--white);
}

.section--yard-story {
	background: #f3f8f9;
}

.section-heading--yard {
	align-items: end;
	margin-bottom: 50px;
}

.section-heading--yard > p {
	max-width: 360px;
	margin: 0;
	color: rgba(8, 42, 67, 0.68);
	font-size: 1rem;
}

.yard-gallery {
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
	grid-template-rows: repeat(2, minmax(250px, 1fr));
	gap: 16px;
	min-height: 680px;
}

.yard-gallery__item {
	position: relative;
	display: flex;
	min-height: 300px;
	align-items: end;
	padding: clamp(22px, 3vw, 34px);
	overflow: hidden;
	color: var(--white);
	background:
		linear-gradient(180deg, rgba(4, 27, 46, 0.04) 10%, rgba(4, 27, 46, 0.86) 100%),
		var(--yard-image, url("../images/ship-repair-hero.png"));
	background-position: center;
	background-size: cover;
	box-shadow: 0 20px 46px rgba(8, 42, 67, 0.12);
	transition: transform 220ms ease, box-shadow 220ms ease;
}

.yard-gallery__item::after {
	position: absolute;
	inset: 0;
	border: 1px solid rgba(255, 255, 255, 0.24);
	content: "";
	pointer-events: none;
}

.yard-gallery__item:hover {
	box-shadow: 0 30px 60px rgba(8, 42, 67, 0.2);
	transform: translateY(-4px);
}

.yard-gallery__item--feature {
	grid-row: span 2;
}

.yard-gallery__content {
	position: relative;
	z-index: 1;
	max-width: 520px;
}

.yard-gallery__index {
	color: var(--cyan);
	font-family: "IBM Plex Mono", ui-monospace, monospace;
	font-size: 0.68rem;
	font-weight: 600;
	letter-spacing: 0.13em;
}

.yard-gallery h3 {
	max-width: 500px;
	margin-top: 14px;
	font-size: clamp(1.55rem, 3vw, 2.7rem);
	line-height: 1;
}

.section--dark {
	color: var(--ink);
	background: var(--mist);
}

.section--mist {
	background: #f2f8f9;
}

.section-heading--light h2 {
	color: var(--ink);
}

.section-heading--light .eyebrow {
	color: var(--blue);
}

.section--dark .button--outline-light {
	color: var(--blue);
	border-color: rgba(8, 42, 67, 0.35);
}

.section--dark .button--outline-light:hover {
	color: var(--white);
	background: var(--blue);
}

.services-grid {
	border-color: var(--line);
	box-shadow: var(--shadow);
}

.service-card {
	position: relative;
	overflow: hidden;
	min-height: 184px;
	border-color: var(--line);
	color: var(--ink);
	background: var(--white);
}

.service-card::after {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	width: 34%;
	background:
		linear-gradient(90deg, var(--white) 0%, rgba(255, 255, 255, 0.7) 38%, rgba(255, 255, 255, 0.04) 100%),
		var(--service-image, url("../images/ship-repair-hero.png"));
	background-position: center;
	background-size: cover;
	content: "";
	opacity: 0.65;
	transition: opacity 180ms ease, width 180ms ease;
}

.service-card > * {
	position: relative;
	z-index: 1;
}

.service-card:hover {
	background: #f5fbfc;
	transform: translateY(-2px);
}

.service-card:hover::after {
	width: 40%;
	opacity: 0.85;
}

.service-card__number {
	color: var(--blue);
}

.service-card__body span {
	color: rgba(8, 42, 67, 0.66);
}

.service-card__arrow {
	color: var(--blue);
}

.location-card {
	border-color: var(--line);
	background: var(--white);
	box-shadow: 0 12px 30px rgba(8, 42, 67, 0.04);
}

.location-card:hover {
	background: var(--white);
	box-shadow: var(--shadow);
}

.location-showcase {
	display: grid;
	grid-template-columns: minmax(260px, 0.6fr) minmax(0, 1.4fr);
	gap: 16px;
}

.location-showcase .location-grid {
	display: block;
}

.location-showcase .location-card {
	min-height: 100%;
}

.location-showcase__visual {
	position: relative;
	display: flex;
	min-height: 360px;
	align-items: end;
	padding: 34px;
	overflow: hidden;
	color: var(--white);
	background:
		linear-gradient(180deg, rgba(4, 27, 46, 0.06), rgba(4, 27, 46, 0.88)),
		var(--location-image, url("../images/tuzla-drydock.png"));
	background-position: center;
	background-size: cover;
	box-shadow: 0 20px 46px rgba(8, 42, 67, 0.12);
}

.location-showcase__visual::after {
	position: absolute;
	inset: 0;
	border: 1px solid rgba(255, 255, 255, 0.25);
	content: "";
}

.location-showcase__visual > div {
	position: relative;
	z-index: 1;
}

.location-showcase__label {
	display: block;
	margin-bottom: 12px;
	color: var(--cyan);
	font-family: "IBM Plex Mono", ui-monospace, monospace;
	font-size: 0.68rem;
	letter-spacing: 0.13em;
}

.location-showcase__visual strong {
	display: block;
	max-width: 430px;
	font-size: clamp(1.7rem, 3vw, 3rem);
	line-height: 1;
}

.location-card__code {
	color: var(--orange);
}

.project-card {
	border-color: var(--line);
	box-shadow: 0 12px 30px rgba(8, 42, 67, 0.06);
}

.project-card:hover {
	box-shadow: var(--shadow);
}

.project-card__visual {
	background:
		linear-gradient(145deg, rgba(8, 42, 67, 0.12), rgba(8, 42, 67, 0.78)),
		var(--project-image, url("../images/ship-repair-hero.png"));
	background-position: center;
	background-size: cover;
}

.project-card__meta {
	color: var(--blue);
}

.cta-panel {
	position: relative;
	margin-inline: auto;
	max-width: var(--container);
	background: linear-gradient(120deg, var(--ink), var(--marine));
	box-shadow: 0 20px 50px rgba(8, 42, 67, 0.15);
}

.cta-panel::after {
	position: absolute;
	right: 8%;
	bottom: -120px;
	width: 300px;
	height: 300px;
	border: 1px solid rgba(139, 211, 222, 0.22);
	border-radius: 50%;
	content: "";
}

.page-hero {
	background:
		linear-gradient(105deg, rgba(4, 27, 46, 0.94), rgba(7, 73, 105, 0.7)),
		url("../images/ship-repair-hero.png");
	background-position: center;
	background-size: cover;
}

.page-hero--service {
	background:
		linear-gradient(105deg, rgba(4, 27, 46, 0.94), rgba(7, 73, 105, 0.66)),
		var(--service-detail-image, url("../images/ship-repair-hero.png"));
	background-position: center;
	background-size: cover;
}

.contact-grid {
	display: grid;
	grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
	gap: clamp(36px, 7vw, 100px);
	align-items: stretch;
}

.contact-grid__details {
	display: flex;
	align-items: flex-start;
	flex-direction: column;
	justify-content: center;
}

.contact-grid__details h2 {
	max-width: 560px;
	margin: 20px 0;
}

.contact-grid__details > p {
	max-width: 520px;
	color: rgba(8, 26, 36, 0.7);
}

.contact-list {
	display: grid;
	width: 100%;
	max-width: 520px;
	margin: 28px 0 32px;
	border-top: 1px solid var(--line);
}

.contact-list a {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 20px;
	padding: 15px 0;
	border-bottom: 1px solid var(--line);
}

.contact-list span {
	color: var(--blue);
	font-family: "IBM Plex Mono", ui-monospace, monospace;
	font-size: 0.68rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.contact-list strong {
	color: var(--ink);
	font-size: 0.96rem;
	text-align: right;
	word-break: break-word;
}

.contact-map {
	position: relative;
	min-height: 520px;
	overflow: hidden;
	border: 1px solid var(--line);
	background: var(--mist);
	box-shadow: 0 22px 50px rgba(8, 42, 67, 0.12);
}

.contact-map__canvas {
	position: relative;
	min-height: 520px;
	overflow: hidden;
	background-color: #d8ebee;
	background-image: linear-gradient(rgba(8, 115, 155, 0.12) 1px, transparent 1px), linear-gradient(90deg, rgba(8, 115, 155, 0.12) 1px, transparent 1px);
	background-size: 42px 42px;
}

.contact-map__canvas::before {
	position: absolute;
	top: -12%;
	right: -8%;
	width: 82%;
	height: 94%;
	border: 1px solid rgba(8, 42, 67, 0.14);
	border-radius: 46% 54% 38% 62% / 34% 42% 58% 66%;
	background: rgba(248, 251, 252, 0.82);
	box-shadow: -18px 24px 0 rgba(139, 211, 222, 0.24), -42px 70px 0 rgba(139, 211, 222, 0.16);
	content: "";
	transform: rotate(-11deg);
}

.contact-map__canvas::after {
	position: absolute;
	top: 18%;
	left: -12%;
	width: 120%;
	height: 34%;
	border-top: 2px solid rgba(8, 115, 155, 0.18);
	border-bottom: 2px solid rgba(8, 115, 155, 0.1);
	content: "";
	transform: rotate(-18deg);
}

.map-label,
.map-marker,
.map-route,
.contact-map__open {
	position: absolute;
	z-index: 1;
}

.map-label {
	color: rgba(8, 42, 67, 0.58);
	font-family: "IBM Plex Mono", ui-monospace, monospace;
	font-size: 0.65rem;
	letter-spacing: 0.12em;
}

.map-label--istanbul {
	top: 23%;
	left: 18%;
}

.map-label--tuzla {
	top: 57%;
	left: 62%;
	color: var(--blue);
	font-weight: 700;
}

.map-label--yard {
	top: 64%;
	left: 61%;
	padding: 7px 9px;
	color: var(--white);
	background: var(--ink);
	font-size: 0.58rem;
}

.map-marker {
	top: 55%;
	left: 59%;
	width: 18px;
	height: 18px;
	border: 4px solid var(--white);
	border-radius: 50%;
	background: var(--orange);
	box-shadow: 0 0 0 6px rgba(225, 162, 58, 0.24), 0 10px 18px rgba(8, 42, 67, 0.22);
}

.map-route {
	height: 1px;
	background: rgba(8, 115, 155, 0.42);
	transform-origin: left center;
}

.map-route--one {
	top: 39%;
	left: 22%;
	width: 48%;
	transform: rotate(22deg);
}

.map-route--two {
	top: 72%;
	left: 10%;
	width: 37%;
	transform: rotate(-8deg);
}

.contact-map__open {
	right: 18px;
	top: 18px;
	padding: 10px 12px;
	color: var(--white);
	background: var(--blue);
	font-size: 0.76rem;
	font-weight: 700;
}

.contact-map__label {
	position: absolute;
	top: 18px;
	left: 18px;
	z-index: 1;
	padding: 10px 12px;
	color: var(--white);
	background: rgba(8, 42, 67, 0.88);
	font-family: "IBM Plex Mono", ui-monospace, monospace;
	font-size: 0.66rem;
	letter-spacing: 0.08em;
}

.contact-map__caption {
	position: absolute;
	right: 18px;
	bottom: 18px;
	left: 18px;
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 20px;
	padding: 18px 20px;
	color: var(--white);
	background: rgba(8, 42, 67, 0.9);
}

.contact-map__caption strong {
	font-size: 1.35rem;
}

.contact-map__caption span {
	max-width: 340px;
	color: rgba(255, 255, 255, 0.7);
	font-size: 0.82rem;
	line-height: 1.45;
	text-align: right;
}

.detail-aside__block--accent {
	border-color: rgba(225, 162, 58, 0.55);
	background: rgba(225, 162, 58, 0.1);
}

@media (max-width: 720px) {
	.site-header__inner {
		min-height: 76px;
	}

	.primary-navigation {
		top: 76px;
		border-color: rgba(139, 211, 222, 0.3);
		background: var(--ink);
	}

	.language-switcher {
		margin-left: 0;
	}

	.hero {
		min-height: 760px;
		padding-top: 78px;
		background-position: 62% center;
	}

	.hero__inner {
		grid-template-columns: 1fr;
		align-items: start;
		gap: 48px;
	}

	.hero__copy h1 {
		font-size: clamp(2.65rem, 12.5vw, 4rem);
	}

	.hero__slider-controls {
		right: 16px;
		bottom: 22px;
	}

	.hero__panel {
		padding: 24px;
	}

	.section-heading--yard {
		align-items: flex-start;
	}

	.section-heading--yard > p {
		max-width: 100%;
	}

	.yard-gallery {
		grid-template-columns: 1fr;
		grid-template-rows: none;
		min-height: 0;
	}

	.yard-gallery__item,
	.yard-gallery__item--feature {
		grid-row: auto;
		min-height: 360px;
	}

	.location-showcase {
		grid-template-columns: 1fr;
	}

	.contact-grid {
		grid-template-columns: 1fr;
	}

	.contact-map,
	.contact-map__canvas {
		min-height: 390px;
	}

	.contact-map__caption {
		align-items: flex-start;
		flex-direction: column;
		gap: 8px;
	}

	.contact-map__caption span {
		text-align: left;
	}

	.site-footer__top {
		grid-template-columns: 1fr;
	}

	.site-footer__contact {
		width: 100%;
		max-width: 100%;
		min-width: 0;
	}

	.site-footer__email {
		font-size: 1rem;
		white-space: nowrap;
	}

	.cta-panel {
		margin-inline: 16px;
	}
}
